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

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #5a6c7d;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fafbfc;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a2332;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    background-color: #e8edf2;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1a2332;
}

.split-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
    padding: 80px 60px;
}

.split-text h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a2332;
    font-weight: 700;
}

.split-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
    background-color: #f0f3f6;
}

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

.story-intro,
.values-split,
.team-section,
.parking-access {
    margin: 0 0 60px 0;
}

.problem-amplification,
.insight-section,
.sustainability-note,
.visit-info,
.cancellation-policy {
    padding: 80px 0;
}

.centered-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.centered-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #1a2332;
    font-weight: 700;
    text-align: center;
}

.centered-content h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
    text-align: center;
}

.centered-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.reference {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.reference:hover {
    text-decoration: underline;
}

.services-showcase {
    padding: 100px 40px;
    background-color: #fafbfc;
}

.services-showcase h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a2332;
    font-weight: 700;
}

.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px 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 4px 16px rgba(0, 0, 0, 0.12);
}

.service-image {
    background-color: #e8edf2;
    height: 240px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a2332;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
    margin: 0 25px 15px;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 15px 25px 20px;
}

.service-select {
    margin: auto 25px 25px;
    padding: 14px 30px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-select:hover {
    background-color: #1a2332;
}

.testimonials-inline {
    padding: 80px 40px;
    background-color: #f5f7f9;
}

.testimonial-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.testimonial-content {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
}

.testimonial-content blockquote {
    font-size: 18px;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
}

.testimonial-content cite {
    display: block;
    margin-top: 20px;
    font-size: 15px;
    color: #6c757d;
    font-style: normal;
    font-weight: 600;
}

.booking-flow {
    padding: 100px 0;
}

.split-form {
    flex: 1;
    padding: 60px;
    background-color: #fafbfc;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 16px 20px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.contact-form input[readonly] {
    background-color: #f0f3f6;
    color: #6c757d;
}

.submit-btn {
    padding: 16px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.note {
    font-size: 14px;
    color: #6c757d;
    margin-top: 15px;
}

.trust-indicators {
    padding: 60px 40px;
    background-color: #f8f9fa;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

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

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

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

.footer-references {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 30px 0;
    border-top: 1px solid #3d4f63;
}

.footer-references h5 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-references p {
    font-size: 13px;
    line-height: 1.6;
    color: #b8c5d6;
    margin-bottom: 10px;
}

.footer-references a {
    color: #70a9e8;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 30px 0;
    border-top: 1px solid #3d4f63;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #b8c5d6;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #b8c5d6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e0e0e0;
    padding: 25px 40px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #2c3e50;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.cookie-btn.reject {
    background-color: #e8edf2;
    color: #2c3e50;
}

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

.cookie-link {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.cookie-link:hover {
    text-decoration: underline;
}

.page-hero {
    padding: 100px 40px 80px;
    background-color: #fafbfc;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #1a2332;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-hero p {
    font-size: 20px;
    color: #5a6c7d;
}

.philosophy-section,
.methodology {
    padding: 80px 40px;
}

.process-steps {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.process-step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.process-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-item {
    margin-bottom: 60px;
}

.service-detail-split {
    display: flex;
    align-items: center;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #f0f3f6;
}

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

.service-detail-text {
    flex: 1;
    padding: 60px;
}

.service-detail-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a2332;
    font-weight: 700;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-detail-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 18px;
}

.service-benefits {
    list-style: none;
    margin: 25px 0;
}

.service-benefits li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
    color: #5a6c7d;
}

.service-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: 700;
}

.booking-cta {
    padding: 80px 40px;
    background-color: #fafbfc;
}

.contact-details {
    margin-bottom: 60px;
}

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

.contact-info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.thanks-hero {
    padding: 120px 40px 80px;
    background-color: #f5f9fc;
    text-align: center;
}

.thanks-hero h1 {
    font-size: 44px;
    color: #1a2332;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-hero p {
    font-size: 20px;
    color: #5a6c7d;
}

.thanks-details {
    margin: 60px 0;
}

.next-steps {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.link-btn {
    display: inline-block;
    padding: 14px 30px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.contact-reminder {
    padding: 60px 40px;
    background-color: #fafbfc;
}

.legal-page {
    padding: 60px 40px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #1a2332;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 18px;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 10px;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

.legal-content strong {
    color: #2c3e50;
}

.cookie-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #d1d5db;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 14px;
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-content {
        padding: 60px 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .split-container,
    .split-container.reverse {
        flex-direction: column;
    }

    .split-text {
        padding: 50px 30px;
    }

    .split-form {
        padding: 40px 30px;
    }

    .nav-links {
        gap: 20px;
    }

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

    .testimonial-split {
        flex-direction: column;
    }

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

    .service-card {
        max-width: 100%;
    }

    .service-detail-split,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .service-detail-text {
        padding: 40px 30px;
    }

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

    .next-steps {
        flex-direction: column;
    }

    .cookie-table {
        font-size: 12px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 8px 10px;
    }
}