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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.ad-notice {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 35px;
    z-index: 999;
}

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

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

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

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

.nav-links a:hover {
    color: #3498db;
}

.hero-section {
    display: flex;
    min-height: 550px;
    background-color: #ffffff;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a252f;
}

.hero-content p {
    font-size: 1.25rem;
    color: #546e7a;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

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

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.intro-cards {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.card-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #2c3e50;
}

.info-card p {
    color: #546e7a;
    font-size: 1rem;
}

.tours-highlight {
    padding: 80px 20px;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #1a252f;
}

.section-header p {
    font-size: 1.15rem;
    color: #546e7a;
}

.tours-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.tour-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    min-width: 320px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.tour-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.tour-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.tour-info p {
    color: #546e7a;
    margin-bottom: 20px;
    flex-grow: 1;
}

.tour-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid #ecf0f1;
}

.duration {
    font-size: 0.95rem;
    color: #7f8c8d;
}

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

.select-tour {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.select-tour:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.booking-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.booking-container h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    text-align: center;
    color: #2c3e50;
}

.booking-intro {
    text-align: center;
    color: #546e7a;
    margin-bottom: 40px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group input[readonly] {
    background-color: #ecf0f1;
    cursor: not-allowed;
}

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 12px;
}

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

.why-choose {
    display: flex;
    background-color: #ffffff;
}

.why-content {
    flex: 1;
    padding: 80px 60px;
}

.why-content h2 {
    font-size: 2.25rem;
    margin-bottom: 40px;
    color: #1a252f;
}

.reasons-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.reason-item h4 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.reason-item p {
    color: #546e7a;
    line-height: 1.7;
}

.why-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

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

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

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

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

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.7;
}

.footer-section a {
    display: block;
    color: #ecf0f1;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 16px;
    font-size: 0.85rem;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 16px;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

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

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

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

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

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

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

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

.about-story {
    display: flex;
    background-color: #ffffff;
    padding: 80px 0;
}

.story-content {
    flex: 1;
    padding: 40px 60px;
}

.story-content h2 {
    font-size: 2.25rem;
    margin-bottom: 32px;
    color: #2c3e50;
}

.story-content p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

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

.values-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a252f;
}

.values-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    padding: 36px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-card p {
    color: #546e7a;
    line-height: 1.7;
}

.team-approach {
    padding: 80px 20px;
    background-color: #ffffff;
}

.team-approach h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a252f;
}

.approach-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.approach-item {
    flex: 1;
    min-width: 240px;
}

.approach-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 16px;
}

.approach-item h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.approach-item p {
    color: #546e7a;
    line-height: 1.7;
}

.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.95;
    margin-bottom: 32px;
}

.services-intro {
    padding: 60px 20px;
    background-color: #ffffff;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 16px;
    line-height: 1.7;
}

.all-services {
    padding: 40px 20px 80px;
    background-color: #f8f9fa;
}

.service-detailed {
    max-width: 1200px;
    margin: 0 auto 60px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
}

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

.service-image-large {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

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

.service-details {
    flex: 1;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
}

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-tagline {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 24px;
    font-style: italic;
}

.service-details > p {
    font-size: 1.05rem;
    color: #546e7a;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-highlights {
    list-style-position: inside;
    margin-bottom: 32px;
}

.service-highlights li {
    color: #546e7a;
    margin-bottom: 10px;
    padding-left: 8px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 20px 0;
    border-top: 2px solid #ecf0f1;
    border-bottom: 2px solid #ecf0f1;
}

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

.booking-cta {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.booking-cta h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 16px;
}

.booking-cta p {
    font-size: 1.1rem;
    color: #546e7a;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-box {
    flex: 1;
    min-width: 320px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-info-box h2 {
    font-size: 2rem;
    margin-bottom: 32px;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #34495e;
}

.contact-item p {
    color: #546e7a;
    line-height: 1.7;
}

.contact-note {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    margin-top: 24px;
}

.contact-note p {
    color: #546e7a;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.faq-item {
    background-color: #ffffff;
    padding: 28px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.faq-item p {
    color: #546e7a;
    line-height: 1.7;
}

.visit-us {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.visit-us h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
    color: #2c3e50;
}

.visit-us p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 16px;
}

.location-note {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 24px;
}

.location-note p {
    color: #27ae60;
    font-weight: 600;
}

.thanks-content {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.thanks-box {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 40px;
}

.selected-tour-info {
    background-color: #e8f5e9;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-tour-info p {
    color: #27ae60;
    font-weight: 600;
    font-size: 1.1rem;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

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

.next-steps ol {
    padding-left: 24px;
}

.next-steps li {
    color: #546e7a;
    margin-bottom: 12px;
    line-height: 1.7;
}

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

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

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

.btn-secondary {
    background-color: #7f8c8d;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #6c7a89;
    transform: translateY(-2px);
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

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

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #546e7a;
}

.legal-content h4 {
    font-size: 1.15rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #546e7a;
}

.legal-content p {
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-content li {
    color: #546e7a;
    margin-bottom: 8px;
    line-height: 1.7;
}

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

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

@media (max-width: 968px) {
    .hero-section,
    .about-story,
    .why-choose {
        flex-direction: column;
    }

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

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

    .service-detailed {
        flex-direction: column;
    }

    .service-detailed.reverse {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
    }

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

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

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 1.85rem;
    }

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

    .section-header h2,
    .values-section h2,
    .team-approach h2 {
        font-size: 1.85rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 12px;
        font-size: 0.9rem;
    }

    .tours-cards {
        gap: 24px;
    }
}
