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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --max-width: 720px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    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;
    font-size: 0.95rem;
}

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

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

.btn-accept {
    background: var(--success-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    background: #218838;
}

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

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

/* Navigation */
.nav-minimal {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Editorial Container */
.editorial-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 2rem;
}

.story-header {
    margin-bottom: 3rem;
    text-align: center;
}

.story-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 800;
}

.story-lead {
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--text-light);
    font-weight: 400;
}

/* Story Content */
.story-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-paragraph {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-heading {
    font-size: 2rem;
    line-height: 1.3;
    margin: 3rem 0 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.story-image {
    margin: 2.5rem 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.story-image-inline {
    margin: 2rem 0;
    border-radius: 6px;
    overflow: hidden;
}

.story-image-inline img {
    width: 100%;
    object-fit: cover;
}

.story-quote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--accent-color);
    background: var(--bg-light);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.story-highlight {
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.story-highlight p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

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

.cta-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Testimonials */
.testimonial-inline {
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

/* Services Editorial */
.services-editorial {
    margin: 3rem 0;
}

.service-item {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.service-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-item p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.service-duration,
.service-format,
.service-includes {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.service-details {
    margin: 1rem 0;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.btn-select-service,
.btn-enroll {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover,
.btn-enroll:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Enrollment Form */
.enrollment-form-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.enrollment-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group input[readonly] {
    background: var(--bg-light);
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-color);
}

.final-note {
    margin-top: 3rem;
    font-style: italic;
    color: var(--text-light);
}

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

.contact-method {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.contact-method h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-method p {
    margin: 0.3rem 0;
    line-height: 1.6;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

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

.success-icon {
    margin: 2rem auto;
    display: flex;
    justify-content: center;
}

.thanks-details {
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: left;
}

.thanks-details h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-details ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.thanks-details li {
    margin: 0.5rem 0;
}

/* Legal Pages */
.legal-page .story-content {
    font-size: 1rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--secondary-color);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

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

.footer-links a {
    color: var(--bg-white);
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-copy {
    font-size: 0.85rem;
    opacity: 0.8;
}

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

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

.sticky-cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

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

    .story-lead {
        font-size: 1.1rem;
    }

    .story-content {
        font-size: 1rem;
    }

    .story-heading {
        font-size: 1.6rem;
    }

    .service-item {
        padding: 1.5rem;
    }

    .service-item h3 {
        font-size: 1.3rem;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

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

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

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

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

@media (max-width: 480px) {
    .story-header h1 {
        font-size: 1.6rem;
    }

    .story-lead {
        font-size: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .service-price {
        font-size: 1.5rem;
    }
}