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

html {
    scroll-behavior: smooth;
}

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a4d2e;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a4d2e;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    border-left: 1px solid #e0e0e0;
    padding-left: 2rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c3e50;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-menu a {
    padding: 1rem 0;
    color: #2c3e50;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

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

.hero-visual {
    margin-top: 70px;
    position: relative;
    min-height: 85vh;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 800px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
    font-size: 1.4rem;
    font-weight: 300;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0.95;
}

.intro-narrative {
    padding: 8rem 2rem;
    background: #fafafa;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrapper.narrow {
    max-width: 800px;
}

.content-wrapper.center {
    text-align: center;
}

.narrative-text h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #1a4d2e;
}

.narrative-text p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
    color: #495057;
}

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

.grid-item {
    position: relative;
    flex: 1 1 400px;
    min-height: 400px;
    overflow: hidden;
}

.grid-item.large {
    flex: 2 1 600px;
    min-height: 600px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
}

.grid-item:hover img {
    transform: scale(1.05);
}

.grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    color: #ffffff;
}

.grid-overlay h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.grid-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

.featured-journeys {
    padding: 8rem 2rem;
    background: #ffffff;
}

.featured-journeys h2 {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 5rem;
    color: #1a4d2e;
}

.journey-showcase {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.journey-card {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #fafafa;
    overflow: hidden;
}

.journey-card.reverse {
    flex-direction: row-reverse;
}

.journey-image {
    flex: 1 1 500px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    background: #e9ecef;
}

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

.journey-details {
    flex: 1 1 500px;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.journey-details h3 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1a4d2e;
}

.journey-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #495057;
}

.journey-meta {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.journey-meta span {
    font-size: 0.95rem;
    color: #6c757d;
}

.journey-meta .price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a4d2e;
}

.select-journey {
    align-self: flex-start;
    padding: 1rem 2.5rem;
    background: #1a4d2e;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 1rem;
}

.select-journey:hover {
    background: #2d5f3f;
    transform: translateY(-2px);
}

.booking-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.booking-content {
    text-align: center;
}

.booking-content h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #1a4d2e;
}

.booking-content p {
    font-size: 1.15rem;
    color: #495057;
    line-height: 1.7;
}

.booking-form {
    background: #ffffff;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #ced4da;
    background: #ffffff;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: #1a4d2e;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background: #2d5f3f;
    transform: translateY(-2px);
}

.testimonials-flow {
    padding: 8rem 2rem;
    background: #1a4d2e;
    color: #ffffff;
}

.testimonials-flow h2 {
    font-size: 2.8rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
}

.testimonial-stream {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.testimonial p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    font-size: 0.95rem;
    opacity: 0.8;
}

.cta-visual {
    position: relative;
    min-height: 600px;
}

.cta-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    padding: 2rem;
}

.cta-overlay h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.cta-overlay p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #ffffff;
    color: #1a4d2e;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

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

.footer-section {
    flex: 1 1 250px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.footer-section h3 {
    font-size: 1.5rem;
    color: #ffffff;
}

.footer-section h4 {
    font-size: 1.1rem;
    color: #bdc3c7;
}

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

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-left: 3px solid #1a4d2e;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 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: rgba(44, 62, 80, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1 1 400px;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

.cookie-btn.accept {
    background: #1a4d2e;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #2d5f3f;
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background: #95a5a6;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

.cookie-link {
    color: #ffffff;
    text-decoration: underline;
    font-size: 0.9rem;
}

.page-hero {
    margin-top: 70px;
    position: relative;
    min-height: 60vh;
}

.page-hero.short {
    min-height: 50vh;
}

.page-hero .hero-image-container {
    height: 60vh;
}

.page-hero.short .hero-image-container {
    height: 50vh;
}

.about-content {
    padding: 6rem 2rem;
    background: #ffffff;
}

.story-block {
    margin-bottom: 5rem;
}

.story-block h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #1a4d2e;
}

.story-block p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #495057;
}

.image-break {
    margin: 6rem 0;
    overflow: hidden;
}

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

.pullquote {
    margin: 5rem 0;
    padding: 3rem;
    background: #f8f9fa;
    border-left: 4px solid #1a4d2e;
}

.pullquote p {
    font-size: 1.5rem;
    line-height: 1.7;
    font-style: italic;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 4rem 0;
}

.value-item {
    flex: 1 1 300px;
    padding: 2rem;
    background: #fafafa;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1a4d2e;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
}

.team-note {
    padding: 3rem;
    background: linear-gradient(135deg, #1a4d2e 0%, #2d5f3f 100%);
    color: #ffffff;
    margin-top: 4rem;
}

.team-note p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #1a4d2e;
}

.services-intro {
    padding: 4rem 2rem;
    background: #ffffff;
    text-align: center;
}

.services-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #495057;
}

.services-showcase {
    background: #ffffff;
}

.service-full {
    display: flex;
    flex-direction: column;
    margin-bottom: 6rem;
}

.service-full.dark {
    background: #2c3e50;
    color: #ffffff;
}

.service-full.dark .service-info h2,
.service-full.dark .service-description p,
.service-full.dark .detail-item .label,
.service-full.dark .detail-item .value {
    color: #ffffff;
}

.service-full .service-image {
    width: 100%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    background: #e9ecef;
}

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

.service-full .service-info {
    padding: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-full .service-info h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #1a4d2e;
}

.service-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #495057;
}

.service-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.detail-item {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item .label {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
}

.detail-item .value {
    font-size: 1.1rem;
    color: #2c3e50;
}

.service-split {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 4rem;
    background: #fafafa;
}

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

.service-split .service-content {
    flex: 1 1 500px;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-split .service-content h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1a4d2e;
}

.service-split .service-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #495057;
}

.service-split .service-image {
    flex: 1 1 500px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    background: #e9ecef;
}

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

.contact-hero {
    margin-top: 70px;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #1a4d2e;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #495057;
}

.contact-content {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.contact-info {
    flex: 1 1 500px;
}

.info-block {
    margin-bottom: 3rem;
}

.info-block h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #1a4d2e;
}

.info-block h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2c3e50;
}

.info-block:first-child h3 {
    margin-top: 0;
}

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

.contact-detail h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a4d2e;
}

.contact-detail p {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
}

.info-block ul {
    list-style: none;
    padding-left: 0;
}

.info-block ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.info-block ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a4d2e;
}

.contact-visual {
    flex: 1 1 400px;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    background: #e9ecef;
}

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

.faq-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.faq-section h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 4rem;
    text-align: center;
    color: #1a4d2e;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.faq-item {
    flex: 1 1 400px;
    padding: 2rem;
    background: #ffffff;
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1a4d2e;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
}

.thanks-hero {
    margin-top: 70px;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a4d2e 0%, #2d5f3f 100%);
    color: #ffffff;
}

.thanks-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    line-height: 1.7;
}

.thanks-details {
    padding: 6rem 2rem;
    background: #ffffff;
}

.confirmation-box {
    background: #f8f9fa;
    padding: 3rem;
    margin-bottom: 3rem;
}

.confirmation-box h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: #1a4d2e;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step {
    display: flex;
    gap: 2rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #1a4d2e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
}

.thanks-info {
    padding: 2rem;
    background: #e7f3ff;
    border-left: 4px solid #1a4d2e;
    margin-bottom: 3rem;
}

.thanks-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a4d2e;
}

.thanks-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
}

.thanks-info a {
    color: #1a4d2e;
    font-weight: 500;
}

.selected-journey-display {
    padding: 2rem;
    background: #fafafa;
    border: 2px solid #1a4d2e;
}

.selected-journey-display h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a4d2e;
}

.selected-journey-display p {
    font-size: 1.1rem;
    color: #495057;
}

.thanks-explore {
    padding: 6rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.thanks-explore h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #1a4d2e;
}

.thanks-explore p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #495057;
}

.thanks-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.thanks-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a4d2e;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s, transform 0.2s;
}

.thanks-link:hover {
    background: #2d5f3f;
    transform: translateY(-2px);
}

.legal-content {
    margin-top: 70px;
    padding: 6rem 2rem;
    background: #ffffff;
}

.legal-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #1a4d2e;
}

.legal-content .updated {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #495057;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #495057;
}

.legal-section ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-section ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #495057;
}

.legal-section a {
    color: #1a4d2e;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #2d5f3f;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

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

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .narrative-text h2,
    .story-block h2 {
        font-size: 2rem;
    }

    .narrative-text p,
    .story-block p {
        font-size: 1rem;
    }

    .journey-card,
    .service-split {
        flex-direction: column !important;
    }

    .journey-details,
    .service-split .service-content,
    .service-full .service-info {
        padding: 2rem;
    }

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

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

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

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

    .pullquote p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-overlay {
        padding: 2rem;
    }

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

    .intro-narrative,
    .featured-journeys,
    .booking-section,
    .testimonials-flow {
        padding: 4rem 1rem;
    }

    .booking-form {
        padding: 2rem 1.5rem;
    }
}