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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
    font-size: 16px;
}

a {
    color: #2c5f7a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3a4a;
}

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

/* Navigation */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.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.4rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: #4a4a4a;
    font-size: 0.95rem;
    font-weight: 500;
}

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

/* Editorial Layout - Article-like Structure */
.editorial-layout {
    max-width: 680px;
    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.8rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: -0.03em;
}

.subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #5a5a5a;
    font-weight: 400;
}

.hero-image {
    margin: 2rem 0;
    border-radius: 4px;
    overflow: hidden;
}

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

/* Content Flow - Story-driven */
.content-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.narrative-block {
    line-height: 1.8;
}

.narrative-block h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.narrative-block h3 {
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: #2a2a2a;
}

.narrative-block h4 {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 0.6rem;
    margin-top: 1.2rem;
    color: #3a3a3a;
}

.narrative-block p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #2a2a2a;
}

.narrative-block ul {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style: disc;
}

.narrative-block li {
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
    color: #2a2a2a;
}

/* Inline Images */
.inline-image {
    margin: 2.5rem 0;
    border-radius: 3px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
}

figcaption {
    margin-top: 0.6rem;
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: italic;
    text-align: center;
}

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

.cta-link {
    font-size: 1.1rem;
    color: #2c5f7a;
    font-weight: 500;
    border-bottom: 2px solid #2c5f7a;
    padding-bottom: 2px;
    display: inline-block;
}

.cta-link:hover {
    color: #1a3a4a;
    border-bottom-color: #1a3a4a;
}

/* Trust Signals - Testimonials */
.trust-signal {
    background-color: #f8f9fa;
    padding: 2rem 2rem;
    border-left: 4px solid #2c5f7a;
    margin: 2.5rem 0;
}

.trust-signal blockquote {
    font-style: italic;
}

.trust-signal p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 0.8rem;
}

.trust-signal cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #6a6a6a;
    font-weight: 500;
}

/* Services Grid - Card-based within Editorial */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0 3rem 0;
}

.service-card {
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
    position: relative;
}

.service-card.featured {
    background-color: #f0f7fa;
    border-color: #2c5f7a;
    border-width: 2px;
}

.service-card.premium {
    background-color: #faf8f5;
    border-color: #8a7355;
    border-width: 2px;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #2c5f7a;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.service-card > p {
    font-size: 1rem;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 1.2rem;
}

.service-features {
    margin: 1.2rem 0;
    list-style: none;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: #4a4a4a;
}

.service-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5f7a;
    font-weight: bold;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0 1rem 0;
    padding-top: 1.2rem;
    border-top: 1px solid #d8d8d8;
}

.duration {
    font-size: 0.9rem;
    color: #6a6a6a;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.btn-select {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background-color: #2c5f7a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #1a3a4a;
}

/* CTA Sections */
.cta-section {
    text-align: center;
    padding: 3rem 0;
    margin: 2rem 0;
}

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

.cta-section p {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c5f7a;
    color: #ffffff;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1a3a4a;
    color: #ffffff;
}

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

.booking-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
}

.booking-section > p {
    text-align: center;
    color: #5a5a5a;
    margin-bottom: 2rem;
}

.booking-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2a2a2a;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
}

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

.form-group input[readonly] {
    background-color: #f0f0f0;
    color: #5a5a5a;
}

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta-button {
    display: block;
    padding: 0.9rem 1.8rem;
    background-color: #2c5f7a;
    color: #ffffff;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(44, 95, 122, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background-color: #1a3a4a;
    box-shadow: 0 6px 16px rgba(44, 95, 122, 0.5);
    transform: translateY(-2px);
}

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

.page-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-header .subtitle {
    font-size: 1.2rem;
    color: #5a5a5a;
}

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

.contact-method {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e8e8e8;
}

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

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

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

.contact-method a {
    color: #2c5f7a;
    font-weight: 500;
}

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

/* Thanks Page */
.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 600px;
    text-align: center;
    padding: 3rem 1.5rem;
}

.thanks-icon {
    font-size: 4rem;
    color: #2c5f7a;
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    border: 4px solid #2c5f7a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

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

.thanks-message {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-confirmation {
    background-color: #f0f7fa;
    padding: 1.2rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.selected-service {
    font-size: 1rem;
    color: #2a2a2a;
}

.next-steps {
    text-align: left;
    margin: 2.5rem 0;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 4px;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    text-align: center;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-color: #2c5f7a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.steps-list strong {
    display: block;
    margin-bottom: 0.3rem;
    color: #1a1a1a;
}

.steps-list p {
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.5;
}

.thanks-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary {
    padding: 0.9rem 1.8rem;
    background-color: #2c5f7a;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a3a4a;
}

.btn-secondary {
    padding: 0.9rem 1.8rem;
    background-color: #ffffff;
    color: #2c5f7a;
    border: 2px solid #2c5f7a;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c5f7a;
    color: #ffffff;
}

/* Legal Pages */
.legal-page {
    background-color: #fafafa;
    min-height: 60vh;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    background-color: #ffffff;
}

.legal-container h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.legal-date {
    font-size: 0.9rem;
    color: #6a6a6a;
    margin-bottom: 2rem;
}

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

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    border-bottom: 2px solid #e8e8e8;
    padding-bottom: 0.5rem;
}

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

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #3a3a3a;
}

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

.legal-section li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
    color: #3a3a3a;
}

.legal-section a {
    color: #2c5f7a;
    text-decoration: underline;
}

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

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

.cookies-table th {
    background-color: #f0f0f0;
    font-weight: 600;
    color: #2a2a2a;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.2rem 1.5rem;
    z-index: 10000;
    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;
    gap: 2rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #2c5f7a;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #d8d8d8;
    padding: 3rem 1.5rem 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 h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #a8a8a8;
}

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

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

.footer-section a {
    color: #d8d8d8;
    font-size: 0.9rem;
    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 #3a3a3a;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #8a8a8a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .narrative-block h2 {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 1.2rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .editorial-layout {
        padding: 2rem 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .price {
        font-size: 1.5rem;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

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

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta-button {
        padding: 0.8rem 1.4rem;
        font-size: 0.85rem;
    }
}

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

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

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 0.8rem;
    }

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