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

:root {
    --primary-color: #2d6a4f;
    --secondary-color: #52b788;
    --dark-color: #1b4332;
    --light-color: #d8f3dc;
    --text-dark: #081c15;
    --text-light: #40916c;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #b7e4c7;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    background-color: var(--light-color);
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-white);
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

.split-section {
    display: flex;
    min-height: 500px;
}

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

.split-image {
    flex: 1;
    background-color: var(--bg-light);
    overflow: hidden;
}

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.split-content h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.split-content ul {
    list-style-position: inside;
    margin: 1rem 0;
}

.split-content ul li {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

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

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

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

.services-showcase {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.services-showcase h2 {
    font-size: 2.8rem;
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: var(--light-color);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    padding: 1.5rem 1.5rem 0.5rem;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-light);
    padding: 0 1.5rem;
    line-height: 1.6;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 1rem 1.5rem;
}

.btn-select {
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.consultation-form {
    max-width: 700px;
    margin: 3rem auto;
    padding: 3rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.consultation-form.hidden {
    display: none;
}

.consultation-form h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-align: center;
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: var(--light-color);
}

.disclaimer {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.main-footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-references {
    max-width: 1200px;
    margin: 2rem auto;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-color);
}

.footer-references h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-references a {
    color: var(--light-color);
    text-decoration: underline;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-color);
    max-width: 1200px;
    margin: 0 auto;
}

.citation {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie:not(.secondary) {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.btn-cookie:not(.secondary):hover {
    background-color: var(--primary-color);
}

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

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

.page-hero {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
}

.values-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
    text-align: center;
    color: var(--bg-white);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

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

.cta-section .btn-primary:hover {
    background-color: var(--light-color);
}

.service-detail {
    padding: 4rem 2rem;
}

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

.split-layout {
    display: flex;
    gap: 3rem;
    align-items: start;
}

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

.detail-content {
    flex: 2;
}

.detail-content h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.detail-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.detail-content ul {
    margin-left: 1.5rem;
}

.detail-content ul li {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.detail-sidebar {
    flex: 1;
    min-width: 280px;
}

.price-box {
    background-color: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    position: sticky;
    top: 100px;
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

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

.contact-section {
    padding: 4rem 2rem;
}

.contact-grid {
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-item {
    margin: 2.5rem 0;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.email-display {
    font-weight: 600;
    color: var(--dark-color);
}

.note {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--light-color);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(29, 67, 50, 0.9);
    color: var(--bg-white);
    padding: 1.5rem;
}

.map-overlay p {
    margin: 0;
    font-size: 1rem;
}

.directions-section {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.directions-section h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 3rem;
}

.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.direction-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.direction-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.direction-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.service-confirmation p {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin: 0;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.steps-grid {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-item p {
    font-size: 1rem;
    color: var(--text-light);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.resources-section {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

.resources-section h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 1rem;
}

.resources-section > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.resources-grid {
    display: flex;
    gap: 2rem;
}

.resource-item {
    flex: 1;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 8px;
}

.resource-item h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.resource-item p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.resource-item a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.resource-item a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin: 2.5rem 0 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1rem 2rem;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: none;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
}

.cookie-table td {
    font-size: 1rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hero-split,
    .split-section,
    .contact-grid,
    .split-layout,
    .footer-content {
        flex-direction: column;
    }

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

    .hero-text h1,
    .page-hero h1 {
        font-size: 2rem;
    }

    .split-content h2 {
        font-size: 1.8rem;
    }

    .services-grid,
    .values-grid,
    .directions-grid,
    .resources-grid,
    .steps-grid {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.9rem;
    }

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

    .split-content,
    .hero-content {
        padding: 2rem;
    }

    .detail-sidebar {
        width: 100%;
    }

    .price-box {
        position: static;
    }
}