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

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

a {
    color: #3d5a80;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a2f4a;
}

ul {
    list-style-position: inside;
}

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

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    margin: 0;
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

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

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

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

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

.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: #3d5a80;
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c2c2c;
    transition: all 0.3s ease;
}

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

.nav-menu a {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

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

/* Hero Section */
.article-hero {
    padding: 4rem 0 3rem;
    text-align: center;
}

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

.article-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a2f4a;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #5a5a5a;
    font-style: italic;
    margin-top: 1rem;
}

.hero-image {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    border-radius: 8px;
}

/* Page Header */
.page-header {
    padding: 3rem 0 2rem;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a2f4a;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #6a6a6a;
    font-style: italic;
}

/* Sections */
.story-intro,
.insight-block,
.services-reveal,
.testimonial-flow,
.reality-check,
.process-section,
.form-section,
.final-thought,
.mission-block,
.values-section,
.team-section,
.approach-section,
.impact-section,
.cta-final,
.services-intro,
.service-detail,
.contact-intro,
.contact-details,
.visit-section,
.faq-section,
.legal-content {
    padding: 3rem 0;
}

.opening-paragraph {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #1a2f4a;
}

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

.narrow-text h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: #1a2f4a;
    font-weight: 700;
}

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

/* Inline Images */
.inline-image {
    margin: 2.5rem 0;
    border-radius: 6px;
    width: 100%;
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-select-service,
.btn-submit {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 5px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.btn-primary {
    background-color: #ee6c4d;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #d95d3f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(238, 108, 77, 0.3);
}

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

.btn-secondary:hover {
    background-color: #3d5a80;
    color: #ffffff;
}

.btn-select-service {
    background-color: #3d5a80;
    color: #ffffff;
    width: 100%;
    margin-top: 1rem;
}

.btn-select-service:hover {
    background-color: #2c4460;
}

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

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

.btn-link {
    background: none;
    border: none;
    color: #3d5a80;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

.btn-link:hover {
    color: #1a2f4a;
}

/* Service Cards */
.service-cards {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

.service-card p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.service-duration {
    font-size: 0.95rem;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 1rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ee6c4d;
    margin: 1rem 0;
    font-family: 'Arial', sans-serif;
}

/* Service Detail Pages */
.service-detail {
    padding: 3rem 0;
}

.service-detail.alt-bg {
    background-color: #f9f9f9;
}

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

.service-meta {
    font-size: 1.1rem;
    color: #6a6a6a;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.service-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonial {
    background-color: #f4f4f4;
    border-left: 4px solid #ee6c4d;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #2c2c2c;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    display: block;
    text-align: right;
    font-style: normal;
    color: #5a5a5a;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

/* Process Steps */
.process-steps {
    margin: 2.5rem 0;
}

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

.step-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background-color: #3d5a80;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
}

.step-content h3 {
    font-size: 1.3rem;
    margin: 0 0 0.5rem 0;
    color: #1a2f4a;
}

.step-content p {
    margin: 0;
    color: #5a5a5a;
}

/* Forms */
.registration-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
    font-family: 'Arial', 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: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

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

.selected-service-display {
    background-color: #f0f7ff;
    border: 2px solid #3d5a80;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.selected-service-display p {
    margin: 0 0 0.5rem 0;
    font-family: 'Arial', sans-serif;
}

.selected-service-display strong {
    color: #1a2f4a;
}

#selected-service-name {
    color: #ee6c4d;
}

/* Closing Paragraph */
.closing-paragraph {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Values Section */
.value-item {
    margin: 2rem 0;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a2f4a;
}

.value-item p {
    margin: 0;
}

/* Contact Page */
.contact-block {
    margin: 2.5rem 0;
}

.contact-block h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a2f4a;
}

.contact-info {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-info a {
    color: #ee6c4d;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

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

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

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

.faq-item p {
    margin: 0;
}

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

.thanks-message {
    margin: 2rem 0;
}

.thanks-message .lead {
    font-size: 1.3rem;
    color: #3d5a80;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-confirmation {
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.service-selected {
    margin: 0;
    font-family: 'Arial', sans-serif;
}

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

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

.step-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #ee6c4d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
}

.step-text h3 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
}

.step-text p {
    margin: 0;
    color: #5a5a5a;
}

.additional-info {
    margin: 3rem 0;
}

.thanks-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.contact-reminder {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 3rem;
}

.contact-reminder p {
    margin: 0;
}

/* Legal Pages */
.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.2rem;
    color: #1a2f4a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 1.8rem 0 0.8rem;
    color: #2c2c2c;
}

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

.legal-list li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-family: 'Arial', sans-serif;
}

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

.cookie-table th {
    background-color: #3d5a80;
    color: #ffffff;
    font-weight: 600;
}

.cookie-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Footer */
.main-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-family: 'Arial', sans-serif;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

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

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

.footer-section ul li a {
    color: #d0d0d0;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ee6c4d;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #4a4a4a;
    text-align: center;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-top: 1px solid #e0e0e0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.8rem 2rem;
        border-bottom: 1px solid #f0f0f0;
    }

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

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

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

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

    .opening-paragraph {
        font-size: 1.15rem;
    }

    .cookie-content {
        flex-direction: column;
    }

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

    .btn-cookie {
        width: 100%;
    }

    .thanks-links {
        flex-direction: column;
    }

    .thanks-links .btn-secondary {
        width: 100%;
        text-align: center;
    }

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

    .step,
    .step-item {
        flex-direction: row;
    }
}

@media (max-width: 480px) {
    .article-hero h1 {
        font-size: 1.7rem;
    }

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

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

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