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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0 20px 10px 0;
    flex: 1 1 400px;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #7eb4d8;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background-color: #3a7a9e;
}

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

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

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand-mark a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a3a4d;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2c5f7c;
}

.ad-label {
    font-size: 0.8rem;
    color: #718096;
    padding: 6px 12px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    background-color: #f7fafc;
}

.editorial-flow {
    background-color: #ffffff;
}

.story-section {
    padding: 60px 20px;
}

.story-container {
    max-width: 720px;
    margin: 0 auto;
}

.story-headline {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a202c;
    letter-spacing: -1px;
}

.story-lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 50px;
    font-weight: 400;
}

.story-container h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-top: 60px;
    margin-bottom: 24px;
    color: #2d3748;
}

.story-container h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #2d3748;
}

.story-container h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 14px;
    color: #4a5568;
}

.story-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #4a5568;
}

.story-image {
    margin: 50px 0;
    width: 100%;
    background-color: #e2e8f0;
}

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

.story-image-offset {
    margin-left: -40px;
    width: calc(100% + 80px);
    max-width: 800px;
}

.story-quote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    color: #2d3748;
    margin: 40px 0;
    padding: 30px 40px;
    border-left: 4px solid #2c5f7c;
    background-color: #f7fafc;
}

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

.cta-link {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c5f7c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #1e4559;
}

.services-embedded {
    margin: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    padding: 40px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    color: #1a202c;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 24px;
    background-color: #cbd5e0;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-details {
    list-style: none;
    margin-bottom: 24px;
}

.service-details li {
    padding: 8px 0;
    border-bottom: 1px solid #f7fafc;
    font-size: 0.95rem;
    color: #4a5568;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c5f7c;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 28px;
    background-color: #1a3a4d;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #0f2633;
}

.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
}

.form-section h3 {
    margin-top: 0;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d3748;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid #cbd5e0;
    background-color: #ffffff;
    color: #2d3748;
    font-family: inherit;
}

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

.btn-submit {
    padding: 14px 32px;
    background-color: #2c5f7c;
    color: #ffffff;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #718096;
    margin-top: 60px;
    padding: 20px;
    background-color: #f7fafc;
    border-left: 3px solid #cbd5e0;
}

.site-footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 50px 20px;
    margin-top: 80px;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-info {
    font-size: 0.9rem;
    color: #a0aec0;
}

.footer-info p {
    margin-bottom: 8px;
}

.contact-details {
    margin: 40px 0;
}

.contact-details h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2d3748;
}

.contact-details p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.contact-note {
    padding: 20px;
    background-color: #fff5e6;
    border-left: 3px solid #f6ad55;
    margin: 30px 0;
    font-size: 0.95rem;
}

.thanks-content {
    margin: 40px 0;
}

.thanks-content h2 {
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2d3748;
}

.thanks-content ul {
    margin: 20px 0 20px 30px;
}

.thanks-content li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

.service-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5f7c;
    padding: 16px 20px;
    background-color: #e6f2f8;
    border-left: 4px solid #2c5f7c;
    margin: 20px 0;
}

.thanks-navigation {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-nav {
    padding: 14px 28px;
    background-color: #2c5f7c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn-nav:hover {
    background-color: #1e4559;
}

.legal-page {
    max-width: 900px;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a202c;
}

.legal-page h2 {
    font-size: 1.7rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2d3748;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 35px;
    margin-bottom: 16px;
    color: #4a5568;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

.booking-info {
    margin: 60px 0;
    padding: 30px;
    background-color: #fffaf0;
    border: 1px solid #fbd38d;
}

.booking-info h2 {
    margin-top: 0;
    color: #2d3748;
}

.booking-info p {
    color: #4a5568;
}

@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 16px;
    }

    .story-headline {
        font-size: 2.2rem;
    }

    .story-lead {
        font-size: 1.1rem;
    }

    .story-image-offset {
        margin-left: 0;
        width: 100%;
    }

    .service-card {
        padding: 24px;
    }

    .form-section {
        padding: 24px;
    }

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

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

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

    .btn-nav {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-wrapper {
        padding: 0 20px;
    }

    .story-section {
        padding: 40px 20px;
    }

    .story-headline {
        font-size: 1.8rem;
    }

    .brand-mark a {
        font-size: 1.5rem;
    }
}