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

:root {
    --primary-color: #2c5f7c;
    --accent-color: #d4a574;
    --dark-text: #1a1a1a;
    --light-text: #4a4a4a;
    --bg-light: #f8f5f1;
    --white: #ffffff;
    --border-color: #e0d5c7;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--dark-text);
    line-height: 1.7;
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.nav-links a {
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-text);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.ad-notice {
    font-size: 0.75rem;
    color: var(--light-text);
    border: 1px solid var(--border-color);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.hero-visual {
    margin-top: 80px;
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: var(--white);
}

.hero-title {
    font-size: 4.5rem;
    color: var(--white);
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
    max-width: 900px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
    max-width: 700px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 1.1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-primary:hover {
    background-color: #c19563;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.story-intro {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

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

.story-lead {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 2rem;
    font-style: italic;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--light-text);
}

.visual-statement {
    padding: 0;
}

.split-visual {
    display: flex;
    min-height: 600px;
}

.split-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.split-text {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
}

.split-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.routes-showcase {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-top: 1rem;
}

.routes-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.route-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.route-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.card-image {
    height: 240px;
    overflow: hidden;
    background-color: var(--border-color);
}

.card-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.route-card:hover .card-image img {
    transform: scale(1.1);
}

.card-body {
    padding: 2rem;
}

.card-body h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card-body p {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.route-price {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: 700;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 1.5rem 0;
}

.btn-select {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #234a5f;
    transform: translateY(-2px);
}

.testimonial-inline {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
}

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

.testimonial-content blockquote {
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.8;
    margin: 0;
}

.testimonial-content footer {
    margin-top: 2rem;
    font-size: 1.1rem;
    font-style: normal;
    color: var(--accent-color);
}

.booking-flow {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

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

.booking-container h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.booking-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background-color: #234a5f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.trust-building {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.trust-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.trust-item p {
    color: var(--light-text);
    font-size: 1rem;
}

.footer {
    background-color: var(--dark-text);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-accept:hover {
    background-color: #c19563;
}

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.page-hero {
    margin-top: 80px;
}

.page-hero .hero-image-container {
    height: 50vh;
    min-height: 400px;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content {
    padding: 5rem 0;
}

.about-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--light-text);
    line-height: 1.8;
}

.about-story p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.inline-image {
    margin: 3rem 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--border-color);
}

.inline-image img {
    width: 100%;
    height: auto;
}

.mission-section {
    margin: 4rem 0;
}

.mission-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-section p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.value-item {
    flex: 1;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--light-text);
}

.team-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.team-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.team-section p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-intro {
    padding: 4rem 0 2rem;
}

.services-detailed {
    padding: 3rem 0;
}

.service-detail {
    display: flex;
    margin-bottom: 5rem;
    gap: 3rem;
    align-items: center;
}

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

.service-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-price-large {
    font-size: 2.2rem;
    color: var(--accent-color);
    font-weight: 700;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 1rem 0 1.5rem;
}

.service-info p {
    font-size: 1.05rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-highlights {
    list-style: none;
    margin: 2rem 0;
}

.service-highlights li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--light-text);
}

.service-highlights li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.booking-cta-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
    text-align: center;
}

.booking-cta-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.booking-cta-section p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2.5rem;
}

.contact-content {
    padding: 5rem 0;
}

.contact-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.contact-info-block {
    flex: 1;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-info-block h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-block p {
    color: var(--light-text);
    line-height: 1.8;
}

.contact-note {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-note p {
    font-size: 1.05rem;
    color: var(--light-text);
    line-height: 1.7;
    text-align: center;
}

.contact-map-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.contact-map-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-map-section p {
    font-size: 1.05rem;
    color: var(--light-text);
    line-height: 1.7;
}

.thanks-section {
    padding: 5rem 2rem;
    min-height: calc(100vh - 80px);
    margin-top: 80px;
    background-color: var(--bg-light);
}

.thanks-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1.2;
}

.thanks-content h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.thanks-details p {
    font-size: 1.05rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-confirmation {
    padding: 1.5rem;
    background-color: var(--white);
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
    border-radius: 4px;
}

.service-confirmation p {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.thanks-next-steps {
    margin: 3rem 0;
}

.thanks-next-steps h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps ul li {
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 1rem;
    color: var(--light-text);
    font-size: 1.05rem;
}

.thanks-next-steps ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.thanks-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #234a5f;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.thanks-image {
    flex: 0.8;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--border-color);
}

.thanks-image img {
    width: 100%;
    height: auto;
}

.legal-page {
    padding: 5rem 2rem;
    min-height: calc(100vh - 80px);
    margin-top: 80px;
}

.legal-page h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.legal-page h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.legal-page h3 {
    color: var(--dark-text);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.legal-page p {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style: disc;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
    color: var(--light-text);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

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

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .route-card {
        flex: 1 1 100%;
    }

    .trust-grid,
    .values-grid,
    .contact-grid,
    .footer-content {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

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

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