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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.nav-floating {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #2a5934;
}

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

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

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

.hero-asymmetric {
    margin-top: 100px;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 40px;
}

.hero-content-offset {
    max-width: 560px;
    margin-left: 8%;
    z-index: 10;
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.1;
    color: #1a3a23;
    margin-bottom: 28px;
    font-weight: 700;
}

.hero-lead {
    font-size: 19px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 32px;
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 52%;
    height: 480px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2a5934;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.cta-secondary {
    display: inline-block;
    background-color: #f8f9fa;
    color: #2a5934;
    padding: 16px 36px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    border: 2px solid #2a5934;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2a5934;
    color: #ffffff;
}

.intro-offset {
    padding: 100px 40px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-block-left {
    flex: 1;
    max-width: 520px;
    margin-left: 8%;
}

.intro-block-left h2 {
    font-size: 38px;
    color: #1a3a23;
    margin-bottom: 24px;
    line-height: 1.3;
}

.intro-block-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
}

.intro-stats-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 60px;
}

.stat-card {
    background-color: #f4f7f5;
    padding: 28px 32px;
    border-left: 4px solid #2a5934;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #2a5934;
}

.stat-label {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.5;
}

.problem-amplification {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    margin: 80px 0;
}

.problem-image-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 48%;
    height: 100%;
    overflow: hidden;
}

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

.problem-text-overlay {
    position: relative;
    z-index: 10;
    margin-left: 52%;
    max-width: 520px;
    background-color: #ffffff;
    padding: 48px;
    box-shadow: -10px 10px 40px rgba(0, 0, 0, 0.1);
}

.problem-text-overlay h2 {
    font-size: 34px;
    color: #1a3a23;
    margin-bottom: 24px;
    line-height: 1.3;
}

.problem-text-overlay p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.services-asymmetric {
    padding: 120px 40px;
    background-color: #fafbfa;
}

.section-header-offset {
    margin-left: 12%;
    margin-bottom: 60px;
}

.section-header-offset h2 {
    font-size: 44px;
    color: #1a3a23;
    margin-bottom: 16px;
}

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

.service-cards-stagger {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    gap: 40px;
    padding: 32px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-1 {
    margin-left: 5%;
}

.card-2 {
    margin-left: 15%;
}

.card-3 {
    margin-left: 8%;
}

.card-4 {
    margin-left: 20%;
}

.card-5 {
    margin-left: 12%;
}

.service-image {
    flex: 0 0 280px;
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 26px;
    color: #1a3a23;
    margin-bottom: 16px;
}

.service-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 20px;
    flex: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2a5934;
    margin-bottom: 16px;
}

.btn-select-service {
    align-self: flex-start;
    background-color: #2a5934;
    color: #ffffff;
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1f4527;
}

.trust-building {
    padding: 100px 40px;
}

.trust-content-split {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-left {
    flex: 1;
    padding-right: 40px;
}

.trust-left h2 {
    font-size: 38px;
    color: #1a3a23;
    margin-bottom: 24px;
}

.trust-left p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.trust-right {
    flex: 0 0 480px;
    height: 360px;
    border-radius: 8px;
    overflow: hidden;
}

.trust-right img {
    width: 100%;
    height: 100%;
}

.testimonials-inline {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.testimonials-inline h2 {
    text-align: center;
    font-size: 42px;
    color: #1a3a23;
    margin-bottom: 60px;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

.form-section-offset {
    padding: 100px 40px;
    background-color: #ffffff;
}

.form-container {
    max-width: 600px;
    margin-left: 15%;
}

.form-container h2 {
    font-size: 40px;
    color: #1a3a23;
    margin-bottom: 16px;
}

.form-container > p {
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
}

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

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

.btn-submit {
    background-color: #2a5934;
    color: #ffffff;
    padding: 16px 36px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.disclaimer-section {
    padding: 60px 40px;
    background-color: #fffbf0;
    border-top: 2px solid #f0e5c8;
    border-bottom: 2px solid #f0e5c8;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #6c5d3a;
}

.footer-asymmetric {
    background-color: #1a3a23;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-main {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col {
    flex: 1;
}

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

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

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #c8d5cc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 58, 35, 0.98);
    color: #ffffff;
    padding: 24px 40px;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    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: 40px;
}

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

.cookie-content a {
    color: #a8c9b0;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #4a6650;
    color: #ffffff;
}

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

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

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero {
    margin-top: 100px;
    height: 400px;
    position: relative;
    overflow: hidden;
}

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

.page-hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 40px;
    z-index: 10;
}

.page-hero-overlay h1 {
    font-size: 52px;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.about-intro {
    padding: 100px 40px;
}

.about-content-offset {
    max-width: 700px;
    margin-left: 12%;
}

.about-content-offset h2 {
    font-size: 40px;
    color: #1a3a23;
    margin-bottom: 24px;
}

.about-content-offset p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    color: #1a3a23;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 6px;
}

.value-item h3 {
    font-size: 24px;
    color: #2a5934;
    margin-bottom: 16px;
}

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

.team-section {
    padding: 100px 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-image-left {
    flex: 0 0 480px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.team-text-right {
    flex: 1;
}

.team-text-right h2 {
    font-size: 38px;
    color: #1a3a23;
    margin-bottom: 24px;
}

.team-text-right p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.cta-section-inline {
    padding: 80px 40px;
    text-align: center;
    background-color: #f4f7f5;
}

.cta-section-inline h2 {
    font-size: 38px;
    color: #1a3a23;
    margin-bottom: 16px;
}

.cta-section-inline p {
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 32px;
}

.services-detailed {
    padding: 80px 40px;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    color: #1a3a23;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.service-detail-content ul {
    margin-left: 24px;
    margin-bottom: 28px;
}

.service-detail-content ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 8px;
}

.service-detail-image {
    flex: 0 0 460px;
    height: 340px;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-pricing-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background-color: #f4f7f5;
    padding: 20px 24px;
    border-radius: 6px;
    max-width: 280px;
}

.price-label {
    font-size: 13px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2a5934;
}

.cta-services-bottom {
    padding: 80px 40px;
    text-align: center;
    background-color: #f8f9fa;
}

.cta-services-bottom h2 {
    font-size: 38px;
    color: #1a3a23;
    margin-bottom: 16px;
}

.cta-services-bottom p {
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 32px;
}

.contact-content {
    padding: 100px 40px;
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 40px;
    color: #1a3a23;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 36px;
}

.contact-item h3 {
    font-size: 20px;
    color: #2a5934;
    margin-bottom: 8px;
}

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

.contact-map-placeholder {
    flex: 0 0 480px;
    height: 440px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
}

.contact-cta {
    padding: 80px 40px;
    text-align: center;
    background-color: #f4f7f5;
}

.contact-cta h2 {
    font-size: 38px;
    color: #1a3a23;
    margin-bottom: 16px;
}

.contact-cta p {
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 32px;
}

.thanks-page {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px;
}

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

.thanks-content h1 {
    font-size: 48px;
    color: #1a3a23;
    margin-bottom: 24px;
}

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

.legal-page {
    max-width: 900px;
    margin: 120px auto 80px;
    padding: 0 40px;
}

.legal-page h1 {
    font-size: 44px;
    color: #1a3a23;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    color: #2a5934;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page p {
    font-size: 15px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 8px;
}

.legal-page a {
    color: #2a5934;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 16px 20px;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 40px 20px;
    }

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

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

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 32px;
    }

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

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

    .intro-stats-right {
        margin-top: 20px;
    }

    .problem-amplification {
        flex-direction: column;
        min-height: auto;
    }

    .problem-image-bg {
        position: relative;
        width: 100%;
        height: 280px;
    }

    .problem-text-overlay {
        margin-left: 0;
        padding: 32px 20px;
        box-shadow: none;
    }

    .service-cards-stagger {
        gap: 32px;
    }

    .service-card {
        flex-direction: column;
        margin-left: 0 !important;
        padding: 24px;
    }

    .service-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .trust-content-split {
        flex-direction: column;
    }

    .trust-left {
        padding-right: 0;
    }

    .trust-right {
        flex: 0 0 auto;
        width: 100%;
        height: 300px;
    }

    .testimonial-grid {
        flex-direction: column;
    }

    .form-container {
        margin-left: 0;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

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

    .team-section {
        flex-direction: column;
    }

    .team-image-left {
        flex: 0 0 auto;
        width: 100%;
        height: 300px;
    }

    .values-grid {
        flex-direction: column;
    }

    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 0 0 auto;
        width: 100%;
        height: 280px;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-map-placeholder {
        flex: 0 0 auto;
        width: 100%;
        height: 300px;
    }
}