:root {
    --primary: #2c5f3d;
    --primary-dark: #1e4a2d;
    --secondary: #d4a855;
    --accent: #3a7d5c;
    --text-dark: #1a1a1a;
    --text-light: #f8f6f3;
    --bg-light: #f8f6f3;
    --bg-cream: #f2ebe0;
    --bg-sage: #e8ede9;
    --bg-dark: #1e2620;
    --shadow: rgba(0, 0, 0, 0.12);
}

* {
    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-light);
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

.header {
    background-color: var(--bg-dark);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.ad-disclosure {
    background-color: var(--secondary);
    color: var(--text-dark);
    padding: 4px 12px;
    font-size: 0.75rem;
    border-radius: 3px;
    font-weight: 500;
}

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

.nav-main a {
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

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

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

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--text-light);
    transition: transform 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--bg-cream);
}

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

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

.hero-image {
    flex: 1;
    background-color: var(--accent);
    position: relative;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: var(--text-light);
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--text-dark);
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #c49845;
}

.section {
    padding: 100px 0;
}

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

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

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

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

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

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 48px;
    max-width: 640px;
}

.section-dark .section-subtitle {
    color: #bbb;
}

.split-section {
    display: flex;
    align-items: stretch;
}

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

.split-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    flex: 1;
    background-color: var(--primary);
    min-height: 500px;
    position: relative;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

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

.service-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
}

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

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #777;
}

.features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 48px;
}

.feature-item {
    flex: 1 1 calc(25% - 30px);
    min-width: 220px;
    text-align: center;
}

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

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--text-light);
}

.feature-item h4 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 0.9rem;
    color: #666;
}

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

.testimonial-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px var(--shadow);
}

.testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    color: #444;
    margin-bottom: 24px;
    line-height: 1.8;
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--accent);
    overflow: hidden;
}

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

.testimonial-info h5 {
    font-size: 1rem;
    color: var(--primary-dark);
}

.testimonial-info span {
    font-size: 0.85rem;
    color: #777;
}

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

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

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

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
}

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

.contact-info-item p {
    font-size: 0.95rem;
    color: #555;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 320px;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
}

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

.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 18px;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    background-color: #fafafa;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    font-family: inherit;
}

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

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

.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 32px;
}

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

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

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

.footer-col p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: #aaa;
    padding: 6px 0;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #777;
}

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

.footer-legal a {
    font-size: 0.85rem;
    color: #777;
    transition: color 0.3s ease;
}

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

.disclaimer {
    background-color: #2a2a2a;
    padding: 24px;
    border-radius: 6px;
    margin-top: 40px;
}

.disclaimer p {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.7;
}

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

.page-header h1 {
    font-size: 2.6rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.1rem;
    color: #bbb;
    max-width: 600px;
    margin: 0 auto;
}

.content-page {
    padding: 80px 0;
}

.content-page .container {
    max-width: 800px;
}

.content-page h2 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin: 40px 0 16px;
}

.content-page h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 32px 0 12px;
}

.content-page p {
    margin-bottom: 16px;
    color: #444;
}

.content-page ul {
    margin: 16px 0 24px 24px;
}

.content-page li {
    margin-bottom: 8px;
    color: #444;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 24px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-inner p {
    flex: 1;
    font-size: 0.9rem;
    color: #ccc;
}

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

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

.cookie-buttons button {
    padding: 12px 24px;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

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

.cookie-reject {
    background-color: transparent;
    border: 1px solid #666;
    color: #ccc;
}

.cookie-buttons button:hover {
    opacity: 0.85;
}

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

.thanks-box {
    background-color: #fff;
    padding: 60px 48px;
    border-radius: 12px;
    box-shadow: 0 8px 32px var(--shadow);
    max-width: 560px;
}

.thanks-box svg {
    width: 80px;
    height: 80px;
    fill: var(--primary);
    margin-bottom: 24px;
}

.thanks-box h1 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.thanks-box p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 32px;
}

.about-team {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.team-member {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 260px;
    text-align: center;
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-color: var(--accent);
    overflow: hidden;
}

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

.team-member h4 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.team-member span {
    font-size: 0.9rem;
    color: #666;
}

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

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

.cta-section p {
    font-size: 1.1rem;
    color: #d4e8db;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-secondary {
    padding: 18px 48px;
    font-size: 1.05rem;
}

@media (max-width: 900px) {
    .hero-split,
    .split-section {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .hero-content,
    .split-text {
        padding: 60px 32px;
    }

    .hero-image,
    .split-image {
        min-height: 400px;
    }

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

    .nav-main {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-dark);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }

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

    .hamburger {
        display: flex;
    }

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

    .feature-item {
        flex: 1 1 calc(50% - 20px);
    }

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

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

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

    .feature-item {
        flex: 1 1 100%;
    }

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

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