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

:root {
    --primary: #2d5016;
    --secondary: #6b8e23;
    --accent: #8fbc4e;
    --dark: #1a1a1a;
    --light: #f4f7f0;
    --white: #ffffff;
    --text: #333333;
    --border: #d4e1c9;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

nav a {
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.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: 5rem 7%;
}

.split-half.image-side {
    background-size: cover;
    background-position: center;
    min-height: 600px;
    position: relative;
}

.split-half.image-side::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.3), rgba(107, 142, 35, 0.2));
}

.hero-section {
    margin-top: 70px;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -1.5px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text);
    max-width: 540px;
}

.cta-primary {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 80, 22, 0.2);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1rem;
}

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

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card-split {
    display: flex;
    min-height: 500px;
}

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

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

.service-content {
    flex: 1;
    padding: 4rem 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.service-card-split:nth-child(odd) .service-content {
    background: var(--light);
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
}

.service-price {
    font-size: 2.5rem;
    color: var(--secondary);
    font-weight: 800;
    margin: 1.5rem 0;
}

.service-price span {
    font-size: 1rem;
    color: var(--text);
    font-weight: 400;
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text);
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.about-split {
    background: var(--light);
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats-row {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text);
    margin-top: 0.5rem;
}

.form-section {
    background: var(--primary);
    color: var(--white);
}

.form-container {
    max-width: 600px;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-container p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select {
    cursor: pointer;
}

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

footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto 3rem;
    gap: 4rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

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

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: var(--white);
    padding: 1.5rem 5%;
    display: none;
    z-index: 2000;
    border-top: 2px solid var(--accent);
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
}

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

.cookie-buttons button {
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.cookie-accept {
    background: var(--accent);
    color: var(--dark);
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--secondary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.4);
    z-index: 999;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.sticky-cta:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(45, 80, 22, 0.5);
}

.contact-info {
    background: var(--light);
    padding: 3rem;
    border-radius: 8px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.info-item {
    margin-bottom: 1.8rem;
}

.info-item strong {
    display: block;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.info-item p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

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

.thanks-content h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent);
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.policy-container {
    max-width: 900px;
    margin: 100px auto 4rem;
    padding: 0 5%;
}

.policy-container h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.policy-container h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.policy-container p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.policy-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.policy-container li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.intro-text {
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

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

    .split-half {
        padding: 3rem 5%;
    }

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

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

    .stats-row {
        flex-direction: column;
        gap: 2rem;
    }

    nav ul {
        gap: 1.5rem;
    }

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

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

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

    .hero-content p {
        font-size: 1.05rem;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}