/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

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

a:hover {
    color: #2980b9;
}

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

/* Navigation */
.nav-minimal {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a252f;
    letter-spacing: -0.5px;
}

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

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

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

/* Editorial Layout - Core Structure */
.editorial-layout {
    max-width: 100%;
    margin: 0 auto;
}

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

/* Hero Section */
.story-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    font-weight: 400;
    line-height: 1.6;
}

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

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

/* Story Sections */
.story-intro,
.story-problem,
.insight-reveal,
.trust-building,
.benefits-reveal,
.story-continuation,
.social-proof,
.services-pricing,
.urgency-section,
.final-cta-section,
.closing-story,
.intro-section,
.info-section,
.cta-section,
.contact-main,
.visit-section,
.thanks-content,
.mission-section,
.team-section,
.values-section,
.space-section,
.community-section {
    padding: 4rem 0;
}

.lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #495057;
    line-height: 1.8;
}

/* Inline Images */
.image-inline {
    margin: 3rem 0;
}

.image-inline img {
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Inline CTA Sections */
.inline-cta-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.cta-box {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cta-box.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-box.highlight h3 {
    color: white;
}

.cta-inline {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Testimonials */
.testimonial-inline {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #495057;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: #6c757d;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #495057;
}

.author {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #6c757d;
}

/* Benefits */
.benefit-list {
    margin-top: 3rem;
}

.benefit-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item h3 {
    color: #3498db;
    margin-bottom: 0.8rem;
}

/* Services & Pricing */
.services-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    background-color: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: #3498db;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
    transform: translateY(-5px);
}

.service-card.featured {
    border-color: #3498db;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.service-card p {
    color: #6c757d;
    line-height: 1.7;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin: 1.5rem 0;
}

.pricing-note {
    margin-top: 3rem;
    font-size: 0.95rem;
    color: #6c757d;
    font-style: italic;
}

.btn-service {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Services Detailed Page */
.services-detailed {
    max-width: 100%;
}

.service-detail {
    max-width: 900px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
}

.service-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.price-large {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
}

.service-body {
    max-width: 720px;
    margin: 0 auto;
}

.service-body ul {
    margin: 1.5rem 0 2rem 1.5rem;
    color: #495057;
}

.service-body li {
    margin-bottom: 0.8rem;
}

.course-details {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.course-details p {
    margin-bottom: 0.8rem;
    color: #495057;
}

.featured-service {
    position: relative;
}

.badge-large {
    position: absolute;
    top: -15px;
    right: 50%;
    transform: translateX(50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.6rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Urgency Box */
.urgency-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.urgency-box p {
    color: #856404;
    margin-bottom: 0;
    font-weight: 500;
}

/* Forms */
.registration-form {
    max-width: 600px;
    margin: 3rem auto 0;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    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 {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

/* Buttons */
.btn-primary,
.btn-primary-large {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-large {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

.btn-primary:hover,
.btn-primary-large:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: #6c757d;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.btn-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: #3498db;
    color: white;
}

/* Info Sections */
.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.info-box {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.info-box h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

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

.contact-block {
    margin-bottom: 3rem;
    text-align: center;
}

.contact-block h2 {
    color: #3498db;
    margin-bottom: 1rem;
}

.contact-block a {
    color: #3498db;
    font-weight: 600;
}

.note {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    margin-top: 1rem;
}

.directions {
    margin-top: 4rem;
}

.direction-options {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.direction-item {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.direction-item h3 {
    color: #3498db;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

/* Thanks Page */
.thanks-content {
    text-align: center;
}

.success-icon {
    margin: 2rem auto 3rem;
}

.thanks-message {
    margin: 4rem 0;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
    text-align: left;
}

.step {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.step h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

.additional-info {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: #e7f3ff;
    border-radius: 8px;
}

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

/* About Page */
.philosophy-list {
    margin: 2rem 0 2rem 2rem;
    color: #495057;
}

.philosophy-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-member {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.team-member h3 {
    color: #1a252f;
    margin-bottom: 0.5rem;
}

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

/* Legal Pages */
.legal-page .centered-text {
    max-width: 800px;
}

.legal-content h2 {
    margin-top: 3rem;
    color: #1a252f;
}

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

.legal-content ul {
    margin: 1.5rem 0 2rem 2rem;
    color: #495057;
}

.legal-content li {
    margin-bottom: 0.8rem;
}

/* Page Header */
.page-header {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

/* Footer */
.site-footer {
    background-color: #1a252f;
    color: #adb5bd;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

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

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: #adb5bd;
    font-size: 0.95rem;
}

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

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

.footer-col ul li a {
    color: #adb5bd;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

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

.footer-bottom p {
    color: #6c757d;
    font-size: 0.9rem;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #3498db;
    color: white;
}

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

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

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

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

.sticky-cta.active {
    display: block;
}

.sticky-btn {
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

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

    .nav-links {
        gap: 1rem;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .centered-text {
        padding: 0 1.5rem;
    }

    .testimonial-grid,
    .benefit-list,
    .services-list,
    .info-grid,
    .direction-options,
    .team-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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

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

    .sticky-btn {
        display: block;
        text-align: center;
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-secondary {
        margin-right: 0;
        margin-bottom: 1rem;
    }

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

    .service-header h2 {
        font-size: 2rem;
    }

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

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

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

    .hero-content {
        padding: 0 1.5rem 2rem;
    }

    .hero-image {
        padding: 0 1.5rem;
    }
}
