* {
    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: #ffffff;
}

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

.nav-links a:hover {
    color: #2980b9;
}

.hero-editorial {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #1a2332;
}

.hero-editorial img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    z-index: 1;
}

.hero-content-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 40px;
}

.hero-content-overlay h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.4);
}

.magazine-intro {
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 5%;
}

.intro-columns {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.intro-lead {
    flex: 1.2;
}

.intro-lead h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #1a2332;
}

.intro-lead p {
    font-size: 1.15rem;
    margin-bottom: 18px;
    line-height: 1.8;
}

.intro-secondary {
    flex: 1;
}

.intro-secondary img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.caption {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 10px;
    font-style: italic;
}

.story-section {
    background: #f7f9fc;
    padding: 80px 5%;
}

.story-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.story-text-wide {
    flex: 1.5;
}

.story-text-wide h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.story-text-wide p {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.story-image-card {
    flex: 1;
}

.story-image-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.tours-preview {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 5%;
}

.section-title-offset {
    font-size: 2.8rem;
    margin-bottom: 50px;
    margin-left: 40px;
    color: #1a2332;
}

.tours-magazine-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.tour-card-large {
    flex: 1 1 calc(60% - 30px);
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tour-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.tour-card-medium {
    flex: 1 1 calc(40% - 30px);
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tour-card-medium:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.tour-card-large img,
.tour-card-medium img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.tour-card-content {
    padding: 30px;
}

.tour-card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 14px;
    color: #2c3e50;
}

.tour-card-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.tour-distance {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.tour-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #27ae60;
}

.btn-tour-select {
    width: 100%;
    padding: 14px 24px;
    background: #2980b9;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-tour-select:hover {
    background: #1f5f8b;
}

.inline-story-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 5%;
}

.inline-story-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.inline-story-narrow h3 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: #2c3e50;
}

.inline-story-narrow p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.inline-image-centered {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 40px auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.services-compact {
    background: #f0f4f8;
    padding: 80px 5%;
}

.services-compact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.services-list-inline {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item-inline {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.service-item-inline h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #2c3e50;
    flex: 1;
}

.service-item-inline p {
    font-size: 0.95rem;
    color: #5a6c7d;
    flex: 1.5;
    margin-bottom: 0;
}

.price-badge {
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
    white-space: nowrap;
}

.service-item-inline .btn-tour-select {
    width: auto;
    padding: 10px 24px;
    font-size: 0.9rem;
}

.booking-form-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 5%;
}

.form-container-magazine {
    background: #f7f9fc;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-container-magazine h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
}

.selected-service-display {
    background: #e8f5e9;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
    border: 2px solid #27ae60;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d8dd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.site-footer {
    background: #1a2332;
    color: #b8c5d6;
    padding: 60px 5% 30px;
}

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-col p {
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b8c5d6;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px 5%;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

.btn-cookie-reject:hover {
    background: #7f8c8d;
}

.page-hero-small {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 5%;
    text-align: center;
}

.page-hero-small h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
}

.about-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 5%;
}

.about-split {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.about-text-primary {
    flex: 1.2;
}

.about-text-primary h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-text-primary p {
    font-size: 1.1rem;
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-image-stack {
    flex: 1;
}

.about-image-stack img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.about-values-section {
    margin-bottom: 80px;
}

.about-values-section h3 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    gap: 30px;
}

.value-card {
    flex: 1;
    background: #f7f9fc;
    padding: 30px;
    border-radius: 8px;
}

.value-card h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2980b9;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.team-section {
    margin-bottom: 80px;
}

.team-section h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-section p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-cta-section {
    background: #f0f4f8;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
}

.about-cta-section h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #2c3e50;
}

.about-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #5a6c7d;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: #2980b9;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #1f5f8b;
}

.services-detailed {
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 5%;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-lead {
    font-size: 1.15rem;
    margin-bottom: 24px;
    color: #5a6c7d;
    font-weight: 500;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1rem;
    color: #2c3e50;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-includes {
    background: #f7f9fc;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 24px;
}

.service-includes h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #2c3e50;
}

.service-includes p {
    font-size: 0.95rem;
    color: #5a6c7d;
    margin: 0;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 24px;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #27ae60;
}

.price-unit {
    font-size: 1rem;
    color: #7f8c8d;
}

.contact-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 5%;
}

.contact-info-layout {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-details > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2980b9;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-note {
    background: #fff3cd;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #ffc107;
    margin-top: 30px;
}

.contact-note p {
    font-size: 0.95rem;
    color: #856404;
    margin: 0;
}

.contact-image-section {
    flex: 1;
}

.contact-image-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.image-caption {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 12px;
    font-style: italic;
}

.contact-additional h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.faq-compact {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: #f7f9fc;
    padding: 25px;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1rem;
    color: #5a6c7d;
    margin: 0;
}

.thanks-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 5%;
}

.thanks-content {
    background: #f7f9fc;
    padding: 60px 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #ffffff;
    font-size: 3rem;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.thanks-details {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 10px;
}

.thanks-next-steps {
    text-align: left;
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.thanks-next-steps li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 1rem;
    color: #5a6c7d;
}

.thanks-next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2980b9;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1e8449;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto 100px;
    padding: 0 5%;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2980b9;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: #2980b9;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1f5f8b;
}

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

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

    .intro-columns,
    .story-grid,
    .about-split,
    .values-grid,
    .service-detail-card,
    .contact-info-layout {
        flex-direction: column;
    }

    .tours-magazine-grid {
        flex-direction: column;
    }

    .tour-card-large,
    .tour-card-medium {
        flex: 1 1 100%;
    }

    .nav-links {
        gap: 16px;
    }

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

    .cookie-content {
        flex-direction: column;
    }

    .service-item-inline {
        flex-direction: column;
        align-items: flex-start;
    }

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