* {
    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: #333;
    overflow-x: hidden;
}

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeeba;
}

.main-nav {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-menu {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2c5f2d;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    background: linear-gradient(135deg, #2c5f2d 0%, #4a7c4e 100%);
    color: #fff;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #fff;
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.value-split {
    display: flex;
    align-items: stretch;
}

.value-split.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    padding: 60px;
}

.split-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c5f2d;
}

.split-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 28px;
    background: #2c5f2d;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    margin-top: 16px;
}

.cta-secondary:hover {
    background: #234a24;
}

.services-preview {
    padding: 80px 24px;
    background: #f8f9fa;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #2c5f2d;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    flex: 1 1 calc(50% - 12px);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #2c5f2d;
}

.service-card p {
    padding: 0 24px;
    margin-bottom: 16px;
    line-height: 1.6;
    flex-grow: 1;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
    padding: 0 24px;
    margin-bottom: 16px;
}

.select-service {
    margin: 0 24px 24px;
    padding: 12px 24px;
    background: #2c5f2d;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: #234a24;
}

.trust-split {
    display: flex;
    align-items: center;
    background: #fff;
}

.stats-box {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat {
    border-left: 4px solid #2c5f2d;
    padding-left: 20px;
}

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

.stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

.testimonials-section {
    padding: 80px 24px;
    background: #2c5f2d;
    color: #fff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
}

.testimonial {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: 8px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    font-size: 14px;
}

.process-split {
    display: flex;
    align-items: center;
    background: #fff;
}

.process-steps {
    margin-top: 32px;
}

.process-step {
    margin-bottom: 32px;
    display: flex;
    gap: 20px;
}

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
    min-width: 50px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c5f2d;
}

.process-step p {
    line-height: 1.6;
    color: #666;
}

.cta-fullwidth {
    background: linear-gradient(135deg, #4a7c4e 0%, #2c5f2d 100%);
    color: #fff;
    padding: 80px 24px;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.form-section {
    padding: 80px 24px;
    background: #f8f9fa;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2c5f2d;
    text-align: center;
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px 32px;
    background: #2c5f2d;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #234a24;
}

.benefits-split {
    display: flex;
    align-items: center;
    background: #fff;
}

.benefits-list {
    list-style: none;
    margin-top: 24px;
}

.benefits-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
    font-size: 20px;
}

.faq-section {
    padding: 80px 24px;
    background: #f8f9fa;
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c5f2d;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-weight: 600;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-answer {
    padding: 0 24px 20px;
    line-height: 1.8;
    color: #666;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #2c5f2d;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #333;
    text-align: center;
}

.disclaimer {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    padding: 24px;
    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: 24px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

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

.btn-accept {
    background: #2c5f2d;
    color: #fff;
}

.btn-accept:hover {
    background: #234a24;
}

.btn-reject {
    background: #ddd;
    color: #333;
}

.btn-reject:hover {
    background: #ccc;
}

.contact-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px;
}

.contact-page h1 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #2c5f2d;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

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

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
}

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

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #2c5f2d;
}

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

.legal-page p {
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.legal-page li {
    margin-bottom: 8px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 16px 24px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-split,
    .value-split,
    .trust-split,
    .process-split,
    .benefits-split {
        flex-direction: column;
    }

    .value-split.reverse {
        flex-direction: column;
    }

    .hero-left,
    .split-content {
        padding: 40px 24px;
    }

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

    .split-content h2 {
        font-size: 28px;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

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

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

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

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}