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

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

.ad-disclosure {
    background-color: #f4f1ea;
    color: #5a5a5a;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #e0ddd3;
}

.nav-floating {
    position: fixed;
    top: 50px;
    right: 40px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-brand {
    font-size: 18px;
    font-weight: 700;
    color: #3d6b3d;
    margin-bottom: 10px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.nav-links a:hover {
    color: #3d6b3d;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    overflow: hidden;
    background-color: #f7f5f0;
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 550px;
    margin-left: 80px;
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.2;
    color: #2c3e2c;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 20px;
    color: #5a5a5a;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background-color: #5a8a3a;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.hero-image-overlap {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%) rotate(-3deg);
    width: 720px;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background-color: #d4e5d0;
}

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

.intro-offset {
    padding: 120px 80px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    position: relative;
}

.intro-text-block {
    flex: 1;
    max-width: 650px;
    margin-left: 120px;
}

.intro-text-block h2 {
    font-size: 42px;
    color: #2c3e2c;
    margin-bottom: 30px;
    font-weight: 700;
}

.intro-text-block p {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-stats-overlap {
    position: relative;
    top: -40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-card {
    background-color: #3d6b3d;
    color: #ffffff;
    padding: 30px 35px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 25px rgba(61, 107, 61, 0.2);
    min-width: 220px;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    opacity: 0.9;
}

.services-asymmetric {
    padding: 100px 60px;
    background-color: #ffffff;
}

.section-header-offset {
    max-width: 600px;
    margin-left: 80px;
    margin-bottom: 70px;
}

.section-header-offset h2 {
    font-size: 48px;
    color: #2c3e2c;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header-offset p {
    font-size: 18px;
    color: #6a6a6a;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 40px;
}

.service-card {
    background-color: #fafaf8;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-offset-1 {
    width: calc(45% - 20px);
    margin-left: 0;
}

.card-offset-2 {
    width: calc(50% - 20px);
    margin-left: auto;
    margin-top: -30px;
}

.card-offset-3 {
    width: calc(48% - 20px);
    margin-left: 60px;
}

.card-offset-4 {
    width: calc(47% - 20px);
    margin-left: auto;
    margin-top: -50px;
}

.card-offset-5 {
    width: calc(46% - 20px);
    margin-left: 40px;
}

.card-offset-6 {
    width: calc(49% - 20px);
    margin-left: auto;
    margin-top: -40px;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    color: #2c3e2c;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-content p {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    display: block;
    font-size: 22px;
    color: #3d6b3d;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-select-service {
    background-color: #6b9e4a;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #5a8a3a;
}

.testimonials-overlap {
    padding: 100px 80px;
    background-color: #f0ede5;
    position: relative;
}

.testimonials-overlap h2 {
    font-size: 44px;
    color: #2c3e2c;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.testimonials-container {
    display: flex;
    gap: 35px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    max-width: 350px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
    transform: rotate(-1deg);
}

.testimonial-card:nth-child(2) {
    transform: rotate(1deg);
    margin-top: 20px;
}

.testimonial-card:nth-child(3) {
    transform: rotate(-0.5deg);
    margin-top: -10px;
}

.testimonial-card p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #3d6b3d;
    font-weight: 600;
}

.form-section-offset {
    padding: 120px 80px;
    background-color: #ffffff;
    position: relative;
}

.form-container {
    max-width: 600px;
    margin-left: auto;
    margin-right: 120px;
    background-color: #fafaf8;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 36px;
    color: #2c3e2c;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-container > p {
    font-size: 17px;
    color: #6a6a6a;
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    color: #4a4a4a;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0ddd3;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background-color: #5a8a3a;
    color: #ffffff;
    border: none;
    padding: 16px 50px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

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

.trust-section {
    padding: 100px 80px;
    background-color: #3d6b3d;
    color: #ffffff;
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.trust-points {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-point {
    max-width: 320px;
}

.trust-point h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.trust-point p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
}

.footer-asymmetric {
    background-color: #2c3e2c;
    color: #d4d4d4;
    padding: 60px 80px 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 44, 0.98);
    color: #ffffff;
    padding: 25px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 15px;
    flex: 1;
    min-width: 300px;
}

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

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

.cookie-btn.accept {
    background-color: #6b9e4a;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #5a8a3a;
}

.cookie-btn.reject {
    background-color: #8a8a8a;
    color: #ffffff;
}

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

@media (max-width: 1200px) {
    .hero-image-overlap {
        width: 600px;
        height: 440px;
        right: -60px;
    }

    .hero-content-offset {
        margin-left: 40px;
    }

    .hero-content-offset h1 {
        font-size: 46px;
    }

    .nav-floating {
        right: 20px;
        top: 30px;
        padding: 15px 20px;
    }

    .services-grid-irregular {
        padding: 0 20px;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .card-offset-5,
    .card-offset-6 {
        width: calc(50% - 20px);
        margin-left: 0 !important;
        margin-top: 0 !important;
    }
}

@media (max-width: 768px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 40px 20px;
        min-height: auto;
    }

    .hero-content-offset {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-content-offset h1 {
        font-size: 36px;
    }

    .hero-image-overlap {
        position: static;
        transform: none;
        width: 100%;
        height: 300px;
        margin-top: 30px;
    }

    .nav-floating {
        position: static;
        margin: 20px;
        width: calc(100% - 40px);
    }

    .intro-offset {
        flex-direction: column;
        padding: 60px 20px;
    }

    .intro-text-block {
        margin-left: 0;
    }

    .intro-stats-overlap {
        top: 0;
        margin-top: 30px;
    }

    .services-asymmetric {
        padding: 60px 20px;
    }

    .section-header-offset {
        margin-left: 0;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .card-offset-5,
    .card-offset-6 {
        width: 100%;
    }

    .form-container {
        margin-right: 0;
        padding: 30px 20px;
    }

    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        transform: none !important;
        margin-top: 0 !important;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .cookie-btn {
        width: 100%;
    }
}