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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2d2d2d;
    background-color: #ffffff;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0.8rem 0;
}

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

.nav-brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d2d2d;
    font-family: 'Arial', sans-serif;
}

.nav-disclosure {
    font-size: 0.75rem;
    color: #666;
    font-style: italic;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
}

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

.nav-links a {
    color: #2d2d2d;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-family: 'Arial', sans-serif;
}

.nav-links a:hover {
    color: #8b4513;
}

.editorial-layout {
    margin-top: 5rem;
}

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

.hero-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-text-overlay h1 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
}

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

.intro-large {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #4a4a4a;
    font-weight: 300;
}

.content-narrow p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.content-narrow h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #2d2d2d;
}

.content-narrow h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.inline-image-block {
    margin: 3rem 0;
    padding: 2rem;
}

.content-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 1rem;
}

.image-caption {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    text-align: center;
}

.quote-block {
    margin: 3rem 0;
    padding: 2rem 3rem;
    border-left: 4px solid #8b4513;
    background-color: #fafafa;
}

.quote-block p {
    font-size: 1.3rem;
    font-style: italic;
    color: #4a4a4a;
    line-height: 1.7;
}

.quote-block cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    color: #666;
}

.inline-cta {
    text-align: center;
    margin: 3rem 0;
}

.btn-inline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #8b4513;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

.btn-inline:hover {
    background-color: #6d3510;
    cursor: pointer;
}

.services-reveal {
    background-color: #f9f9f9;
    padding: 4rem 2rem;
}

.services-reveal .content-narrow {
    padding: 0 2rem 2rem 2rem;
}

.section-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    padding: 0 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

.service-content p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-benefits li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.95rem;
}

.service-benefits li:before {
    content: "✓ ";
    color: #8b4513;
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.price-amount {
    font-size: 1.8rem;
    color: #8b4513;
    font-weight: 600;
}

.btn-service {
    width: 100%;
    padding: 1rem;
    background-color: #2d2d2d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.testimonial-inline p {
    font-size: 1.15rem;
    color: #4a4a4a;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

.form-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
}

.editorial-form {
    max-width: 600px;
    margin: 2rem auto 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #2d2d2d;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b4513;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: #8b4513;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

.btn-submit:hover {
    background-color: #6d3510;
}

.disclaimer-box {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f0f0f0;
    border-radius: 6px;
}

.disclaimer-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

.disclaimer-box p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.footer-editorial {
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem 2rem;
}

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

.footer-section {
    flex: 1 1 250px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #444;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(45, 45, 45, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

.btn-cookie:not(.secondary) {
    background-color: #8b4513;
    color: #ffffff;
}

.btn-cookie:not(.secondary):hover {
    background-color: #6d3510;
}

.btn-cookie.secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-cookie.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-header {
    padding: 8rem 2rem 4rem 2rem;
    text-align: center;
    color: #ffffff;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

.services-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    gap: 2rem;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1 1 400px;
}

.detail-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail-content {
    flex: 1 1 500px;
    padding: 1rem;
}

.service-tagline {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.program-list {
    list-style: none;
    margin: 1.5rem 0;
}

.program-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a4a4a;
    font-size: 1rem;
}

.program-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: bold;
}

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.meta-item {
    flex: 1 1 150px;
    display: flex;
    flex-direction: column;
}

.meta-item strong {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.3rem;
    font-family: 'Arial', sans-serif;
}

.meta-item span {
    font-size: 1rem;
    color: #2d2d2d;
}

.price-highlight {
    font-size: 1.6rem;
    color: #8b4513;
    font-weight: 600;
}

.cta-section {
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.cta-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #8b4513;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

.btn-primary-large:hover {
    background-color: #6d3510;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2d2d2d;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.email-display {
    color: #2d2d2d;
    font-weight: 600;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.info-list {
    list-style: none;
    margin-top: 1rem;
}

.info-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a4a4a;
}

.info-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8b4513;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.1rem;
    color: #2d2d2d;
    margin-bottom: 0.5rem;
}

.faq-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.map-section {
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.map-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 3rem 2rem;
}

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

.thanks-icon {
    font-size: 4rem;
    color: #8b4513;
    margin-bottom: 1.5rem;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    color: #2d2d2d;
}

.thanks-message {
    text-align: left;
}

.thanks-intro {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    text-align: center;
}

.thanks-details {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    text-align: center;
}

.thanks-message h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #8b4513;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d2d2d;
}

.step-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.thanks-info-box {
    background-color: #f0f0f0;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.thanks-info-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d2d2d;
}

.thanks-info-box p {
    font-size: 1rem;
    color: #4a4a4a;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: #8b4513;
    border: 2px solid #8b4513;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: 'Arial', sans-serif;
}

.btn-secondary:hover {
    background-color: #8b4513;
    color: #ffffff;
}

.testimonial-box {
    padding: 3rem;
    border-radius: 8px;
}

.testimonial-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
    text-align: center;
}

.testimonial-box > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 6px;
}

.testimonial-item p {
    font-size: 1rem;
    color: #4a4a4a;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.testimonial-item cite {
    font-size: 0.9rem;
    color: #666;
    font-style: normal;
}

.legal-layout {
    margin-top: 5rem;
    min-height: 70vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: #2d2d2d;
}

.legal-date {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #2d2d2d;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #2d2d2d;
}

.legal-section h4 {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d2d2d;
}

.legal-section p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-list {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-list li {
    padding: 0.3rem 0;
    color: #4a4a4a;
    line-height: 1.6;
}

.legal-section a {
    color: #8b4513;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #6d3510;
}

.cta-inline-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.cta-inline-section h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.cta-inline-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-inline-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #8b4513;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

.btn-inline-large:hover {
    background-color: #6d3510;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .intro-large {
        font-size: 1.2rem;
    }

    .content-narrow h2 {
        font-size: 1.6rem;
    }

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

    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card.reverse {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}