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

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

.ad-notice {
    background-color: #F4E8D8;
    color: #6B5844;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid #E0D4C4;
}

.nav-asymmetric {
    padding: 20px 5%;
    position: relative;
}

.nav-offset {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 60px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3D5A40;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #4A6B4D;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2D4530;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    margin-bottom: 120px;
}

.hero-content-offset {
    width: 55%;
    padding: 100px 5% 80px 8%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text-block {
    max-width: 580px;
}

.hero-text-block h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    color: #2A3E2D;
    margin-bottom: 28px;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 1.15rem;
    color: #4A5F4D;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background-color: #5C7F5F;
    color: #FFFFFF;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #4A6B4D;
}

.hero-image-offset {
    width: 50%;
    position: absolute;
    right: 0;
    top: 80px;
    height: 75vh;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
}

.hero-image-offset img {
    width: 100%;
    height: 100%;
}

.intro-irregular {
    padding: 80px 5%;
    position: relative;
}

.intro-overlap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.intro-card-left {
    flex: 1;
    padding: 50px;
    transform: translateY(-30px);
}

.intro-card-left h2 {
    font-size: 2.2rem;
    color: #2D4530;
    margin-bottom: 24px;
    line-height: 1.3;
}

.intro-card-left p {
    font-size: 1.1rem;
    color: #4F6352;
    line-height: 1.75;
}

.intro-card-right {
    flex: 1;
    padding: 45px;
    border-radius: 8px;
    transform: translateY(20px);
}

.intro-card-right p {
    font-size: 1.05rem;
    color: #3E5341;
    line-height: 1.8;
}

.services-staggered {
    padding: 100px 5%;
    background: linear-gradient(135deg, #F8FBF8 0%, #FFFFFF 100%);
}

.services-header-offset {
    max-width: 1200px;
    margin: 0 auto 70px;
    padding-left: 80px;
}

.services-header-offset h2 {
    font-size: 2.5rem;
    color: #2A3E2D;
    margin-bottom: 16px;
}

.services-header-offset p {
    font-size: 1.15rem;
    color: #5A6F5D;
}

.services-grid-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    width: calc(33.333% - 30px);
    min-width: 320px;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card.offset-1 {
    transform: translateY(20px);
}

.service-card.offset-2 {
    transform: translateY(-15px);
}

.service-card.offset-3 {
    transform: translateY(35px);
}

.service-card.offset-4 {
    transform: translateY(-25px);
}

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.45rem;
    color: #2D4530;
    margin: 25px 25px 15px;
}

.service-card p {
    font-size: 1rem;
    color: #4F6352;
    margin: 0 25px 20px;
    line-height: 1.65;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5C7F5F;
    margin: 0 25px 20px;
}

.btn-select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px 24px;
    background-color: #5C7F5F;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #4A6B4D;
}

.form-section-diagonal {
    padding: 120px 5%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 80px;
}

.form-container-offset {
    flex: 1;
    max-width: 600px;
    padding-left: 60px;
}

.form-container-offset h2 {
    font-size: 2.3rem;
    color: #2A3E2D;
    margin-bottom: 18px;
}

.form-container-offset > p {
    font-size: 1.1rem;
    color: #5A6F5D;
    margin-bottom: 40px;
}

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

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

.form-group label {
    font-weight: 600;
    color: #3D5A40;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #D4E2D6;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: #5C7F5F;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #4A6B4D;
}

.form-image-overlap {
    flex: 1;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    transform: translateY(-40px);
}

.form-image-overlap img {
    width: 100%;
    height: 100%;
}

.testimonials-scattered {
    padding: 100px 5%;
    background-color: #F5F9F4;
}

.testimonials-scattered h2 {
    font-size: 2.4rem;
    color: #2A3E2D;
    text-align: center;
    margin-bottom: 70px;
}

.testimonials-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.testimonial-card {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    width: calc(33.333% - 40px);
    min-width: 300px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.testimonial-card.pos-1 {
    transform: translateY(-20px);
}

.testimonial-card.pos-2 {
    transform: translateY(30px);
}

.testimonial-card.pos-3 {
    transform: translateY(-10px);
}

.testimonial-card p {
    font-size: 1.05rem;
    color: #3E5341;
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #5C7F5F;
    font-size: 0.95rem;
}

.cta-floating {
    padding: 100px 5%;
    background: linear-gradient(120deg, #E8F1E6 0%, #F5F9F4 100%);
}

.cta-content-irregular {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    transform: translateX(40px);
}

.cta-content-irregular h2 {
    font-size: 2.5rem;
    color: #2A3E2D;
    margin-bottom: 24px;
    line-height: 1.3;
}

.cta-content-irregular p {
    font-size: 1.15rem;
    color: #4F6352;
    margin-bottom: 35px;
}

.cta-secondary {
    display: inline-block;
    background-color: #FFFFFF;
    color: #5C7F5F;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #5C7F5F;
    transition: background-color 0.3s, color 0.3s;
}

.cta-secondary:hover {
    background-color: #5C7F5F;
    color: #FFFFFF;
}

.footer-split {
    background-color: #2D4530;
    color: #C8D5CA;
    padding: 70px 5% 30px;
}

.footer-split {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.footer-left p {
    color: #B8C8BA;
    line-height: 1.6;
}

.footer-center h4,
.footer-right h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.footer-center a,
.footer-right a {
    display: block;
    color: #B8C8BA;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-center a:hover,
.footer-right a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid #3E5341;
    padding-top: 30px;
    margin-top: 40px;
}

.disclaimer {
    font-size: 0.85rem;
    color: #9BAD9D;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.footer-bottom p {
    text-align: center;
    color: #9BAD9D;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2D4530;
    color: #FFFFFF;
    padding: 25px 5%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: #E0E8E1;
    line-height: 1.5;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-cookie-accept {
    background-color: #5C7F5F;
    color: #FFFFFF;
}

.btn-cookie-accept:hover {
    opacity: 0.9;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-cookie-reject:hover {
    opacity: 0.8;
}

.cookie-link {
    color: #A8C5AA;
    text-decoration: underline;
    font-size: 0.9rem;
}

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

    .hero-content-offset {
        width: 100%;
        padding: 60px 5%;
    }

    .hero-image-offset {
        position: relative;
        width: 100%;
        top: 0;
        height: 400px;
    }

    .intro-overlap {
        flex-direction: column;
    }

    .service-card {
        width: calc(50% - 20px);
    }

    .form-section-diagonal {
        flex-direction: column;
    }

    .form-container-offset {
        padding-left: 0;
    }

    .testimonial-card {
        width: calc(50% - 25px);
    }
}

@media (max-width: 768px) {
    .nav-offset {
        padding-left: 0;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-text-block h1 {
        font-size: 2.2rem;
    }

    .service-card,
    .testimonial-card {
        width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
