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

/* Editorial Navigation - Minimal Top Nav */
.editorial-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.logo {
    font-size: 1.1rem;
    font-weight: 600;
    color: #667eea;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #667eea;
}

/* Editorial Content - Narrow Centered Column */
.editorial-content {
    max-width: 680px;
    margin: 3rem auto 5rem;
    padding: 0 2rem;
}

/* Article Header */
.article-header {
    margin-bottom: 3rem;
    text-align: center;
}

.article-header.small {
    margin-bottom: 2.5rem;
}

.header-image {
    margin-bottom: 2.5rem;
    overflow: hidden;
    border-radius: 4px;
}

.header-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.article-header.small h1 {
    font-size: 2.3rem;
}

.subheadline {
    font-size: 1.35rem;
    color: #666;
    font-weight: 400;
    line-height: 1.5;
    font-style: italic;
}

/* Success Icon for Thanks Page */
.success-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

/* Story Sections */
.story-intro {
    margin-bottom: 3.5rem;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.65;
    color: #333;
    margin-bottom: 1.5rem;
}

.story-intro p,
.narrative-block p,
.narrative-section p,
.philosophy-section p,
.benefits-narrative p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

/* Section Spacing */
section {
    margin-bottom: 4rem;
}

section h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

section h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2a2a2a;
    font-weight: 600;
}

/* Inline Images */
.image-break {
    margin: 3rem 0;
    border-radius: 4px;
    overflow: hidden;
}

.image-break img {
    width: 100%;
    height: auto;
    display: block;
}

/* Blockquotes / Testimonials */
blockquote.testimonial-inline {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid #764ba2;
    background-color: #f9f9f9;
    font-style: italic;
    font-size: 1.15rem;
    color: #444;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-style: normal;
    color: #777;
}

/* Emphasis Text */
.emphasis {
    font-size: 1.2rem;
    color: #2a2a2a;
    font-weight: 500;
    line-height: 1.6;
}

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

.cta-link {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.5rem 0;
    border-bottom: 2px solid #667eea;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-link:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
}

/* Section CTA Button */
.section-cta {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.section-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Insight/Benefit Lists */
.insight-list,
.benefits-narrative {
    margin-top: 2rem;
}

.insight-item,
.benefit-point {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid #e0e0e0;
}

.insight-item h3,
.benefit-point h3 {
    font-size: 1.25rem;
    color: #667eea;
    margin-top: 0;
}

/* Approach Block */
.approach-block {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f7f7f7;
    border-radius: 4px;
}

.approach-principles {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.approach-principles h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.approach-principles ul {
    margin-top: 1rem;
    margin-left: 1.5rem;
}

.approach-principles li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Services Section */
.services-reveal {
    margin-top: 4rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

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

.service-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #667eea;
}

.service-card.featured {
    border: 2px solid #667eea;
    position: relative;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1rem;
    color: #555;
}

.service-detail {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin-top: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Forms */
.form-section {
    margin-top: 4rem;
    padding: 2.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

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

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

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

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

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

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

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

.submit-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

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

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

/* Footer */
.editorial-footer {
    margin-top: 5rem;
    padding: 2.5rem 2rem;
    background-color: #f7f7f7;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    max-width: 680px;
    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: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links a.active {
    color: #667eea;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    color: #fff;
    margin: 0;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-content a {
    color: #667eea;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-btn.accept {
    background-color: #667eea;
    color: white;
}

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

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

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

/* Thanks Page Specific */
.thanks-page .service-selected {
    padding: 1.5rem;
    background-color: #f0f4ff;
    border-left: 4px solid #667eea;
    margin: 2rem 0;
    border-radius: 4px;
}

.thanks-page .service-selected strong {
    color: #667eea;
}

.steps-list {
    margin-top: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.step-content h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.exercise-box {
    padding: 2rem;
    background-color: #f0f4ff;
    border-radius: 8px;
    margin: 2rem 0;
}

.exercise-box h3 {
    margin-top: 0;
    color: #667eea;
}

.exercise-box ol {
    margin: 1rem 0 1rem 1.5rem;
}

.exercise-box li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.exercise-note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

.explore-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.explore-card {
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.explore-card:hover {
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.explore-card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #667eea;
    font-size: 1.2rem;
}

.explore-card p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.closing-text {
    font-size: 1.2rem;
    color: #333;
    text-align: center;
    line-height: 1.6;
}

.signature {
    text-align: center;
    font-style: italic;
    color: #777;
    margin-top: 1rem;
}

/* Contact Page Specific */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 2rem 0;
}

.contact-item h3 {
    margin-top: 0;
    font-size: 1.3rem;
    color: #667eea;
}

.contact-item p {
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.info-note {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

.map-box {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

/* Services Page Specific */
.service-detail-block {
    margin-bottom: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-block:last-of-type {
    border-bottom: none;
}

.service-detail-block.featured-service {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
    border-radius: 8px;
    border: 2px solid #667eea;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-header h2 {
    margin: 0;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.service-body ul {
    margin: 1rem 0 1rem 1.5rem;
}

.service-body li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.faq-section {
    margin-top: 4rem;
}

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

.faq-item h3 {
    margin-top: 0;
    color: #2a2a2a;
    font-size: 1.2rem;
}

/* Legal Pages Specific */
.legal-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.legal-page .article-header {
    text-align: left;
}

.update-date {
    font-size: 0.9rem;
    color: #777;
    margin-top: 0.5rem;
}

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

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.cookie-table {
    margin: 1.5rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e0e0e0;
}

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

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

.cookie-controls {
    margin: 2rem 0;
}

.cookie-control-btn {
    padding: 0.9rem 2rem;
    background-color: #667eea;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-control-btn:hover {
    background-color: #5568d3;
}

.cookie-status {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #666;
}

.credentials-list {
    margin-top: 2rem;
}

.credential-item {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid #e0e0e0;
}

.credential-item h3 {
    margin-top: 0;
    font-size: 1.25rem;
    color: #667eea;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2.2rem;
    }

    .article-header.small h1 {
        font-size: 1.9rem;
    }

    .subheadline {
        font-size: 1.15rem;
    }

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

    .nav-links {
        gap: 1.2rem;
    }

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

    .editorial-content {
        padding: 0 1.5rem;
        margin: 2rem auto 3rem;
    }

    section h2 {
        font-size: 1.7rem;
    }

    section h3 {
        font-size: 1.25rem;
    }

    .lead-text {
        font-size: 1.15rem;
    }

    .price {
        font-size: 1.6rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

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

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

    .step-item {
        flex-direction: column;
        gap: 1rem;
    }
}

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

    .nav-links {
        gap: 0.9rem;
    }

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

    .form-section {
        padding: 1.5rem;
    }

    .explore-links {
        gap: 1rem;
    }
}

/* Show sticky CTA on scroll */
body.scrolled .sticky-cta {
    display: block;
}
