:root {
    --primary: #2c5f3d;
    --primary-dark: #1e4229;
    --secondary: #d4a574;
    --accent: #8b4513;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-white: #ffffff;
    --bg-cream: #f9f6f2;
    --bg-sage: #e8ede9;
    --bg-warm: #f5f0eb;
    --border-light: #e0dcd6;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 30px 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;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

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

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

.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    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: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

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

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

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

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

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-sage);
    overflow: hidden;
}

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

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

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

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-medium);
    cursor: pointer;
    transition: all 0.25s 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);
}

.section {
    padding: 80px 0;
}

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

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

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

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

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

.section-center {
    text-align: center;
}

.section-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    display: flex;
    background-color: var(--bg-white);
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.3s ease;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-card-image {
    flex: 0 0 40%;
    min-height: 280px;
    background-color: var(--bg-sage);
}

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

.service-card-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

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

.feature-item {
    flex: 1 1 280px;
    max-width: 350px;
    text-align: center;
    padding: 32px;
}

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

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--bg-white);
    fill: none;
    stroke-width: 2;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 0 0 45%;
    background-color: var(--bg-sage);
    border-radius: var(--radius-large);
    overflow: hidden;
    min-height: 400px;
}

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

.about-content {
    flex: 1;
}

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

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

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 8px;
}

.testimonials-wrapper {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

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

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

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-location {
    font-size: 0.9rem;
    color: var(--text-light);
}

.cta-section {
    background-color: var(--primary);
    color: var(--bg-white);
    text-align: center;
    padding: 80px 24px;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    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);
    color: var(--primary-dark);
}

.contact-wrapper {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

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

.contact-detail h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.contact-detail p {
    color: var(--text-dark);
    font-size: 1.05rem;
}

.form-wrapper {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
}

.form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-medium);
    background-color: var(--bg-white);
    color: var(--text-dark);
    transition: border-color 0.25s 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;
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 24px;
}

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

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

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--bg-white);
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

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

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

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

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

.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.visible {
    display: block;
}

.cookie-inner {
    max-width: 1200px;
    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;
    color: rgba(255,255,255,0.9);
}

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

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-small);
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
}

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

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

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

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

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

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

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

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

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

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

.legal-content ul {
    color: var(--text-medium);
    margin-bottom: 16px;
    padding-left: 24px;
}

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

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

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

.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;
    stroke: var(--bg-white);
    fill: none;
    stroke-width: 2;
}

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

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

.disclaimer {
    background-color: var(--bg-warm);
    padding: 24px;
    border-radius: var(--radius-medium);
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.25s ease;
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .nav-main {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-medium);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav-main.open {
        transform: translateY(0);
        opacity: 1;
    }

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

    .service-card,
    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .service-card-image {
        flex: none;
        min-height: 200px;
    }

    .about-split {
        flex-direction: column;
        gap: 32px;
    }

    .about-image {
        flex: none;
        min-height: 300px;
        width: 100%;
    }

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

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

@media (max-width: 600px) {
    .section {
        padding: 50px 0;
    }

    .hero {
        min-height: 50vh;
    }

    .hero-content {
        padding: 50px 0;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .footer-grid {
        gap: 32px;
    }

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