/* Reset and 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: #2c2c2c;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    color: #1a5f7a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #134b5f;
}

/* Container */
.container-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header-minimal {
    padding: 30px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-editorial {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.nav-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-links a {
    font-size: 0.95rem;
    color: #4a4a4a;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a5f7a;
}

/* Editorial Main Layout */
.editorial-main {
    padding: 40px 0 60px;
}

.editorial-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Hero Section */
.hero-editorial {
    padding: 60px 0 50px;
}

.headline-large {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.subhead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-image-wrapper {
    margin: 40px 0;
}

.hero-image {
    width: 100%;
    border-radius: 3px;
}

/* Content Blocks */
.content-block {
    padding: 50px 0;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 25px;
}

.content-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.content-block h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 50px 0 25px;
    line-height: 1.3;
}

.content-block h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2a2a2a;
    margin: 35px 0 15px;
}

/* Section Images */
.section-image {
    width: 100%;
    margin: 40px 0;
    border-radius: 3px;
}

/* Inline CTA Section */
.inline-cta-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.cta-inline {
    text-align: center;
    padding: 30px 20px;
}

.cta-text {
    font-size: 1.1rem;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.cta-link {
    font-size: 1rem;
    color: #1a5f7a;
    font-weight: 600;
    border-bottom: 2px solid #1a5f7a;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #134b5f;
    border-bottom-color: #134b5f;
}

/* Problem Section */
.problem-section {
    padding: 60px 0;
}

.insight-box {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.insight-image {
    width: 100%;
    border-radius: 3px;
}

.insight-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.insight-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3a3a3a;
}

/* Testimonial Inline */
.testimonial-inline {
    margin: 50px 0;
    padding: 30px 25px;
    background-color: #f5f8fa;
    border-left: 4px solid #1a5f7a;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: #2a2a2a;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-size: 0.95rem;
    color: #666666;
    font-weight: 600;
}

/* Story Section */
.story-section {
    padding: 60px 0;
}

/* CTA Mid-Page */
.cta-mid-page {
    padding: 60px 0;
    background-color: #1a5f7a;
}

.cta-box-editorial {
    text-align: center;
    padding: 40px 20px;
}

.cta-box-editorial h3 {
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 600;
}

.btn-primary-editorial {
    display: inline-block;
    padding: 14px 35px;
    background-color: #ffffff;
    color: #1a5f7a;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.btn-primary-editorial:hover {
    background-color: transparent;
    color: #ffffff;
}

.btn-secondary-editorial {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: #1a5f7a;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #1a5f7a;
    transition: all 0.3s ease;
}

.btn-secondary-editorial:hover {
    background-color: #1a5f7a;
    color: #ffffff;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0;
}

.benefit-list {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background-color: #fafafa;
}

/* Approach Section */
.approach-section {
    padding: 60px 0;
}

/* Services Reveal */
.services-reveal {
    padding: 70px 0;
    background-color: #f5f5f5;
}

.services-intro {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 50px;
    text-align: center;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.featured-card {
    border: 2px solid #1a5f7a;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #1a5f7a;
    color: #ffffff;
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.service-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a5f7a;
    margin: 10px 0;
}

.btn-select-service {
    padding: 12px 25px;
    background-color: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #134b5f;
}

/* Form Section */
.form-section {
    padding: 60px 0;
    background-color: #fafafa;
}

.editorial-form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2a2a2a;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5f7a;
}

.form-group input[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.btn-submit {
    padding: 14px 40px;
    background-color: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #134b5f;
}

/* Urgency Section */
.urgency-section {
    padding: 40px 0;
}

.urgency-box {
    background-color: #fff8e6;
    border-left: 4px solid #f39c12;
    padding: 25px 30px;
}

.urgency-text {
    font-size: 1.05rem;
    color: #2a2a2a;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta-section {
    padding: 60px 0;
}

.btn-final-cta {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a5f7a;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin-top: 25px;
}

.btn-final-cta:hover {
    background-color: #134b5f;
}

/* Closing Section */
.closing-section {
    padding: 50px 0 70px;
    background-color: #f9f9f9;
}

.closing-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3a3a3a;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a5f7a;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    z-index: 90;
    padding: 15px 0;
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.sticky-cta-text {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
}

.btn-sticky {
    padding: 10px 25px;
    background-color: #ffffff;
    color: #1a5f7a;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #f0f0f0;
}

/* Footer */
.footer-editorial {
    background-color: #2a2a2a;
    color: #cccccc;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section a {
    display: block;
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444444;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px 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;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie {
    padding: 10px 25px;
    background-color: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie:hover {
    background-color: #134b5f;
}

.btn-cookie-reject {
    background-color: #555555;
}

.btn-cookie-reject:hover {
    background-color: #444444;
}

/* Page Hero */
.page-hero {
    padding: 50px 0 30px;
}

/* Services Detailed */
.services-detailed {
    padding: 40px 0;
}

.service-detail-card {
    margin-bottom: 60px;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.featured-service {
    border: 2px solid #1a5f7a;
}

.service-detail-header {
    padding: 30px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
}

.service-detail-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.service-age-range {
    font-size: 0.9rem;
    color: #666666;
    background-color: #e8e8e8;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
}

.service-detail-image {
    width: 100%;
}

.service-detail-content {
    padding: 35px 30px;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 30px 0 15px;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.service-features li {
    font-size: 1rem;
    line-height: 1.7;
    color: #3a3a3a;
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

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

.service-format {
    font-size: 0.95rem;
    color: #666666;
    font-style: italic;
    margin: 25px 0;
}

.service-price-large {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a5f7a;
    margin: 25px 0;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: #fafafa;
}

.faq-item {
    margin-bottom: 35px;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
}

/* Contact Layout */
.contact-section {
    padding: 40px 0;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-method {
    margin-bottom: 35px;
}

.contact-method h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.contact-method p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.contact-method a {
    color: #1a5f7a;
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    color: #666666;
    margin-top: 8px;
}

.contact-image-side {
    flex: 1;
}

.contact-side-image {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 30px;
}

.contact-cta-box {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 4px;
}

.contact-cta-box h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-cta-box p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 20px;
}

/* Contact Reasons */
.contact-reasons {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.reason-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.reason-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.reason-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #3a3a3a;
}

/* Map Section */
.map-section {
    padding: 60px 0;
}

.map-placeholder {
    position: relative;
    margin-top: 30px;
}

.map-image {
    width: 100%;
    border-radius: 4px;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 4px;
}

.map-overlay p {
    font-size: 1rem;
    color: #2a2a2a;
    margin-bottom: 5px;
}

/* FAQ Contact */
.faq-contact {
    padding: 60px 0;
}

/* Legal Pages */
.legal-page h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 50px 0 20px;
}

.legal-page h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2a2a2a;
    margin: 30px 0 15px;
}

.legal-content {
    padding: 40px 0 60px;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #3a3a3a;
}

.legal-update {
    font-size: 0.9rem;
    color: #666666;
    font-style: italic;
}

/* Cookies Table */
.cookies-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookies-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #1a1a1a;
}

.cookies-table td {
    font-size: 0.95rem;
    color: #3a3a3a;
}

/* Thanks Page */
.thanks-page {
    padding: 60px 0;
}

.thanks-hero {
    padding: 40px 0;
}

.thanks-content {
    margin-top: 40px;
}

.thanks-image {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 40px;
}

.thanks-info h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.step-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a5f7a;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.selected-programme-box {
    background-color: #f5f8fa;
    padding: 25px;
    border-radius: 4px;
    border-left: 4px solid #1a5f7a;
    margin: 30px 0;
}

.selected-programme-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.thanks-note {
    font-size: 1rem;
    color: #4a4a4a;
    margin: 30px 0;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

/* Additional Resources */
.additional-resources {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.resource-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.resource-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a5f7a;
    margin-bottom: 8px;
}

.resource-card p {
    font-size: 1rem;
    color: #4a4a4a;
    margin: 0;
}

/* Philosophy Section */
.philosophy-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.point-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.point-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
}

/* Team Section */
.team-section {
    padding: 60px 0;
}

/* Impact Section */
.impact-section {
    padding: 60px 0;
    background-color: #fafafa;
}

.stats-editorial {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

.stat-box {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a5f7a;
    line-height: 1;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 1rem;
    color: #3a3a3a;
    line-height: 1.5;
}

/* Mission Section */
.mission-section {
    padding: 60px 0;
}

/* Responsive Design */
@media (min-width: 768px) {
    .headline-large {
        font-size: 3rem;
    }

    .subhead {
        font-size: 1.35rem;
    }

    .nav-editorial {
        flex-wrap: nowrap;
    }

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

    .footer-section {
        flex: 1;
        max-width: 250px;
    }

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

    .stats-editorial {
        flex-direction: row;
    }

    .stat-box {
        flex: 1;
    }

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

    .reason-item {
        flex: 1 1 calc(50% - 15px);
    }

    .insight-box {
        flex-direction: row;
        align-items: center;
    }

    .insight-image {
        flex: 0 0 50%;
    }

    .cookies-table {
        display: table;
    }
}

@media (min-width: 1024px) {
    .headline-large {
        font-size: 3.25rem;
    }

    .sticky-cta-content {
        justify-content: center;
        gap: 30px;
    }

    .service-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

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