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

:root {
    --primary-color: #2d5016;
    --secondary-color: #6b8e23;
    --accent-color: #8b7355;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f9f7;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

.main-nav {
    background-color: var(--white);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background-color: var(--bg-light);
}

.hero-text {
    max-width: 560px;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #6f5c45;
}

.cta-inline {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 2px;
    transition: border-color 0.3s;
}

.cta-inline:hover {
    border-color: var(--primary-color);
}

.split-intro {
    padding: 6rem 0;
}

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

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.split-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.trust-block {
    background-color: var(--primary-color);
    padding: 4rem 0;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    color: var(--white);
}

.trust-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.problem-amplify {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.services-pricing {
    padding: 6rem 0;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-visual {
    flex: 0 0 45%;
}

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

.service-details {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.service-details h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-details p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price-tag {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.select-service {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: var(--primary-color);
}

.select-service.selected {
    background-color: var(--accent-color);
}

.testimonial-split {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.testimonial-content {
    padding: 2rem 0;
}

.testimonial-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

.insight-section {
    padding: 6rem 0;
}

.insight-split {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.insight-left {
    flex: 0 0 40%;
}

.insight-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.insight-right {
    flex: 1;
}

.insight-right p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.process-split {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.process-steps {
    margin-top: 2rem;
}

.step-item {
    margin-bottom: 2rem;
}

.step-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-item p {
    color: var(--text-light);
}

.form-section {
    padding: 6rem 0;
}

.form-wrapper-split {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-intro {
    flex: 0 0 40%;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.form-container {
    flex: 1;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.final-cta-split {
    padding: 6rem 0;
    background-color: var(--primary-color);
}

.final-cta-split .split-text {
    color: var(--white);
}

.final-cta-split .split-text h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.final-cta-split .split-text p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 3rem 0 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-col p {
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

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

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    color: var(--white);
    flex: 1;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

.btn-cookie.accept {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-cookie.reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-cookie:hover {
    opacity: 0.85;
}

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

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

    .split-content,
    .split-content.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .service-card {
        flex-direction: column;
    }

    .service-visual {
        flex: 0 0 300px;
    }

    .insight-split {
        flex-direction: column;
        gap: 2rem;
    }

    .form-wrapper-split {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

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

    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .split-text h2 {
        font-size: 2rem;
    }

    .section-header-center h2 {
        font-size: 2rem;
    }

    .trust-grid {
        flex-direction: column;
        gap: 2rem;
    }
}
