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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a8fb0;
    --accent-color: #d4843e;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #5fa463;
    --error-color: #c94545;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.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;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.btn-cookie-accept {
    background: var(--success-color);
    color: var(--bg-white);
}

.btn-cookie-accept:hover {
    background: #4d8952;
}

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

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

/* Navigation */
.nav-minimal {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 2rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
}

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

.nav-links li a {
    font-size: 1rem;
    color: var(--text-medium);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

/* Editorial Container - Main Layout */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

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

/* Editorial Header */
.editorial-header {
    text-align: center;
    padding: 2rem 0;
}

.editorial-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.editorial-subhead {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.5;
    font-style: italic;
}

/* Editorial Text Sections */
.editorial-text {
    font-size: 1.125rem;
    line-height: 1.8;
}

.editorial-text h2 {
    font-size: 1.9rem;
    margin: 2.5rem 0 1.2rem 0;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.editorial-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    color: var(--primary-color);
    font-weight: 600;
}

.editorial-text h4 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.8rem 0;
    color: var(--text-dark);
    font-weight: 600;
}

.editorial-text p {
    margin-bottom: 1.5rem;
}

.editorial-text ul,
.editorial-text ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.editorial-text li {
    margin-bottom: 0.8rem;
}

/* Editorial Images */
.editorial-image {
    margin: 2rem 0;
}

.editorial-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Editorial Highlight/Blockquote */
.editorial-highlight {
    background: var(--bg-light);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    margin: 2.5rem 0;
}

.editorial-highlight blockquote {
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-dark);
}

.editorial-highlight cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--text-medium);
    font-weight: 600;
}

/* Inline CTA Links */
.editorial-cta-inline {
    text-align: center;
    margin: 2rem 0;
}

.cta-link {
    display: inline-block;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.2rem;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Services Cards */
.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-duration {
    font-size: 0.9rem;
    color: var(--text-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-select-service {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-select-service:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
}

/* CTA Boxes */
.editorial-cta-box {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 6px;
    margin: 3rem 0;
}

.editorial-cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.editorial-cta-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-cta-primary {
    background: var(--accent-color);
    color: var(--bg-white);
}

.btn-cta-primary:hover {
    background: #c17634;
    transform: translateY(-2px);
}

.btn-cta-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
}

.btn-cta-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.editorial-final-cta {
    text-align: center;
    padding: 2rem 0;
}

.editorial-final-cta p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

/* FAQ Items */
.faq-item {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--bg-white);
    margin: 2rem auto;
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

/* Booking Form */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.selected-service-display {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.selected-service-display strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.selected-service-display p {
    margin: 0.3rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    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 textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
}

/* Services Detail Cards */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 2rem 0;
}

.service-detail-card {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.service-header {
    background: var(--bg-light);
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.service-header h2 {
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
    color: var(--primary-color);
}

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

.meta-duration {
    font-size: 0.95rem;
    color: var(--text-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.meta-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-body {
    padding: 2rem;
}

.service-intro {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem 0;
}

.service-list li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-highlights {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--accent-color);
}

.service-highlights strong {
    color: var(--accent-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.featured-service {
    border: 2px solid var(--accent-color);
}

.featured-service .service-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
}

.featured-service .service-header h2 {
    color: var(--bg-white);
}

.featured-service .meta-price {
    color: var(--bg-white);
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-card address {
    font-style: normal;
    line-height: 1.7;
    color: var(--text-medium);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

.contact-topics {
    list-style: none;
    padding: 0;
}

.contact-topics li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.contact-topics li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.directions-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.directions-list li {
    padding: 0.7rem 0;
    color: var(--text-medium);
}

.directions-list strong {
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.location-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 4px;
}

.location-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.location-item p {
    color: var(--text-medium);
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Thanks Page */
.thanks-header {
    background: linear-gradient(135deg, var(--success-color), var(--primary-color));
    color: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 8px;
}

.thanks-header h1 {
    color: var(--bg-white);
}

.thanks-header .editorial-subhead {
    color: rgba(255, 255, 255, 0.95);
}

.thanks-confirmation {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 6px;
    margin: 2rem 0;
}

.confirmation-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.confirmation-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

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

.step-number {
    min-width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.info-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--secondary-color);
}

.info-box h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.info-box p {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.related-courses {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.related-course-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 4px;
}

.related-course-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.related-course-item p {
    color: var(--text-medium);
    margin: 0.5rem 0;
}

.related-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.8rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Testimonials */
.testimonial-editorial {
    background: var(--bg-light);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-editorial p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-editorial cite {
    display: block;
    font-style: normal;
    color: var(--text-medium);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
}

.legal-content address {
    font-style: normal;
    line-height: 1.7;
    margin: 1rem 0;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--text-medium);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 2rem 1.5rem 2rem;
    margin-top: 4rem;
}

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

.footer-section h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

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

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

    .footer-section {
        flex: 1;
    }

    .contact-info-section {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-card {
        flex: 1;
        min-width: 280px;
    }

    .locations-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .location-item {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 767px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li a {
        display: block;
        padding: 1rem 2rem;
    }

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

    .editorial-subhead {
        font-size: 1.1rem;
    }

    .editorial-text {
        font-size: 1.05rem;
    }

    .editorial-text h2 {
        font-size: 1.6rem;
    }

    .service-header h2 {
        font-size: 1.5rem;
    }

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

    .meta-price {
        font-size: 1.6rem;
    }

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

    .modal-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .editorial-container {
        padding: 2rem 1rem;
    }

    .editorial-header h1 {
        font-size: 1.7rem;
    }

    .service-price {
        font-size: 1.5rem;
    }
}