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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #7fb069;
    --accent-color: #f4a259;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #fdfcfa;
    --bg-card: #ffffff;
    --border-color: #e8e5e0;
    --error-color: #d64545;
    --success-color: #5a9e6f;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.3rem;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1.3rem;
}

li {
    margin-bottom: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    border-top: 2px solid var(--border-color);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

.btn-accept:hover {
    background-color: #234830;
}

.btn-reject {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-reject:hover {
    border-color: var(--text-dark);
}

.nav-minimal {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: var(--primary-color);
}

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

.nav-links a {
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.editorial-flow {
    max-width: 100%;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-editorial {
    position: relative;
    margin-bottom: 3rem;
}

.hero-image-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #e8e5e0;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2rem 3rem;
    max-width: 700px;
    width: 90%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hero-text-overlay h1 {
    margin: 0;
    font-size: 2.5rem;
    text-align: center;
}

.story-intro {
    padding: 3rem 0;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 400;
}

.story-section {
    padding: 3rem 0;
}

.inline-image {
    margin: 2.5rem 0;
    background-color: #f5f3f0;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    height: auto;
}

.insight-section {
    padding: 3rem 0;
    background-color: #f9f8f6;
    margin: 3rem 0;
}

.insight-section .narrow-content {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.testimonial-inline {
    padding: 3rem 0;
    background-color: var(--bg-card);
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    margin: 3rem 0;
}

.testimonial-inline blockquote {
    font-size: 1.25rem;
    line-height: 1.65;
    font-style: italic;
    color: var(--text-dark);
    padding: 2rem 0;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

.services-reveal {
    padding: 4rem 0;
}

.services-intro {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.service-cards-stacked {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.service-image-container {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background-color: #e8e5e0;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-info {
    padding: 2rem;
}

.service-info h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    color: var(--primary-color);
}

.service-info p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.btn-service {
    padding: 0.9rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.btn-service:hover {
    background-color: #234830;
}

.cta-form-section {
    padding: 4rem 0;
    background-color: #f5f3f0;
    margin: 3rem 0;
}

.cta-form-section .narrow-content {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.btn-submit:hover {
    background-color: #234830;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.disclaimer-section {
    padding: 3rem 0;
    background-color: #fef9f3;
    border-top: 1px solid var(--border-color);
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
}

.site-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

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

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

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

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

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

.page-header {
    padding: 3rem 0 2rem;
    border-bottom: 3px solid var(--primary-color);
    margin-bottom: 2rem;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.update-date {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.legal-content {
    padding: 2rem 0 4rem;
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 3rem;
}

.legal-content h3 {
    color: var(--text-dark);
    margin-top: 2rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: white;
    border: 1px solid var(--border-color);
}

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

.cookie-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.contact-info-block {
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-image {
    margin: 3rem 0;
    background-color: #f5f3f0;
    overflow: hidden;
}

.visit-info,
.directions-info,
.contact-note {
    margin: 3rem 0;
}

.thanks-section {
    padding: 4rem 0;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    color: var(--success-color);
}

.thanks-image {
    margin: 3rem 0;
    background-color: #f5f3f0;
    overflow: hidden;
}

.thanks-details {
    background-color: #f9f8f6;
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #234830;
    color: white;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    text-decoration: none;
}

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

.next-steps {
    text-align: left;
    margin: 3rem 0;
    background-color: #f9f8f6;
    padding: 2rem;
    border-radius: 4px;
}

.next-steps h2 {
    margin-top: 0;
}

.next-steps ol {
    margin-left: 1.5rem;
}

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

.services-detailed {
    padding: 2rem 0 4rem;
}

.service-detail {
    margin-bottom: 4rem;
}

.service-image-full {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #e8e5e0;
    margin-bottom: 2rem;
}

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

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 2rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.cta-section {
    padding: 4rem 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h2 {
    color: white;
    margin-top: 0;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-text-overlay {
        padding: 1.5rem;
    }

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

    .narrow-content {
        padding: 0 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}