/* Reset and Base Styles */
* {
    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: #2c2c2c;
    background: #fefefe;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
}

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

h2 {
    font-size: 1.875rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

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

p {
    margin-bottom: 1.25rem;
}

a {
    color: #1a5f7a;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #0d3f52;
    text-decoration: underline;
}

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

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

li {
    margin-bottom: 0.5rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1 1 400px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.938rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-accept,
.btn-reject {
    padding: 0.625rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.938rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-accept {
    background: #2a7f62;
    color: #fff;
}

.btn-accept:hover {
    background: #236b52;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Navigation - Minimal Style */
.nav-minimal {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.logo:hover {
    color: #1a5f7a;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    padding: 0;
    margin: 0;
}

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.938rem;
    font-weight: 500;
    color: #4a4a4a;
    text-decoration: none;
}

.nav-links a:hover {
    color: #1a5f7a;
    text-decoration: none;
}

/* Editorial Content - Core Layout */
.editorial-content {
    padding: 3rem 2rem;
}

.narrow-column {
    max-width: 680px;
    margin: 0 auto;
}

.page-header-narrow {
    max-width: 680px;
    margin: 2rem auto 3rem;
    text-align: center;
}

.page-header-narrow h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.lead-intro {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 0;
}

/* Hero Editorial Style */
.hero-editorial {
    max-width: 900px;
    margin: 3rem auto 4rem;
}

.hero-text-narrow {
    max-width: 680px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.hero-figure {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
}

.hero-figure img {
    width: 100%;
    height: auto;
}

/* Text Sections */
.text-section {
    padding: 3rem 2rem;
}

.text-section.section-dark {
    background: #f5f5f5;
}

.text-section.section-highlight {
    background: #faf8f5;
}

.text-section.section-quiet {
    background: #f9fafb;
}

.text-section.section-cta-emphasis {
    background: linear-gradient(135deg, #f0f8f5 0%, #faf8f5 100%);
    padding: 4rem 2rem;
}

/* Image Breaks */
.image-break {
    margin: 4rem 0;
}

.image-break img {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
}

.image-caption {
    max-width: 680px;
    margin: 1rem auto 0;
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
    text-align: center;
}

.image-break-small {
    margin: 3rem 0;
}

.image-break-small img {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 6px;
}

/* Inline CTAs */
.inline-cta-soft {
    margin: 2rem 0;
    text-align: center;
}

.link-arrow {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.063rem;
    font-weight: 500;
    color: #1a5f7a;
}

.link-arrow:hover {
    color: #0d3f52;
}

/* Testimonials */
.testimonial-inline {
    margin: 2.5rem 0;
    padding: 2rem;
    background: #fff;
    border-left: 4px solid #1a5f7a;
    font-size: 1.125rem;
    font-style: italic;
}

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

.testimonial-large {
    margin: 3rem 0;
    padding: 2.5rem;
    background: #fff;
    border-left: 6px solid #2a7f62;
    font-size: 1.375rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-large cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    color: #4a4a4a;
}

/* Stats Inline */
.stats-inline {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
}

.stat-item {
    text-align: center;
    flex: 1 1 150px;
}

.stat-item strong {
    display: block;
    font-size: 2.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a5f7a;
    margin-bottom: 0.5rem;
}

.stat-item span {
    display: block;
    font-size: 0.938rem;
    color: #666;
}

/* Service Cards - Editorial Style */
.services-showcase {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-card-editorial {
    background: #fff;
    padding: 2rem;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    transition: box-shadow 0.3s ease;
}

.service-card-editorial:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-card-editorial h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.age-range {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price-highlight {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2a7f62;
    margin: 1.5rem 0 1rem;
}

.btn-select-service {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #1a5f7a;
    color: #fff;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-select-service:hover {
    background: #0d3f52;
}

/* CTA Blocks */
.cta-block-centered {
    text-align: center;
    margin: 3rem 0;
}

.btn-primary-large {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #2a7f62;
    color: #fff;
    padding: 1.125rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary-large:hover {
    background: #236b52;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 127, 98, 0.3);
}

/* Forms - Editorial Style */
.form-editorial {
    max-width: 600px;
    margin: 2rem auto;
}

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

.form-group label {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.938rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    background: #fff;
    transition: border-color 0.2s ease;
}

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

.btn-submit-form {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #2a7f62;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.063rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-submit-form:hover {
    background: #236b52;
}

/* FAQ Simple */
.faq-simple {
    margin-top: 2rem;
}

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

.faq-item h3 {
    font-size: 1.125rem;
    color: #1a5f7a;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

/* Services Detailed Page */
.services-detailed {
    padding: 2rem 0;
}

.service-full-width {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2rem;
    background: #f9fafb;
    border-bottom: 1px solid #e5e5e5;
}

.service-title-block h2 {
    font-size: 1.875rem;
    margin: 0 0 0.5rem 0;
}

.age-badge {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.938rem;
    color: #1a5f7a;
    font-weight: 600;
    margin: 0;
}

.service-price-block {
    text-align: right;
}

.price-large {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2a7f62;
    margin: 0 0 0.25rem 0;
}

.price-note {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

.service-content-detailed {
    padding: 2rem;
}

.service-description {
    margin-bottom: 2rem;
}

.topic-list {
    list-style: none;
    padding: 0;
}

.topic-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.topic-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: bold;
}

.service-action {
    margin-top: 2rem;
}

/* Included Items */
.included-items {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.included-item h3 {
    font-size: 1.125rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #1a5f7a;
}

.included-item p {
    margin-bottom: 0;
}

/* Contact Page */
.contact-info-block {
    margin-top: 2rem;
}

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

.contact-detail-large {
    font-size: 1.375rem;
    margin: 1rem 0;
}

.contact-detail-large a {
    color: #1a5f7a;
    font-weight: 600;
}

.contact-detail {
    font-size: 1.063rem;
    line-height: 1.8;
    margin: 1rem 0;
}

.question-list,
.simple-list {
    list-style: none;
    padding: 0;
}

.question-list li,
.simple-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.875rem;
}

.question-list li::before,
.simple-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: bold;
}

.venue-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.venue-item {
    padding: 1.5rem;
    background: #f9fafb;
    border-left: 4px solid #1a5f7a;
    border-radius: 4px;
}

.venue-item h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.venue-item p {
    margin-bottom: 0;
}

/* Thanks Page */
.thanks-section {
    padding: 4rem 2rem;
    min-height: 60vh;
}

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

.thanks-content h1 {
    color: #2a7f62;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
}

.confirmation-box {
    max-width: 800px;
    margin: 3rem auto;
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: left;
}

.confirmation-box h2 {
    margin-top: 0;
    text-align: center;
}

.next-steps {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    padding: 1.5rem;
    background: #fff;
    border-left: 4px solid #2a7f62;
    border-radius: 4px;
}

.step-item h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    color: #2a7f62;
}

.step-item p {
    margin-bottom: 0;
}

.thanks-actions {
    margin-top: 3rem;
}

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

.btn-secondary {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: transparent;
    color: #1a5f7a;
    border: 2px solid #1a5f7a;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #1a5f7a;
    color: #fff;
    text-decoration: none;
}

/* Legal Content */
.legal-content {
    padding: 3rem 2rem 5rem;
}

.legal-updated {
    font-size: 0.938rem;
    color: #666;
    font-style: italic;
    margin-bottom: 0;
}

.legal-list {
    list-style: none;
    padding: 0;
}

.legal-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.legal-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: bold;
}

/* Values List */
.values-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    padding: 1.5rem;
    background: #fff;
    border-left: 4px solid #2a7f62;
    border-radius: 4px;
}

.value-item h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #2a7f62;
}

.value-item p {
    margin-bottom: 0;
}

/* Footer */
.footer-minimal {
    background: #1a1a1a;
    color: #ccc;
    padding: 2rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #ccc;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-notice {
    font-size: 0.875rem;
    color: #888;
    margin: 0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta-link {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #2a7f62;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(42, 127, 98, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-link:hover {
    background: #236b52;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 127, 98, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

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

    .nav-links {
        gap: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    .editorial-content {
        padding: 2rem 1rem;
    }

    .text-section {
        padding: 2rem 1rem;
    }

    .hero-editorial {
        margin: 2rem auto 3rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-price-block {
        text-align: left;
    }

    .stats-inline {
        flex-direction: column;
        gap: 1.5rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .sticky-cta-link {
        display: block;
        text-align: center;
    }

    .testimonial-large {
        font-size: 1.125rem;
        padding: 1.5rem;
    }

    .button-group {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }

    .nav-links a {
        font-size: 0.875rem;
    }

    .price-large {
        font-size: 1.75rem;
    }

    .btn-primary-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .nav-minimal,
    .cookie-banner,
    .sticky-cta,
    .footer-minimal {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    a {
        text-decoration: underline;
    }
}