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

:root {
    --primary: #1a4d2e;
    --secondary: #4f772d;
    --accent: #90a955;
    --dark: #132a13;
    --light: #ecf39e;
    --white: #ffffff;
    --grey: #f4f6f5;
    --text: #2d3e2e;
    --border: #d4dcd5;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 20px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

nav a {
    color: var(--text);
    font-weight: 500;
    position: relative;
}

nav a:hover {
    color: var(--primary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.split-section {
    display: flex;
    min-height: 100vh;
    align-items: center;
}

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

.split-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.split-half.image-side {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.split-half.image-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.4), rgba(144, 169, 85, 0.3));
}

.split-content {
    max-width: 600px;
}

.split-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--dark);
    font-weight: 800;
}

.split-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark);
    font-weight: 700;
}

.split-content h3 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 600;
}

.split-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text);
}

.split-content ul {
    list-style: none;
    margin: 25px 0;
}

.split-content ul li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 17px;
}

.split-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
    font-size: 20px;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 77, 46, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 20px 50px;
    font-size: 19px;
}

.cta-group {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    display: flex;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(26, 77, 46, 0.15);
    transform: translateY(-5px);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-height: 300px;
    background-size: cover;
    background-position: center;
}

.service-content {
    flex: 1;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text);
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 15px;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--secondary);
    font-size: 24px;
    line-height: 1;
}

.select-btn {
    align-self: flex-start;
    margin-top: 15px;
}

.form-section {
    background: var(--grey);
    padding: 80px 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--dark);
}

.form-container p {
    font-size: 17px;
    margin-bottom: 35px;
    color: var(--text);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 4px;
    font-size: 16px;
    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: var(--primary);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.selected-service-info {
    background: var(--light);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary);
}

.selected-service-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
}

.selected-service-info p {
    margin: 0;
    color: var(--text);
}

.stats-section {
    background: var(--primary);
    color: var(--white);
    padding: 80px 20px;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--light);
}

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

.testimonials-section {
    padding: 100px 20px;
    background: var(--grey);
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    color: var(--text);
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark);
    font-size: 16px;
}

.testimonial-role {
    font-size: 14px;
    color: var(--secondary);
    margin-top: 5px;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta .btn {
    padding: 18px 35px;
    font-size: 16px;
    box-shadow: 0 8px 30px rgba(26, 77, 46, 0.4);
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 20px 30px;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--light);
}

.footer-section p,
.footer-section a {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 25px 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--light);
    text-decoration: underline;
}

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

.cookie-buttons .btn {
    padding: 12px 30px;
    font-size: 15px;
}

.contact-split {
    display: flex;
    min-height: 70vh;
    margin-top: 80px;
}

.contact-info {
    flex: 1;
    background: var(--primary);
    color: var(--white);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: var(--white);
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--light);
    font-weight: 600;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.95;
}

.thanks-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--light) 0%, var(--grey) 100%);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: var(--white);
    padding: 70px 50px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: var(--white);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark);
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text);
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--dark);
}

.legal-page .last-updated {
    font-size: 15px;
    color: var(--secondary);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary);
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--dark);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text);
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.legal-page li {
    margin-bottom: 12px;
}

@media (max-width: 1024px) {
    .split-section {
        flex-direction: column !important;
        min-height: auto;
    }

    .split-half {
        padding: 60px 40px;
    }

    .split-half.image-side {
        min-height: 400px;
    }

    .split-content h1 {
        font-size: 44px;
    }

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

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

    .service-image {
        min-height: 250px;
    }

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

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 30px 20px;
        border-bottom: 1px solid var(--border);
        gap: 20px;
        transition: left 0.3s ease;
    }

    nav.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

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

    .split-half {
        padding: 50px 30px;
    }

    .service-content {
        padding: 35px;
    }

    .form-container {
        padding: 40px 30px;
    }

    .cta-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .stats-grid {
        flex-direction: column;
        text-align: center;
    }

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

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

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .sticky-cta .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .split-content h1 {
        font-size: 32px;
    }

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

    .split-half {
        padding: 40px 20px;
    }

    .service-content {
        padding: 25px;
    }

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

    .legal-page h1 {
        font-size: 32px;
    }

    .thanks-content {
        padding: 50px 30px;
    }
}