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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

/* Navigation */
nav {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5016;
    text-decoration: none;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #6b8e23;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background-color: #f0f0f0;
    border-radius: 3px;
}

/* Split-screen layout foundation */
.split-section {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
}

.split-left {
    background-color: #f8f9fa;
}

.split-right {
    background-color: #ffffff;
}

.reverse .split-left {
    order: 2;
}

.reverse .split-right {
    order: 1;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    background-color: #e8f5e9;
}

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

/* Hero section */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    background-color: #f1f8f4;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: 3rem;
    z-index: 2;
}

.hero-image {
    flex: 1;
    height: 100%;
    background-color: #c8e6c9;
}

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

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1b3a1b;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
    color: #2d5016;
    margin-bottom: 1rem;
    font-weight: 600;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #6b8e23;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #556b2f;
    transform: translateY(-2px);
}

.cta-secondary {
    background-color: transparent;
    border: 2px solid #6b8e23;
    color: #6b8e23;
}

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

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

.service-card {
    display: flex;
    min-height: 350px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.service-card:nth-child(even) .service-content {
    order: 2;
}

.service-card:nth-child(even) .service-image {
    order: 1;
}

.service-content {
    flex: 1.2;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-image {
    flex: 0.8;
    background-color: #f5f5f5;
    position: relative;
}

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

.price-tag {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d5016;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #f1f8f4;
    border-radius: 4px;
}

.service-description {
    color: #4a5568;
    margin: 1rem 0;
    line-height: 1.7;
}

/* Form styling */
.form-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #6b8e23;
}

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

/* Contact page */
.contact-info-section {
    display: flex;
    gap: 3rem;
    padding: 4rem 2rem;
}

.contact-details {
    flex: 1;
    padding: 2rem;
}

.contact-map {
    flex: 1;
    background-color: #e8f5e9;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

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

.info-item h3 {
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #4a5568;
    line-height: 1.8;
}

/* About page */
.story-section {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.story-section p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.team-highlight {
    background-color: #f1f8f4;
    padding: 3rem;
    margin: 3rem 0;
    border-left: 4px solid #6b8e23;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 2rem;
    margin-top: 5rem;
}

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

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #a5d6a7;
}

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

.footer-section a {
    color: #b0bec5;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #455a64;
    color: #b0bec5;
    font-size: 0.875rem;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    display: none;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.cookie-button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: #6b8e23;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #556b2f;
}

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Legal pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

/* Thanks page */
.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    padding: 3rem;
    background-color: #f1f8f4;
    border-radius: 8px;
}

.thanks-box h1 {
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background-color: #6b8e23;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
}

/* Disclaimer */
.disclaimer-box {
    background-color: #fff9e6;
    border-left: 4px solid #ffa726;
    padding: 1.5rem;
    margin: 2rem 0;
}

.disclaimer-box p {
    font-size: 0.9rem;
    color: #5d4037;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .split-section,
    .hero,
    .service-card,
    .contact-info-section {
        flex-direction: column;
    }

    .reverse .split-left,
    .reverse .split-right {
        order: initial;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

    .service-card:nth-child(even) .service-content,
    .service-card:nth-child(even) .service-image {
        order: initial;
    }
}
