* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: #444;
    text-decoration: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: color 0.2s;
}

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

.editorial-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 48px 24px;
}

.hero-editorial {
    margin-bottom: 48px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    background-color: #1a1a1a;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    padding: 48px 32px 32px;
}

.hero-overlay h1 {
    color: #fff;
    font-size: 38px;
    line-height: 1.3;
    font-weight: 400;
    margin: 0;
}

.article-body {
    font-size: 18px;
}

.intro-section,
.story-section,
.insight-section,
.services-reveal,
.testimonials-section,
.booking-section,
.disclaimer-section,
.contact-section,
.legal-section,
.values-section,
.booking-info,
.services-detailed,
.thanks-section {
    margin-bottom: 48px;
}

.lead-text {
    font-size: 21px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 24px;
}

h2 {
    font-size: 28px;
    font-weight: 400;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

h3 {
    font-size: 22px;
    font-weight: 500;
    margin: 32px 0 16px;
    color: #1a1a1a;
}

h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

p {
    margin-bottom: 20px;
}

.inline-image-block {
    margin: 48px 0;
    background-color: #f5f5f5;
}

.content-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-caption {
    padding: 16px;
    font-size: 15px;
    font-style: italic;
    color: #666;
    text-align: center;
}

.cta-inline {
    margin: 32px 0;
    text-align: center;
}

.btn-text-link {
    color: #2563eb;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.btn-text-link:hover {
    border-bottom-color: #2563eb;
}

.service-cards-editorial {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 28px;
    transition: box-shadow 0.3s;
}

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

.service-content h3 {
    margin-top: 0;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

.duration {
    font-size: 14px;
    color: #666;
}

.price {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.testimonial {
    border-left: 4px solid #2563eb;
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
}

.testimonial p {
    margin-bottom: 12px;
    font-size: 17px;
}

cite {
    font-style: normal;
    font-size: 15px;
    color: #666;
}

.booking-form {
    margin-top: 32px;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: border-color 0.2s;
}

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

.btn-submit {
    background-color: #2563eb;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
}

.page-header {
    margin-bottom: 48px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 16px;
}

.header-intro {
    font-size: 18px;
    color: #666;
}

.service-detail-card {
    margin-bottom: 56px;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 32px;
}

.service-image-wrapper {
    margin-bottom: 24px;
    background-color: #f5f5f5;
}

.service-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-detail-content h2 {
    margin-top: 0;
}

.service-duration {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

.service-includes {
    font-size: 15px;
    color: #666;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

.service-price {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.link-text {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.link-text:hover {
    border-bottom-color: #2563eb;
}

.contact-info-block {
    margin-bottom: 40px;
}

.contact-info-block h2 {
    margin-top: 0;
}

.note {
    font-size: 15px;
    color: #666;
    margin-top: 8px;
}

.legal-page .article-body {
    font-size: 16px;
}

.last-updated {
    font-size: 14px;
    color: #666;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    margin-bottom: 8px;
}

.principle-block {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 24px;
    margin-bottom: 20px;
}

.principle-block h3 {
    margin-top: 0;
}

.thanks-page {
    text-align: center;
}

.thanks-section h1 {
    font-size: 38px;
    margin-bottom: 24px;
}

.thanks-info {
    text-align: left;
    margin: 40px 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 32px;
}

.thanks-list,
.action-list {
    margin-left: 24px;
    margin-bottom: 16px;
}

.thanks-list li,
.action-list li {
    margin-bottom: 12px;
}

.thanks-service {
    background: #f9f9f9;
    padding: 24px;
    margin: 32px 0;
    border: 1px solid #e0e0e0;
}

.thanks-actions {
    text-align: left;
    margin: 32px 0;
}

.contact-note {
    font-size: 15px;
    color: #666;
    margin-top: 40px;
}

.site-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 48px 24px 24px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    padding-top: 24px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #e0e0e0;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.cookie-content a {
    color: #2563eb;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.btn-cookie.accept {
    background-color: #2563eb;
    color: #fff;
}

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

.btn-cookie.reject {
    background-color: #e0e0e0;
    color: #333;
}

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-overlay h1 {
        font-size: 28px;
    }

    .editorial-content {
        padding: 32px 16px;
    }

    .article-body {
        font-size: 17px;
    }

    h2 {
        font-size: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .btn-cookie {
        width: 100%;
    }
}