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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2d3748;
    background-color: #fff;
}

a {
    color: #2b6cb0;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #1a4971;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: #1a202c;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

ul {
    list-style: none;
}

.main-header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    letter-spacing: -0.5px;
}

.logo a:hover {
    color: #2b6cb0;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #718096;
    background-color: #f7fafc;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: #4a5568;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2b6cb0;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #2b6cb0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-bar {
    width: 24px;
    height: 2px;
    background-color: #1a202c;
    transition: transform 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 70vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #f7fafc;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    font-size: 2.75rem;
}

.hero-content p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    background-color: #2b6cb0;
    color: #fff;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #1a4971;
    color: #fff;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
    color: #2b6cb0;
    border: 2px solid #2b6cb0;
}

.cta-button.secondary:hover {
    background-color: #2b6cb0;
    color: #fff;
}

.intro-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.intro-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-container h2 {
    margin-bottom: 1.5rem;
}

.intro-container p {
    font-size: 1.125rem;
    color: #4a5568;
}

.split-feature {
    display: flex;
    min-height: 450px;
}

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

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #fff;
}

.feature-content.wide {
    padding: 4rem 5rem;
}

.feature-content p {
    color: #4a5568;
    margin-bottom: 1rem;
}

.feature-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.text-link {
    display: inline-block;
    font-weight: 600;
    margin-top: 0.5rem;
    position: relative;
}

.text-link::after {
    content: ' →';
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-grid {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.service-image {
    height: 180px;
    overflow: hidden;
}

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

.service-card h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    text-align: left;
}

.service-card p {
    padding: 0 1.5rem;
    color: #4a5568;
    font-size: 0.95rem;
    text-align: left;
}

.service-card .price {
    display: block;
    padding: 1rem 1.5rem 1.5rem;
    font-weight: 600;
    color: #2b6cb0;
    text-align: left;
}

.testimonial-section {
    padding: 4rem 2rem;
    background-color: #1a202c;
    color: #fff;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-container blockquote p {
    font-size: 1.375rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-container cite {
    font-style: normal;
    color: #a0aec0;
}

.booking-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.booking-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.booking-content {
    flex: 1;
}

.booking-content h2 {
    margin-bottom: 1rem;
}

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

.booking-form-wrapper {
    flex: 1;
}

.booking-form {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

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

.main-footer {
    background-color: #1a202c;
    color: #a0aec0;
    padding-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-section h5 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.footer-links a {
    color: #a0aec0;
    font-size: 0.95rem;
}

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

.email-display {
    word-break: break-all;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 2rem;
    border-top: 1px solid #2d3748;
    text-align: center;
}

.disclaimer {
    font-size: 0.85rem;
    max-width: 900px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

.copyright {
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cookie-btn.accept {
    background-color: #2b6cb0;
    color: #fff;
}

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

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

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

.cookie-link {
    color: #63b3ed;
    font-size: 0.9rem;
}

.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero.compact {
    min-height: 250px;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.page-hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 32, 44, 0.6), rgba(26, 32, 44, 0.8));
}

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

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.page-hero-content h1 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-intro {
    padding: 4rem 2rem;
    background-color: #fff;
}

.about-intro-container {
    max-width: 800px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.375rem;
    color: #4a5568;
    line-height: 1.8;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

.values-container {
    max-width: 1100px;
    margin: 0 auto;
}

.values-container > h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    color: #2b6cb0;
    margin-bottom: 1rem;
}

.value-item p {
    color: #4a5568;
}

.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2b6cb0 0%, #1a4971 100%);
    text-align: center;
    color: #fff;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-container h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-container p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    opacity: 0.9;
}

.cta-section .cta-button {
    background-color: #fff;
    color: #2b6cb0;
}

.cta-section .cta-button:hover {
    background-color: #f7fafc;
}

.services-intro {
    padding: 3rem 2rem;
    background-color: #fff;
}

.services-intro-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-intro-container p {
    color: #4a5568;
    font-size: 1.1rem;
}

.service-detail-section {
    padding: 4rem 2rem;
}

.service-detail-section.alt-bg {
    background-color: #f7fafc;
}

.service-detail-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-container > h2 {
    margin-bottom: 2.5rem;
}

.service-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-detail-grid.two-col {
    flex-direction: row;
    flex-wrap: wrap;
}

.service-detail-card {
    display: flex;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.service-detail-section.alt-bg .service-detail-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-detail-card.horizontal {
    flex: 1;
    min-width: 320px;
}

.service-detail-image {
    width: 320px;
    min-height: 220px;
    flex-shrink: 0;
}

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

.service-detail-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h3 {
    margin-bottom: 1rem;
}

.service-detail-content p {
    color: #4a5568;
    margin-bottom: 1rem;
}

.service-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 1rem;
}

.service-meta span {
    font-size: 0.95rem;
}

.service-meta .duration,
.service-meta .group-size {
    color: #718096;
}

.service-meta .price-tag {
    font-weight: 600;
    color: #2b6cb0;
}

.contact-main {
    padding: 4rem 2rem;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info-section {
    flex: 1;
    min-width: 320px;
}

.contact-info-section h2 {
    margin-bottom: 1rem;
}

.contact-info-section > p {
    color: #4a5568;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2b6cb0;
}

.contact-item p {
    color: #4a5568;
}

.contact-note {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 0.5rem;
}

.contact-map-section {
    flex: 1;
    min-width: 320px;
}

.map-placeholder {
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    color: #4a5568;
}

.map-content p {
    margin-top: 1rem;
    font-weight: 500;
}

.additional-info {
    padding: 4rem 2rem;
    background-color: #f7fafc;
}

.additional-info-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
}

.info-card h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.info-card p {
    color: #4a5568;
    font-size: 0.95rem;
}

.thanks-section {
    padding: 6rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.thanks-details {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
    margin-bottom: 2rem;
}

.thanks-details h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.next-steps {
    list-style: disc;
    padding-left: 1.5rem;
}

.next-steps li {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.thanks-note {
    color: #718096;
    margin-bottom: 2rem;
}

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

.legal-page {
    padding: 4rem 2rem;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-container h1 {
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: #718096;
    margin-bottom: 3rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.legal-content p {
    color: #4a5568;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

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

    .hero-content {
        padding: 3rem 2rem;
    }

    .hero-image {
        min-height: 300px;
    }

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

    .feature-content,
    .feature-content.wide {
        padding: 3rem 2rem;
    }

    .feature-image {
        min-height: 300px;
    }

    .booking-container {
        flex-direction: column;
    }

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

    .service-detail-image {
        width: 100%;
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .header-container {
        padding: 1rem;
    }

    .main-nav {
        gap: 1rem;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-list.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .ad-disclosure {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }

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

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

    .service-card {
        max-width: none;
    }

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

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

    .service-detail-grid.two-col {
        flex-direction: column;
    }
}
