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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #ffffff;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s;
}

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

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

ul {
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}

li {
    margin-bottom: 0.5rem;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-accept {
    background: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

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

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

.nav-minimal {
    background: white;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.logo:hover {
    color: #0066cc;
    text-decoration: none;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0066cc;
    text-decoration: none;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.sticky-btn {
    background: #0066cc;
    color: white;
    padding: 1rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,102,204,0.3);
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.sticky-btn:hover {
    background: #004499;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,102,204,0.4);
    text-decoration: none;
    color: white;
}

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

.hero-editorial {
    padding: 4rem 1.5rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-lead {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.6;
    margin-top: 1.5rem;
}

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

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.story-intro,
.content-with-image,
.problem-amplification,
.insight-section,
.story-continuation,
.trust-builder,
.benefits-reveal {
    padding: 3rem 1.5rem;
}

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

.drop-cap::first-letter {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    float: left;
    margin: 0.1rem 0.2rem 0 0;
    color: #0066cc;
}

.inline-image,
.section-image,
.wide-image {
    margin: 2.5rem auto;
    max-width: 900px;
    padding: 0 1.5rem;
}

.inline-image img,
.section-image img,
.wide-image img {
    border-radius: 6px;
}

.inline-cta-soft {
    max-width: 680px;
    margin: 3rem auto;
    padding: 2rem 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #0066cc;
    text-align: center;
}

.inline-cta-soft p {
    margin: 0;
    font-size: 1.1rem;
}

.text-link {
    color: #0066cc;
    font-weight: 600;
    text-decoration: none;
}

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

.testimonial-inline {
    font-style: italic;
    border-left: 4px solid #e9ecef;
    padding-left: 1.5rem;
    margin: 2rem 0;
    color: #555;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #2c2c2c;
}

.cta-card-inline {
    max-width: 680px;
    margin: 3rem auto;
    padding: 2.5rem 1.5rem;
    background: #0066cc;
    color: white;
    border-radius: 8px;
    text-align: center;
}

.cta-card-inline h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.btn-primary {
    background: white;
    color: #0066cc;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-decoration: none;
    color: #0066cc;
}

.method-point {
    margin: 2.5rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid #0066cc;
}

.testimonial-feature {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    font-size: 1.35rem;
    font-style: italic;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
    color: #2c2c2c;
}

.testimonial-feature cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 1rem;
    font-weight: 600;
    color: #555;
}

.benefit-item {
    margin: 2rem 0;
}

.services-pricing-reveal {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: relative;
}

.service-card.featured {
    border: 2px solid #0066cc;
}

.badge {
    position: absolute;
    top: -12px;
    left: 2rem;
    background: #0066cc;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.age-range {
    color: #666;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-desc {
    color: #555;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
}

.activity-list,
.benefit-list {
    margin: 1rem 0;
}

.price-reveal {
    margin: 2rem 0;
    padding-top: 1.5rem;
    border-top: 2px solid #e9ecef;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
}

.period {
    display: block;
    color: #666;
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

.btn-service {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-service:hover {
    background: #004499;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,102,204,0.3);
    text-decoration: none;
    color: white;
}

.urgency-section {
    padding: 3rem 1.5rem;
    background: #fff3cd;
}

.urgency-indicator {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 6px;
    border-left: 4px solid #ff9800;
}

.urgency-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.registration-section {
    padding: 4rem 1.5rem;
    background: white;
}

.contact-form {
    max-width: 680px;
    margin: 2rem auto 0;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.checkbox-group label {
    flex-direction: row;
    align-items: flex-start;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 0.5rem;
    margin-top: 0.25rem;
    width: auto;
}

.btn-submit {
    background: #0066cc;
    color: white;
    padding: 1.125rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.btn-submit:hover {
    background: #004499;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,102,204,0.3);
}

.final-testimonial {
    padding: 3rem 1.5rem;
}

.faq-editorial {
    padding: 3rem 1.5rem;
    background: #f8f9fa;
}

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

.faq-item h4 {
    color: #0066cc;
    margin-bottom: 0.75rem;
}

.final-cta-block {
    max-width: 680px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    border-radius: 12px;
}

.final-cta-block h2 {
    color: white;
}

.btn-primary-large {
    background: white;
    color: #0066cc;
    padding: 1.25rem 2.75rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.15rem;
    display: inline-block;
    transition: all 0.2s;
    text-decoration: none;
    margin-top: 1rem;
}

.btn-primary-large:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    text-decoration: none;
    color: #0066cc;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 4rem;
}

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

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
}

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

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

.footer-col a {
    color: #ccc;
    text-decoration: none;
}

.footer-col a:hover {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

.page-header {
    padding: 4rem 1.5rem 2rem;
    background: #f8f9fa;
}

.team-section {
    padding: 3rem 1.5rem;
    background: white;
}

.team-grid {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.team-member {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

.role {
    color: #0066cc;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.values-section,
.philosophy-section {
    padding: 3rem 1.5rem;
}

.value-item {
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid #0066cc;
}

.principle-list {
    margin: 2rem 0;
    list-style: none;
    padding: 0;
}

.principle-list li {
    padding: 1rem;
    background: #f8f9fa;
    margin-bottom: 0.75rem;
    border-radius: 4px;
    padding-left: 1.5rem;
    position: relative;
}

.principle-list li::before {
    content: "→";
    position: absolute;
    left: 0.5rem;
    color: #0066cc;
    font-weight: 700;
}

.milestone-section {
    padding: 3rem 1.5rem;
    background: #f8f9fa;
}

.contact-info-section {
    padding: 3rem 1.5rem;
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-detail {
    margin: 1.5rem 0;
}

.contact-detail h4 {
    color: #0066cc;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.map-section,
.visit-info,
.contact-cta {
    padding: 2rem 1.5rem;
}

.directions-info {
    padding: 2rem 1.5rem;
    background: #f8f9fa;
}

.direction-item {
    margin: 2rem 0;
}

.direction-item ul {
    list-style: none;
    padding: 0;
}

.direction-item li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.direction-item li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0066cc;
}

.thanks-page {
    min-height: 60vh;
}

.thanks-content {
    padding: 3rem 1.5rem;
}

.thanks-message {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.next-step {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    align-items: flex-start;
}

.step-icon {
    background: #0066cc;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-top: 0;
}

.thanks-additional-info,
.contact-reminder {
    margin: 2.5rem 0;
    padding: 2rem;
    background: white;
    border-left: 4px solid #0066cc;
}

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

.legal-page {
    background: white;
}

.legal-content {
    padding: 3rem 1.5rem;
    background: white;
}

.legal-updated {
    color: #666;
    font-size: 0.95rem;
}

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.back-link {
    text-align: center;
    padding: 2rem 1.5rem;
}

.back-link a {
    color: #0066cc;
    font-weight: 600;
}

.how-it-works {
    padding: 3rem 1.5rem;
    background: white;
}

.step-item {
    margin: 2.5rem 0;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background: #0066cc;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-item h4 {
    margin-top: 0;
}

.faq-compact {
    padding: 3rem 1.5rem;
    background: #f8f9fa;
}

.faq-compact p {
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .form-row {
        flex-direction: row;
    }

    .form-row .form-group {
        flex: 1;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 1.25rem);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-card {
        flex: 1;
    }

    .nav-links {
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .service-card {
        flex: 1 1 calc(33.333% - 1.33rem);
    }

    .team-member {
        flex: 1 1 calc(33.333% - 1.67rem);
    }
}

@media (max-width: 767px) {
    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

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

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    h1 {
        font-size: 2rem;
    }

    .testimonial-feature {
        font-size: 1.15rem;
        padding: 2rem 1.5rem;
    }

    .btn-submit {
        font-size: 1rem;
    }
}