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

:root {
    --primary-green: #2d5016;
    --accent-green: #4a7c28;
    --light-green: #8fb569;
    --earth-brown: #6b4423;
    --cream: #f4f1e8;
    --white: #ffffff;
    --dark-text: #1a1a1a;
    --light-text: #666666;
}

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

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

header {
    background-color: var(--primary-green);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--cream);
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

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

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

.ad-notice {
    background-color: rgba(255,255,255,0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--cream);
}

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

.split-left, .split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.split-left {
    background-color: var(--white);
}

.split-right {
    background-size: cover;
    background-position: center;
    position: relative;
}

.split-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 80, 22, 0.3);
}

.hero-content {
    max-width: 500px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-green);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: var(--primary-green);
    transform: translateY(-2px);
}

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

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

.section-text, .section-visual {
    flex: 1;
    padding: 80px 60px;
}

.section-text {
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-visual {
    background-size: cover;
    background-position: center;
    min-height: 500px;
    position: relative;
}

.section-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
}

.section-text h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.section-text p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 20px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(50% - 30px);
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--light-text);
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.5rem;
    color: var(--accent-green);
    font-weight: bold;
    margin: 20px 0;
}

.service-card .cta-button {
    width: 100%;
    text-align: center;
}

.full-width-section {
    background-color: var(--primary-green);
    color: var(--cream);
    padding: 80px 20px;
    text-align: center;
}

.full-width-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.full-width-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.form-section {
    background-color: var(--cream);
    padding: 80px 20px;
}

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

.form-container h2 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 30px;
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

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

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

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

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

.footer-section p,
.footer-section a {
    color: var(--cream);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    line-height: 1.8;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(244, 241, 232, 0.2);
    color: var(--light-text);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    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: 30px;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin-bottom: 10px;
}

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

.cookie-buttons button {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.cookie-accept:hover {
    background-color: var(--primary-green);
}

.cookie-reject {
    background-color: #e0e0e0;
    color: var(--dark-text);
}

.cookie-reject:hover {
    background-color: #d0d0d0;
}

.contact-info {
    background-color: var(--white);
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.info-block p {
    color: var(--light-text);
    line-height: 1.8;
}

.email-display {
    color: var(--accent-green);
    font-weight: 600;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--white);
}

.legal-content h1 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.legal-content h2 {
    color: var(--accent-green);
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content p {
    margin-bottom: 20px;
    color: var(--light-text);
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    color: var(--light-text);
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-box {
    background-color: var(--white);
    padding: 60px;
    border-radius: 8px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.thanks-box h1 {
    color: var(--accent-green);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thanks-box p {
    color: var(--light-text);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.page-header {
    background-color: var(--primary-green);
    color: var(--cream);
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.about-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.disclaimer {
    background-color: #fff3cd;
    border-left: 4px solid #856404;
    padding: 20px;
    margin: 40px auto;
    max-width: 900px;
}

.disclaimer p {
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

    .split-section,
    .split-section.reverse {
        flex-direction: column;
    }

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

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

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

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

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

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