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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 1.25rem;
    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;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #10b981;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #059669;
}

.btn-reject {
    background-color: #6b7280;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #4b5563;
}

/* Navigation */
.navigation {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2563eb;
}

/* Editorial Layout */
.editorial-layout {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.hero-article {
    margin-bottom: 4rem;
}

.article-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.article-header h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.7;
}

.article-image {
    width: 100%;
    margin: 2rem 0;
    border-radius: 8px;
}

/* Story Sections */
.story-section,
.insight-block,
.approach-section,
.local-commitment,
.testimonial-flow,
.final-encouragement,
.intro-section,
.impact-section,
.team-section,
.commitment-section,
.next-steps,
.contact-info,
.location-section,
.faq-section,
.thanks-content,
.booking-reminder,
.values-section {
    margin-bottom: 4rem;
}

.narrow-content {
    max-width: 100%;
}

.narrow-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.narrow-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 2rem 0 1rem;
}

.narrow-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.5rem;
}

.inline-image {
    margin: 2.5rem 0;
    border-radius: 6px;
}

.inline-cta {
    display: inline-block;
    color: #2563eb;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid #2563eb;
    border-radius: 6px;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    background-color: #2563eb;
    color: #ffffff;
}

/* Programme Cards */
.programme-preview {
    margin: 4rem 0;
}

.programme-card {
    background-color: #f9fafb;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.programme-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.programme-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
    margin: 1.5rem 0;
}

.card-cta {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.card-cta:hover {
    background-color: #1e40af;
}

/* Testimonials */
blockquote {
    border-left: 4px solid #d1d5db;
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: #4b5563;
}

blockquote p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

cite {
    font-style: normal;
    font-weight: 600;
    color: #6b7280;
    font-size: 0.95rem;
}

/* Booking Form */
.booking-section {
    background-color: #f3f4f6;
    padding: 3rem 2rem;
    border-radius: 8px;
    margin: 4rem 0;
}

.booking-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    background-color: #059669;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Services Detail */
.services-list {
    margin: 3rem 0;
}

.service-detail {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e5e7eb;
}

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

.service-image {
    width: 100%;
    margin: 2rem 0;
    border-radius: 8px;
}

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

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

.service-detail li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.service-cta {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #1e40af;
}

/* Contact Page */
.contact-details {
    margin: 2rem 0;
}

.detail-block {
    margin-bottom: 2.5rem;
}

.detail-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.detail-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

/* FAQ */
.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

/* Thanks Page */
.selected-service {
    margin: 2.5rem 0;
}

.service-confirmation {
    background-color: #ecfdf5;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #059669;
}

.service-confirmation h3 {
    font-size: 1.125rem;
    color: #065f46;
    margin-bottom: 0.5rem;
}

.programme-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #047857;
}

.next-steps-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.next-steps-list li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

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

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

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* Stats and Lists */
.principle-list,
.stats-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.principle-list li,
.stats-list li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Footer */
.site-footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 4rem;
}

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

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

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

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

    .narrow-content h2 {
        font-size: 1.75rem;
    }

    .narrow-content h3 {
        font-size: 1.25rem;
    }

    .narrow-content p {
        font-size: 1rem;
    }

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

@media (min-width: 769px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }
}
