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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fafafa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-top: 3rem;
}

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

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

p {
    margin-bottom: 1.2rem;
}

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

a:hover {
    color: #004499;
}

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

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

li {
    margin-bottom: 0.5rem;
}

/* Navigation */
.nav-main {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #0066cc;
}

/* Editorial Flow Layout (Main Archetype) */
.editorial-flow {
    background: #fff;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Editorial */
.hero-editorial {
    position: relative;
    margin-bottom: 4rem;
}

.hero-visual {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.hero-text-overlay h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-style: italic;
    color: #e0e0e0;
}

/* Story Sections */
.story-intro {
    padding: 3rem 0;
}

.opening-line {
    font-size: 1.4rem;
    font-style: italic;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.closing-line {
    font-size: 1.3rem;
    font-style: italic;
    color: #4a4a4a;
    margin-top: 2rem;
}

.content-block {
    padding: 3rem 0;
}

/* Visual Breaks */
.visual-break {
    margin: 4rem 0;
}

.visual-break img {
    width: 100%;
    height: auto;
}

.visual-caption {
    text-align: center;
    padding: 1.5rem 2rem;
    font-style: italic;
    color: #666;
    background: #f5f5f5;
}

/* Inline CTA */
.inline-cta {
    margin: 2.5rem 0;
    padding: 1.5rem 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.cta-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0066cc;
    text-decoration: none;
}

.cta-link:hover {
    color: #004499;
}

/* Case Study Section */
.case-study-section {
    padding: 4rem 0;
    background: #f9f9f9;
}

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

.technique-item {
    padding: 1.5rem;
    background: #fff;
    border-left: 4px solid #0066cc;
}

.technique-item h4 {
    margin-top: 0;
    color: #0066cc;
}

/* Quotes */
.full-width-quote {
    background: #1a1a1a;
    color: #fff;
    padding: 5rem 2rem;
    margin: 4rem 0;
}

.full-width-quote blockquote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.full-width-quote p {
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.6;
    color: #fff;
}

.full-width-quote cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    color: #aaa;
}

.inline-quote {
    margin: 2.5rem 0;
    padding-left: 2rem;
    border-left: 4px solid #0066cc;
    font-size: 1.3rem;
    font-style: italic;
    color: #4a4a4a;
}

/* Services Section */
.services-preview {
    padding: 4rem 0;
}

.service-cards {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.price-tag {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0066cc;
    margin: 1.5rem 0;
}

.btn-select {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0066cc;
    color: #fff;
    border: none;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-select:hover {
    background: #004499;
}

/* Detailed Services Page */
.services-detailed {
    padding: 3rem 0;
}

.service-detail {
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #e0e0e0;
}

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

.service-detail.featured {
    background: #f9f9f9;
    padding: 2rem;
    border: 2px solid #0066cc;
    border-radius: 4px;
}

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

.service-header h2 {
    margin: 0;
}

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

.service-image {
    margin: 2rem 0;
    border-radius: 4px;
    overflow: hidden;
}

.service-content h3 {
    margin-top: 2.5rem;
    font-size: 1.4rem;
}

.feature-list {
    background: #f5f5f5;
    padding: 1.5rem 1.5rem 1.5rem 3rem;
    border-left: 4px solid #0066cc;
}

.program-meta {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 4px;
    flex-wrap: wrap;
}

.meta-item {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
}

.meta-item strong {
    color: #1a1a1a;
}

/* Testimonials */
.testimonial-inline {
    padding: 3rem 0;
}

.testimonial-box {
    background: #f9f9f9;
    padding: 2.5rem;
    border-left: 4px solid #0066cc;
    font-style: italic;
}

.testimonial-box p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.testimonial-box cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
}

/* Forms */
.form-section {
    padding: 4rem 0;
    background: #f9f9f9;
}

.inquiry-section {
    padding: 4rem 0;
}

.inquiry-form {
    margin-top: 2.5rem;
    background: #fff;
    padding: 2.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.btn-submit {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0066cc;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-submit:hover {
    background: #004499;
}

.btn-primary {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0066cc;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn-primary:hover {
    background: #004499;
}

.btn-secondary {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fff;
    color: #0066cc;
    border: 2px solid #0066cc;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #0066cc;
    color: #fff;
}

/* Page Header */
.page-header {
    padding: 4rem 0 2rem;
    text-align: center;
    background: #f5f5f5;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: normal;
}

/* About Page Specifics */
.stat-block {
    display: flex;
    justify-content: space-around;
    margin: 3rem 0;
    padding: 2.5rem;
    background: #f9f9f9;
    border-radius: 4px;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #0066cc;
}

.stat-label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

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

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

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

.cta-section {
    padding: 4rem 0;
    text-align: center;
    background: #f9f9f9;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

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

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

.contact-block h2 {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.contact-block a {
    font-size: 1.1rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.map-section {
    padding: 3rem 0;
    background: #f9f9f9;
}

.faq-section {
    padding: 3rem 0;
}

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

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

.faq-item h3 {
    margin-top: 0;
    color: #0066cc;
}

/* Thanks Page */
.thanks-content {
    padding: 4rem 0;
}

.thanks-box {
    text-align: center;
    padding: 3rem;
    background: #f9f9f9;
    border: 2px solid #0066cc;
    border-radius: 4px;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.service-selected {
    font-size: 1.1rem;
    color: #0066cc;
    background: #fff;
    padding: 1rem;
    border-radius: 4px;
}

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

.next-steps {
    padding: 3rem 0;
}

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

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

.step-number {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0066cc;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

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

/* Legal Pages */
.legal-page {
    background: #fff;
}

.legal-content {
    padding: 3rem 0 5rem;
}

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

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

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

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

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

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
}

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

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

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

.sticky-cta-btn {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0066cc;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}

.sticky-cta-btn:hover {
    background: #004499;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 200;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #66b3ff;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #0066cc;
    color: #fff;
}

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

.btn-reject {
    background: #fff;
    color: #1a1a1a;
}

.btn-reject:hover {
    background: #e0e0e0;
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

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

    .nav-links {
        gap: 1rem;
    }

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

    .content-narrow {
        padding: 0 1.5rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-visual {
        height: 350px;
    }

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

    .stat-block {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

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

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

    .program-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .step-item {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
        gap: 1rem;
    }
}

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

    .hero-text-overlay h1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .brand {
        font-size: 1.2rem;
    }

    .full-width-quote p {
        font-size: 1.4rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .inquiry-form {
        padding: 1.5rem;
    }
}
