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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3e1f;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #fef9e7;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #7d6608;
    border-bottom: 1px solid #f4e5b3;
}

.header-main {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e9e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.brand-logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d5016;
}

.nav-main {
    display: flex;
    gap: 30px;
}

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

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

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 20px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.section-intro {
    padding: 80px 20px;
}

.section-intro h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2d5016;
}

.section-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5e3a;
}

.section-problem {
    padding: 80px 20px;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2d5016;
}

.problem-block {
    margin-bottom: 35px;
}

.problem-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #3d4f2c;
}

.problem-block p {
    font-size: 16px;
    color: #5a6d4a;
}

.split-image {
    flex: 1;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

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

.section-services {
    padding: 80px 20px;
}

.section-services h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2d5016;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 4px 12px rgba(45,80,22,0.1);
    transition: transform 0.3s;
}

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

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

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

.service-card h3 {
    font-size: 22px;
    padding: 20px 20px 10px;
    color: #2d5016;
}

.service-card p {
    padding: 0 20px;
    font-size: 15px;
    color: #5a6d4a;
    margin-bottom: 15px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2d5016;
    padding: 10px 20px;
}

.btn-select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background-color: #4a7029;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #3d5e22;
}

.section-process {
    padding: 80px 20px;
}

.section-process h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2d5016;
}

.section-process > p {
    font-size: 18px;
    margin-bottom: 50px;
    color: #4a5e3a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #c7d4ba;
    line-height: 1;
}

.step-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2d5016;
}

.step-item p {
    font-size: 16px;
    color: #5a6d4a;
}

.section-form {
    padding: 80px 20px;
}

.section-form h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: #2d5016;
}

.section-form > p {
    font-size: 18px;
    margin-bottom: 40px;
    text-align: center;
    color: #4a5e3a;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #2d5016;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #c7d4ba;
    border-radius: 5px;
    font-size: 15px;
    color: #2d3e1f;
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #4a7029;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #3d5e22;
}

.section-trust {
    padding: 80px 20px;
}

.section-trust h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2d5016;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 52px;
    font-weight: 700;
    color: #4a7029;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: #5a6d4a;
}

.footer-main {
    padding: 60px 20px 20px;
    color: #d4e0c9;
}

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
}

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

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

.footer-disclaimer {
    background-color: #1f2a15;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #3d4f2c;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3e1f;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px 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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

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

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

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2d5016;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #4a5e3a;
}

.thanks-content .service-selected {
    font-weight: 600;
    color: #2d5016;
}

.btn-back {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background-color: #4a7029;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-back:hover {
    background-color: #3d5e22;
}

@media (max-width: 768px) {
    .container-wide {
        flex-direction: column;
        gap: 20px;
    }

    .nav-main {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .hero-content p {
        font-size: 16px;
    }

    .container-split {
        flex-direction: column;
    }

    .split-image {
        width: 100%;
        height: 300px;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .trust-stats {
        flex-direction: column;
    }

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

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