/* 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: #2a2a2a;
    background-color: #fafafa;
}

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

a {
    color: #1a5490;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #0d3a6b;
}

ul, ol {
    margin-left: 1.5rem;
}

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

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

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

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

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-cookie {
    background-color: #1a5490;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #0d3a6b;
}

.btn-cookie.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

/* Navigation - Editorial Style */
.nav-editorial {
    background-color: #ffffff;
    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;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a2a2a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.nav-links a {
    color: #2a2a2a;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.2s ease;
}

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

/* Editorial Content Layout */
.editorial-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

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

/* Hero Editorial */
.hero-editorial {
    padding: 4rem 0 3rem;
    background-color: #ffffff;
}

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

.hero-text-center h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.hero-image {
    max-width: 100%;
    margin: 0;
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* Page Header */
.page-header {
    padding: 3rem 0 2rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.page-header h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

/* Story Sections */
.story-intro,
.story-section,
.mission-section,
.approach-section,
.values-section,
.community-section,
.impact-section,
.philosophy-section,
.why-manchester,
.problem-amplify,
.insight-reveal,
.trust-building,
.final-message,
.services-intro,
.contact-info-section,
.faq-section,
.service-details-section {
    padding: 3rem 0;
}

.story-intro p,
.story-section p,
.narrow-column p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.narrow-column h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.narrow-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2a2a2a;
}

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

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

.inline-image figcaption {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: italic;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Testimonials */
.testimonial {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f5f5f5;
    border-left: 4px solid #1a5490;
    font-style: italic;
}

.testimonial p {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #2a2a2a;
}

.testimonial cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #6a6a6a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.cta-inline,
.cta-box {
    padding: 2.5rem;
    background-color: #1a5490;
    color: #ffffff;
    border-radius: 6px;
    text-align: center;
}

.cta-inline h3,
.cta-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-inline p,
.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #e8f0f8;
}

/* Buttons */
.btn-primary,
.btn-primary-large,
.btn-service,
.btn-submit,
.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #ffffff;
    color: #1a5490;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-primary:hover,
.btn-primary-large:hover,
.btn-service:hover {
    background-color: #e8f0f8;
    transform: translateY(-1px);
}

.btn-primary-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-submit {
    background-color: #1a5490;
    color: #ffffff;
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
}

.btn-submit:hover {
    background-color: #0d3a6b;
}

.btn-secondary {
    background-color: transparent;
    color: #1a5490;
    border: 2px solid #1a5490;
}

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

/* Services Section */
.services-editorial {
    padding: 3rem 0;
}

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

.service-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #1a5490;
}

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

.service-card p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a5490;
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5490;
    margin: 2rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.service-detail {
    padding: 3rem 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-age {
    font-size: 0.95rem;
    color: #6a6a6a;
    font-style: italic;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-detail ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.service-detail li {
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
}

.benefits-list {
    margin: 1.5rem 0 1.5rem 2rem;
    list-style-type: disc;
}

.benefits-list li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

/* Contact Page */
.contact-details {
    margin-top: 2.5rem;
}

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

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

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

.contact-note {
    font-size: 0.95rem;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 0.8rem;
}

.contact-cta {
    padding: 3rem 0;
    background-color: #f5f5f5;
    margin: 2rem 0;
}

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

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1.05rem;
}

/* Form Styling */
.booking-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.editorial-form {
    margin-top: 2rem;
    max-width: 600px;
}

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

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

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

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Thanks Page */
.thanks-section {
    padding: 4rem 0;
    min-height: 60vh;
}

.thanks-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-details {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f5f5f5;
    border-radius: 6px;
}

.next-steps {
    margin: 1.5rem 0 1.5rem 2rem;
}

.next-steps li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.thanks-cta {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.thanks-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.thanks-contact {
    margin-top: 3rem;
    text-align: center;
    font-size: 1.05rem;
}

/* Legal Pages */
.legal-content {
    padding: 2rem 0 4rem;
}

.legal-updated {
    font-size: 0.95rem;
    color: #6a6a6a;
    font-style: italic;
    margin-bottom: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.legal-section h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: #2a2a2a;
}

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

.legal-section li {
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
}

.legal-section p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.cookie-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-table thead {
    background-color: #f5f5f5;
}

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

.cookie-table th {
    font-weight: 600;
}

/* Footer */
.footer-editorial {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d0d0d0;
}

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

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

.footer-column a {
    color: #d0d0d0;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #a0a0a0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Responsive Design */
@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
    }

    .hero-text-center h1 {
        font-size: 3rem;
    }

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

    .service-card {
        flex: 1;
        min-width: 300px;
    }
}

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

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

    .hero-text-center {
        padding: 0 1.5rem;
    }

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

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

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

    .narrow-column h2 {
        font-size: 1.5rem;
    }

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

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