* {
    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: #2c3e50;
    background-color: #ffffff;
}

.nav-minimal {
    background-color: #1a1a1a;
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.ad-disclosure {
    color: #95a5a6;
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin: 0 1rem;
}

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

.nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

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

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

.hero-editorial {
    position: relative;
    height: 75vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-text-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    color: #ffffff;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    border-radius: 8px;
}

.hero-text-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-intro {
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 300;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.story-intro {
    margin-bottom: 3rem;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.story-intro p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.inline-image-wrap {
    margin: 3rem 0;
    text-align: center;
}

.inline-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.image-caption {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.2rem 0;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
}

h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
    color: #34495e;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.cta-inline {
    margin: 2.5rem 0;
    text-align: center;
}

.btn-text-link {
    color: #3498db;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-text-link:hover {
    color: #2980b9;
}

.trust-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.insight-box {
    background-color: #ecf0f1;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.insight-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
    margin: 0;
    font-style: italic;
}

.services-reveal {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.section-intro {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 3rem;
    text-align: center;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-image-container {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    margin: 0;
    font-size: 1.6rem;
    color: #2c3e50;
}

.service-card p {
    padding: 0 1.5rem;
    color: #546e7a;
    font-size: 1rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-top: 1px solid #ecf0f1;
    margin-top: 1rem;
}

.service-duration {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #27ae60;
}

.btn-select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2980b9;
}

.form-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.form-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

.form-intro strong {
    color: #2c3e50;
}

.consultation-form {
    margin-top: 2rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #27ae60;
    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: #229954;
}

.testimonials-editorial {
    background-color: #f5f7fa;
    padding: 4rem 0;
}

.testimonial-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.testimonial-item:last-child {
    border-bottom: none;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #34495e;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.closing-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.final-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary-large:hover {
    background-color: #2980b9;
}

.disclaimer-section {
    background-color: #ecf0f1;
    padding: 2rem 0;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #546e7a;
    line-height: 1.6;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem 2rem;
}

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

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.1rem;
}

.footer-column p {
    font-size: 0.95rem;
    color: #bdc3c7;
}

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

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

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

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

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

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.page-header {
    background-color: #34495e;
    color: #ffffff;
    padding: 4rem 2rem 3rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.page-header .lead-text {
    color: #ecf0f1;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.quote-box {
    background-color: #3498db;
    color: #ffffff;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 4px;
    text-align: center;
}

.quote-text {
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 400;
    font-style: italic;
    margin: 0;
}

.cta-box {
    background-color: #ecf0f1;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 4px;
    text-align: center;
}

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

.services-detail {
    background-color: #fafafa;
}

.service-detail-card {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: #e0e0e0;
}

.service-detail-content {
    flex: 1;
    padding: 2rem;
}

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

.service-info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #ecf0f1;
    margin-bottom: 0.5rem;
}

.info-label {
    font-weight: 500;
    color: #546e7a;
}

.info-value {
    color: #2c3e50;
}

.price-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: #27ae60;
}

.info-box {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.info-box h3 {
    margin-top: 0;
}

.contact-content {
    background-color: #fafafa;
}

.contact-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-image-block {
    flex: 1;
    min-width: 300px;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #2c3e50;
}

.note-text {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.directions-section,
.booking-note {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.booking-note a {
    color: #3498db;
    text-decoration: none;
}

.booking-note a:hover {
    text-decoration: underline;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f7fa;
    padding: 2rem;
}

.thanks-container {
    max-width: 600px;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-container h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.thanks-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    background-color: #fafafa;
    padding: 2rem 0 4rem 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.update-date {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
}

.legal-page h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.legal-page ul {
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
}

.cookie-table {
    margin: 2rem 0;
}

.cookie-row {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.cookie-row div {
    margin-bottom: 0.5rem;
}

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

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

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

    .content-narrow {
        padding: 2rem 1.5rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .service-detail-card {
        flex-direction: column !important;
    }

    .service-detail-image {
        height: 250px;
    }

    .contact-grid {
        flex-direction: column;
    }

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

    .thanks-container {
        padding: 2rem;
    }

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