/* 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: #2c3e50;
    background-color: #ffffff;
}

/* Typography - Editorial Style */
h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

h2 {
    font-size: 1.875rem;
    line-height: 1.3;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: #1a252f;
}

h3 {
    font-size: 1.375rem;
    line-height: 1.4;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h4 {
    font-size: 1.125rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

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

li {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    margin-bottom: 0;
    font-size: 1rem;
    flex: 1;
}

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

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

.btn-cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

/* Navigation - Minimal Style */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a252f;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

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

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #1a252f;
    transition: all 0.3s ease;
}

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

.btn-sticky {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e74c3c;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.5);
}

/* Editorial Container - Main Layout */
.editorial-container {
    background-color: #ffffff;
}

/* Hero - Editorial Style */
.hero-editorial {
    padding: 4rem 2rem 3rem;
    background-color: #f8f9fa;
}

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

.hero-lead {
    font-size: 1.375rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.hero-image {
    max-width: 900px;
    margin: 3rem auto 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Page Header */
.page-header-editorial {
    padding: 3rem 2rem 2rem;
    background-color: #f8f9fa;
}

.page-lead {
    font-size: 1.25rem;
    color: #555;
}

/* Content Narrative - Narrow Column Layout */
.content-narrative {
    padding: 3rem 2rem;
}

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

.opening-line {
    font-size: 1.25rem;
    font-style: italic;
    color: #555;
    margin-bottom: 2rem;
}

/* Inline Figures */
.inline-figure {
    margin: 2.5rem 0;
}

.inline-figure img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

figcaption {
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    color: #777;
    font-style: italic;
    text-align: center;
}

/* Inline CTA Box */
.inline-cta-box {
    background-color: #ecf7fd;
    border-left: 4px solid #3498db;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.inline-cta-box h3 {
    margin-top: 0;
    color: #2980b9;
}

.inline-cta-box p {
    margin-bottom: 1.5rem;
}

.btn-inline {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background-color: #3498db;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-inline:hover {
    background-color: #2980b9;
}

/* Testimonials */
.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fafafa;
    border-left: 4px solid #95a5a6;
    border-radius: 4px;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 1.125rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-size: 1rem;
    font-style: normal;
    color: #7f8c8d;
}

/* Service Cards - Compact Inline */
.service-embed {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card-compact {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    transition: border-color 0.3s ease;
}

.service-card-compact:hover {
    border-color: #3498db;
}

.service-card-compact h3 {
    margin-top: 0;
    color: #2c3e50;
}

.age-range {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background-color: #3498db;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.price-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

.btn-service {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #2c3e50;
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

/* Full Width CTA */
.full-width-cta {
    text-align: center;
    margin: 4rem 0 2rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 8px;
}

.full-width-cta h2 {
    color: #ffffff;
    margin-top: 0;
}

.full-width-cta p {
    color: #ffffff;
    font-size: 1.125rem;
}

/* Forms */
.form-section {
    margin: 3rem 0;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.form-section h2 {
    margin-top: 0;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Service Detail Cards - Services Page */
.service-detail-card {
    margin: 3rem 0;
    padding: 3rem;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-header h2 {
    margin: 0;
}

.age-badge {
    padding: 0.5rem 1rem;
    background-color: #3498db;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
}

.service-image {
    margin: 2rem 0;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-description ul {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 6px;
}

.pricing-box {
    margin-top: 2.5rem;
    padding: 2.5rem;
    background-color: #ecf7fd;
    border-radius: 8px;
    text-align: center;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.price-detail {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #3498db;
    font-size: 1.125rem;
    font-weight: 600;
    border: 2px solid #3498db;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

/* Contact Page */
.contact-info-section {
    margin: 2rem 0 3rem;
}

.contact-detail {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.contact-detail:last-child {
    border-bottom: none;
}

.contact-detail h3 {
    color: #3498db;
    margin-top: 0;
}

.contact-note {
    font-size: 1rem;
    color: #777;
    font-style: italic;
}

.info-box {
    background-color: #fff9e6;
    border-left: 4px solid #f39c12;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.info-box h3 {
    margin-top: 0;
    color: #e67e22;
}

.faq-item {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.faq-item h3 {
    margin-top: 0;
    color: #2c3e50;
}

/* Thanks Page */
.thanks-page {
    text-align: center;
    padding: 3rem 2rem;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-lead {
    font-size: 1.25rem;
    color: #555;
}

.thanks-detail {
    padding: 2rem;
    background-color: #ecf7fd;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.125rem;
    color: #2980b9;
}

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

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

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

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

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

/* Legal Content */
.legal-content h2 {
    margin-top: 3rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    margin-top: 2rem;
}

.legal-content ul {
    background-color: #f8f9fa;
    padding: 1.5rem 1.5rem 1.5rem 3rem;
    border-radius: 6px;
}

/* Footer */
.footer {
    background-color: #1a252f;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

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

.footer-column p {
    color: #bdc3c7;
    font-size: 1rem;
}

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9375rem;
    margin: 0;
}

/* Closing Section */
.closing-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        border-top: 1px solid #e0e0e0;
        padding: 1rem 2rem;
        gap: 0.5rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

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

    .hamburger {
        display: flex;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

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

    .btn-sticky {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .hero-editorial,
    .page-header-editorial {
        padding: 2rem 1.5rem;
    }

    .content-narrative {
        padding: 2rem 1.5rem;
    }

    .service-embed {
        gap: 1.5rem;
    }

    .form-section {
        padding: 2rem 1.5rem;
    }

    .service-detail-card {
        padding: 2rem 1.5rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .hero-editorial,
    .page-header-editorial {
        padding: 1.5rem 1rem;
    }

    .content-narrative {
        padding: 1.5rem 1rem;
    }

    .form-section {
        padding: 1.5rem 1rem;
    }

    .service-detail-card {
        padding: 1.5rem 1rem;
    }

    .footer {
        padding: 2rem 1rem 1rem;
    }
}