:root {
    --color-primary: #2d5a27;
    --color-secondary: #4a7c43;
    --color-accent: #8bc34a;
    --color-dark: #1a3518;
    --color-light: #f5f9f3;
    --color-cream: #fdfcf8;
    --color-text: #2e2e2e;
    --color-text-light: #5c5c5c;
    --color-border: #d4e4d1;
    --color-white: #ffffff;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --shadow-soft: 0 4px 20px rgba(45, 90, 39, 0.1);
    --shadow-medium: 0 8px 30px rgba(45, 90, 39, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-white);
}

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

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

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

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

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

/* Ad Disclosure Banner */
.ad-disclosure {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 8px 24px;
    font-size: 12px;
    text-align: center;
}

/* Header */
.header {
    background-color: var(--color-white);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    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(--color-primary);
    letter-spacing: -0.5px;
}

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

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

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

.nav-main a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

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

.nav-main a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: var(--color-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    padding: 80px 0;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 700px;
}

.hero p {
    font-size: 20px;
    max-width: 550px;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #9cd156;
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

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

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

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

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

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

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

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

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

.section-dark .section-title {
    color: var(--color-white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 48px;
    max-width: 600px;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 280px;
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

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

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

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

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

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

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

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

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

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

/* Features Section */
.features-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
}

.features-content {
    flex: 1 1 500px;
}

.features-image {
    flex: 1 1 400px;
    background-color: var(--color-light);
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

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

.feature-list {
    list-style: none;
    margin-top: 32px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-dark);
}

.feature-text h4 {
    font-size: 18px;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.feature-text p {
    color: var(--color-text-light);
    font-size: 15px;
}

/* Testimonials */
.testimonials-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

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

.testimonial-card::before {
    content: '"';
    font-size: 80px;
    color: var(--color-accent);
    position: absolute;
    top: 10px;
    left: 24px;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

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

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

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    padding: 80px 0;
    text-align: center;
}

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

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

/* Form Styles */
.form-section {
    background-color: var(--color-light);
    padding: 80px 0;
}

.form-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: flex-start;
}

.form-info {
    flex: 1 1 400px;
}

.form-container {
    flex: 1 1 500px;
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-family: var(--font-main);
    border: 2px solid var(--color-border);
    border-radius: 8px;
    transition: var(--transition);
    background-color: var(--color-white);
}

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

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

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 18px;
}

/* Contact Info */
.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--color-dark);
}

.contact-text h4 {
    font-size: 16px;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.contact-text p {
    color: var(--color-text-light);
    font-size: 15px;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 64px 0 32px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--color-accent);
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}

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

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

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

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

/* Disclaimer */
.disclaimer {
    background-color: var(--color-cream);
    padding: 24px;
    border-radius: 8px;
    margin-top: 48px;
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-text {
    flex: 1 1 500px;
}

.cookie-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 14px;
    opacity: 0.85;
}

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

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

.cookie-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

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

.cookie-accept:hover {
    background-color: #9cd156;
}

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

.cookie-reject:hover {
    border-color: var(--color-white);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: var(--color-white);
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 28px;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.content-section h3 {
    font-size: 22px;
    color: var(--color-dark);
    margin: 32px 0 16px;
}

.content-section p {
    margin-bottom: 16px;
    color: var(--color-text);
}

.content-section ul {
    margin: 16px 0 16px 24px;
    color: var(--color-text);
}

.content-section li {
    margin-bottom: 8px;
}

/* About Page */
.about-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
}

.about-text {
    flex: 1 1 500px;
}

.about-image {
    flex: 1 1 400px;
    background-color: var(--color-light);
    border-radius: 12px;
    overflow: hidden;
    min-height: 350px;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 260px;
    text-align: center;
    padding: 32px;
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.value-icon {
    width: 64px;
    height: 64px;
    background-color: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--color-primary);
}

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

.value-card p {
    color: var(--color-text-light);
    font-size: 15px;
}

/* Thanks Page */
.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}

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

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

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--color-dark);
}

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

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

/* Service Detail */
.service-detail {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-bottom: 32px;
}

.service-detail-header {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-detail-image {
    flex: 1 1 400px;
    min-height: 300px;
    background-color: var(--color-light);
}

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

.service-detail-info {
    flex: 1 1 400px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-info h2 {
    font-size: 28px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.service-detail-info p {
    color: var(--color-text);
    margin-bottom: 24px;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 24px;
}

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

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

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

    .nav-toggle {
        display: flex;
    }

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

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

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

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

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

    .footer-col {
        flex: 1 1 100%;
    }

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

    .footer-links {
        justify-content: center;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }
}
