:root {
    --primary: #2c5530;
    --primary-dark: #1e3d22;
    --secondary: #d4a853;
    --accent: #8b4513;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #6b7280;
    --bg-light: #fafafa;
    --bg-warm: #f5f0e8;
    --bg-accent: #e8efe9;
    --border: #e0e0e0;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
}

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

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 2.8rem; margin-bottom: 1.2rem; }
h2 { font-size: 2.2rem; margin-bottom: 1rem; }
h3 { font-size: 1.6rem; margin-bottom: 0.8rem; }
h4 { font-size: 1.3rem; margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; }

.btn {
    display: inline-block;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
    background: #c49843;
    transform: translateY(-2px);
}

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

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

.ad-disclosure {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 8px 0;
    font-size: 0.8rem;
    text-align: center;
}

.header {
    background: var(--text-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

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

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

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

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #3a5a40;
}

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

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

.hero h1 {
    color: var(--text-light);
    font-size: 3.2rem;
    max-width: 680px;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 540px;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.section {
    padding: 80px 0;
}

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

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

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

.section-dark h2,
.section-dark h3 {
    color: var(--text-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.flex-row {
    display: flex;
    gap: 40px;
    align-items: center;
}

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

.flex-col {
    flex: 1;
}

.image-container {
    background-color: #c9d6c5;
    border-radius: 12px;
    overflow: hidden;
}

.image-container img {
    display: block;
    width: 100%;
    height: 100%;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 19px);
    background: var(--text-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card-img {
    height: 200px;
    background-color: #b8c9b5;
    overflow: hidden;
}

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

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

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

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

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

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

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.benefit-item {
    flex: 0 0 calc(50% - 12px);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    margin-bottom: 4px;
}

.benefit-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.testimonials {
    display: flex;
    gap: 28px;
}

.testimonial-card {
    flex: 1;
    background: var(--text-light);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

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

.testimonial-name {
    font-weight: 600;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-section {
    background: var(--bg-warm);
    padding: 80px 0;
}

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

.form-info {
    flex: 1;
}

.form-info h2 {
    margin-bottom: 20px;
}

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

.form-container {
    flex: 1;
    background: var(--text-light);
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44,85,48,0.1);
}

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

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

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

.cta-section h2 {
    color: var(--text-light);
    margin-bottom: 16px;
}

.cta-section p {
    opacity: 0.9;
    max-width: 540px;
    margin: 0 auto 28px;
}

.cta-section .btn {
    background: var(--secondary);
    color: var(--text-dark);
}

.cta-section .btn:hover {
    background: #c49843;
}

.footer {
    background: #1a1a1a;
    color: #a0a0a0;
    padding: 60px 0 24px;
}

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

.footer-col {
    flex: 1;
}

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

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

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

.footer-col a {
    color: #a0a0a0;
    transition: color 0.2s;
}

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

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

.footer-links a {
    color: #808080;
    font-size: 0.9rem;
}

.disclaimer {
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    padding: 24px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

.disclaimer p {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.page-header {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--text-light);
    margin-bottom: 12px;
}

.page-header p {
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.content-section h3 {
    margin-top: 24px;
    margin-bottom: 12px;
}

.content-section ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

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

.contact-grid {
    display: flex;
    gap: 48px;
}

.contact-info {
    flex: 1;
}

.contact-info-item {
    margin-bottom: 28px;
}

.contact-info-item h4 {
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-map {
    flex: 1;
    background: var(--bg-accent);
    border-radius: 12px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.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: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    color: var(--text-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: var(--text-light);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

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

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: opacity 0.2s;
}

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

.cookie-reject {
    background: transparent;
    border: 1px solid #666;
    color: var(--text-light);
}

.team-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.team-card {
    flex: 0 0 calc(33.333% - 22px);
    text-align: center;
}

.team-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: #c9d6c5;
    overflow: hidden;
}

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

.team-card h4 {
    margin-bottom: 4px;
}

.team-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 64px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--text-light);
    opacity: 0.85;
}

.inline-cta {
    background: var(--bg-accent);
    padding: 32px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 40px;
}

.inline-cta h3 {
    margin: 0;
}

@media (max-width: 968px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--text-light);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow);
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }

    .mobile-toggle {
        display: block;
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .hero h1 {
        font-size: 2.4rem;
    }

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

    .service-card {
        flex: 0 0 calc(50% - 14px);
    }

    .benefit-item {
        flex: 0 0 100%;
    }

    .testimonials {
        flex-direction: column;
    }

    .form-wrapper {
        flex-direction: column;
    }

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

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

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .team-card {
        flex: 0 0 auto;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 32px;
    }

    .inline-cta {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .service-card {
        flex: 0 0 100%;
    }

    .section {
        padding: 50px 0;
    }

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