* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px 25px 40px;
    background-color: #ffffff;
    position: relative;
}

.nav-left .logo {
    font-size: 26px;
    font-weight: 700;
    color: #2d5016;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    gap: 35px;
}

.nav-right a {
    color: #495057;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #2d5016;
}

.hero-offset {
    display: flex;
    min-height: 600px;
    background-color: #f5f7f3;
    position: relative;
    overflow: hidden;
}

.hero-content-left {
    flex: 0 0 45%;
    padding: 80px 40px 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 46px;
    line-height: 1.2;
    color: #1a2902;
    margin-bottom: 28px;
    font-weight: 700;
}

.hero-content-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 35px;
}

.cta-primary {
    display: inline-block;
    background-color: #2d5016;
    color: #ffffff;
    padding: 15px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1f3810;
}

.hero-image-right {
    flex: 0 0 55%;
    position: relative;
    background-color: #e8ede3;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-asymmetric {
    display: flex;
    padding: 90px 60px 90px 140px;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
}

.intro-text-offset {
    flex: 0 0 50%;
}

.intro-text-offset p {
    font-size: 20px;
    line-height: 1.8;
    color: #343a40;
}

.intro-visual {
    flex: 0 0 40%;
    background-color: #f0f4ec;
}

.intro-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.services-grid-irregular {
    padding: 100px 60px;
    background-color: #fafafa;
}

.section-title-offset {
    font-size: 42px;
    color: #1a2902;
    margin-bottom: 60px;
    padding-left: 80px;
    font-weight: 700;
}

.services-container-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card-1 {
    flex: 0 0 calc(60% - 15px);
}

.service-card-2 {
    flex: 0 0 calc(40% - 15px);
    margin-top: 40px;
}

.service-card-3 {
    flex: 0 0 calc(35% - 15px);
}

.service-card-4 {
    flex: 0 0 calc(65% - 15px);
    margin-top: -30px;
}

.service-card-5 {
    flex: 0 0 calc(48% - 15px);
    margin-left: auto;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    color: #1a2902;
    margin: 20px 25px 12px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #6c757d;
    margin: 0 25px 20px;
}

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: #2d5016;
    margin: 20px 25px 15px;
}

.select-service-btn {
    background-color: #f8f9fa;
    border: 2px solid #2d5016;
    color: #2d5016;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0 25px 25px;
    border-radius: 4px;
}

.select-service-btn:hover {
    background-color: #2d5016;
    color: #ffffff;
}

.select-service-btn.selected {
    background-color: #2d5016;
    color: #ffffff;
}

.form-section-offset {
    padding: 120px 60px 120px 180px;
    background-color: #f5f7f3;
}

.form-wrapper-asymmetric {
    max-width: 650px;
}

.form-wrapper-asymmetric h2 {
    font-size: 38px;
    color: #1a2902;
    margin-bottom: 18px;
    font-weight: 700;
}

.form-wrapper-asymmetric > p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    font-size: 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5016;
}

.submit-btn {
    background-color: #2d5016;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #1f3810;
}

.trust-section {
    padding: 100px 60px 100px 100px;
    background-color: #ffffff;
}

.trust-content-irregular h2 {
    font-size: 38px;
    color: #1a2902;
    margin-bottom: 50px;
    font-weight: 700;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.trust-item {
    padding-left: 60px;
    position: relative;
}

.trust-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 6px;
    height: 6px;
    background-color: #2d5016;
    border-radius: 50%;
}

.trust-item p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
}

.about-preview-offset {
    display: flex;
    background-color: #fafafa;
    min-height: 500px;
}

.about-image-left {
    flex: 0 0 48%;
    background-color: #e8ede3;
}

.about-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text-right {
    flex: 0 0 52%;
    padding: 80px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-right h2 {
    font-size: 36px;
    color: #1a2902;
    margin-bottom: 28px;
    font-weight: 700;
}

.about-text-right p {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 20px;
}

.cta-secondary {
    display: inline-block;
    color: #2d5016;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 2px solid #2d5016;
    padding-bottom: 3px;
    transition: opacity 0.3s;
    align-self: flex-start;
    margin-top: 15px;
}

.cta-secondary:hover {
    opacity: 0.7;
}

.footer-asymmetric {
    background-color: #1a2902;
    color: #e8ede3;
    padding: 70px 60px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #ffffff;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #c5d1bd;
}

.footer-col a {
    display: block;
    color: #c5d1bd;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 35px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #c5d1bd;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: #c5d1bd;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 25px 60px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #495057;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #2d5016;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #1f3810;
}

.cookie-btn.reject {
    background-color: #f8f9fa;
    color: #495057;
    border: 1px solid #ced4da;
}

.cookie-btn.reject:hover {
    background-color: #e9ecef;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background-color: #f5f7f3;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1a2902;
    margin-bottom: 25px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 20px;
}

.thanks-content .selected-service {
    background-color: #ffffff;
    padding: 20px 30px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #2d5016;
}

.thanks-content .selected-service strong {
    color: #2d5016;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-content-left,
    .hero-image-right {
        flex: 1 1 100%;
    }

    .hero-image-right {
        min-height: 400px;
    }

    .intro-asymmetric {
        flex-direction: column;
        padding: 60px 40px;
    }

    .intro-text-offset,
    .intro-visual {
        flex: 1 1 100%;
    }

    .services-container-asymmetric {
        flex-direction: column;
    }

    .service-card-1,
    .service-card-2,
    .service-card-3,
    .service-card-4,
    .service-card-5 {
        flex: 1 1 100%;
        margin-top: 0;
    }

    .about-preview-offset {
        flex-direction: column;
    }

    .about-image-left,
    .about-text-right {
        flex: 1 1 100%;
    }

    .about-image-left img {
        min-height: 300px;
    }

    .footer-content {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 25px);
    }
}

@media (max-width: 768px) {
    .nav-asymmetric {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }

    .nav-right {
        gap: 20px;
    }

    .hero-content-left {
        padding: 50px 30px;
    }

    .hero-content-left h1 {
        font-size: 32px;
    }

    .section-title-offset {
        font-size: 32px;
        padding-left: 20px;
    }

    .form-section-offset {
        padding: 60px 30px;
    }

    .trust-section {
        padding: 60px 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .footer-col {
        flex: 1 1 100%;
    }
}