:root {
    --primary: #2d5a27;
    --primary-dark: #1e3d1a;
    --primary-light: #4a8c42;
    --secondary: #8b7355;
    --accent: #d4a574;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-white: #ffffff;
    --bg-light: #f8f7f4;
    --bg-cream: #f5f2eb;
    --bg-green-light: #e8f0e6;
    --border-light: #e0ddd6;
    --shadow-soft: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-medium: 0 4px 16px rgba(0,0,0,0.12);
    --radius-small: 4px;
    --radius-medium: 8px;
    --radius-large: 16px;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.ad-disclosure {
    background-color: var(--bg-cream);
    padding: 8px 0;
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
}

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

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

.logo span {
    color: var(--secondary);
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: var(--text-medium);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: transform 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-green-light);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-light);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 80px 24px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.hero p {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 32px;
    max-width: 540px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-medium);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-align: center;
}

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

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

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

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

.btn-accent {
    background-color: var(--accent);
    color: var(--text-dark);
}

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

/* Sections */
.section {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--bg-light);
}

.section-green {
    background-color: var(--bg-green-light);
}

.section-cream {
    background-color: var(--bg-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.section-header-left {
    text-align: left;
    margin-bottom: 40px;
}

.section-header-left h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.section-header-left p {
    font-size: 17px;
    color: var(--text-medium);
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    max-width: 380px;
    background-color: var(--bg-white);
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.service-card-image {
    height: 200px;
    background-color: var(--bg-green-light);
    overflow: hidden;
}

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

.service-card-content {
    padding: 24px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 16px;
}

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

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

/* Features */
.features-row {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.features-row:last-child {
    margin-bottom: 0;
}

.features-row.reverse {
    flex-direction: row-reverse;
}

.features-image {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-green-light);
    border-radius: var(--radius-large);
    overflow: hidden;
}

.features-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.features-content {
    flex: 1;
    min-width: 300px;
}

.features-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.features-content p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-medium);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Testimonials */
.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.testimonial-card {
    flex: 1 1 calc(50% - 24px);
    min-width: 300px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-weight: 700;
    font-size: 18px;
}

.testimonial-author-info strong {
    display: block;
    color: var(--text-dark);
    font-size: 15px;
}

.testimonial-author-info span {
    font-size: 13px;
    color: var(--text-light);
}

/* Contact Form */
.contact-section {
    display: flex;
    gap: 48px;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.contact-detail {
    margin-bottom: 20px;
}

.contact-detail strong {
    display: block;
    color: var(--text-dark);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-detail span {
    color: var(--text-medium);
    font-size: 16px;
}

.contact-form-wrapper {
    flex: 1.5;
    min-width: 320px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-medium);
    background-color: var(--bg-white);
    color: var(--text-dark);
    transition: border-color 0.2s ease;
}

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

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

.form-submit {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* About Page */
.about-hero {
    background-color: var(--bg-green-light);
    padding: 100px 0 60px;
    text-align: center;
}

.about-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.about-text {
    flex: 1.5;
}

.about-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.about-sidebar {
    flex: 1;
    background-color: var(--bg-cream);
    padding: 32px;
    border-radius: var(--radius-large);
}

.about-sidebar h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.stat-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.stat-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-medium);
}

/* CTA Section */
.cta-section {
    background-color: var(--primary);
    padding: 80px 24px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background-color: var(--bg-white);
    color: var(--primary);
}

.cta-section .btn:hover {
    background-color: var(--bg-cream);
}

/* Footer */
.site-footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 0 0;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    flex: 1.5;
    min-width: 280px;
}

.footer-brand .logo {
    color: var(--bg-white);
    margin-bottom: 16px;
}

.footer-brand .logo span {
    color: var(--accent);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    max-width: 300px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bg-white);
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-legal a:hover {
    color: rgba(255,255,255,0.8);
}

/* Thanks Page */
.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-green-light);
}

.thanks-content {
    max-width: 500px;
    padding: 40px;
}

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

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--bg-white);
}

.thanks-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.thanks-content p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 32px 0 16px;
}

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

.legal-page ul {
    margin: 16px 0 16px 24px;
    color: var(--text-medium);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    min-width: 280px;
}

.cookie-content a {
    color: var(--accent);
}

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

.cookie-btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-small);
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease;
}

.cookie-accept {
    background-color: var(--primary);
    color: var(--bg-white);
}

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

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

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

/* Disclaimer */
.disclaimer {
    background-color: var(--bg-cream);
    padding: 24px;
    border-radius: var(--radius-medium);
    margin-top: 40px;
}

.disclaimer p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 36px;
    }

    .features-row,
    .features-row.reverse {
        flex-direction: column;
    }

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

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

    .section-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-top: 1px solid var(--border-light);
        box-shadow: var(--shadow-medium);
    }

    .main-nav.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        min-height: 60vh;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 17px;
    }

    .section {
        padding: 60px 0;
    }

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

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

    .footer-main {
        flex-direction: column;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Contact Page Specific */
.contact-page-info {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.contact-block {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
}

.contact-block h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.contact-block p {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.8;
}

/* Page Header */
.page-header {
    background-color: var(--bg-green-light);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-medium);
}
