* {
    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: #2d3436;
    background: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3436;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.btn-accept {
    background: #00b894;
    color: #fff;
}

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.ad-disclosure {
    background: #fdcb6e;
    color: #2d3436;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 600;
}

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

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2d3436;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
}

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

.nav-menu a:hover {
    color: #0984e3;
}

.hero-block {
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-image {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.5);
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
    color: #fff;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    line-height: 1.5;
}

section {
    padding: 80px 30px;
}

.dark-bg {
    background: #2d3436;
    color: #fff;
}

.light-bg {
    background: #f5f5f5;
    color: #2d3436;
}

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

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

h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.3;
}

h2 {
    font-size: 36px;
    margin-bottom: 25px;
    line-height: 1.3;
}

h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

.intro-section h2 {
    margin-bottom: 30px;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
}

.featured-destinations h2 {
    text-align: center;
    margin-bottom: 50px;
}

.destination-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.dest-card {
    flex: 1;
    min-width: 300px;
    max-width: 370px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.dest-card:hover {
    transform: translateY(-5px);
}

.dest-image {
    width: 100%;
    height: 250px;
}

.dest-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.dest-info {
    padding: 25px;
}

.dest-info h3 {
    color: #2d3436;
    margin-bottom: 15px;
}

.dest-info p {
    color: #636e72;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.dest-price {
    display: block;
    font-weight: 700;
    color: #0984e3;
    font-size: 18px;
}

.experience-story h2 {
    margin-bottom: 30px;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.story-image-inline {
    width: 100%;
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-preview h2 {
    text-align: center;
    margin-bottom: 50px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    background: rgba(255,255,255,0.05);
    padding: 35px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.service-item h3 {
    margin-bottom: 15px;
    color: #fff;
}

.service-item p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
}

.price-tag {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #fdcb6e;
    margin-bottom: 20px;
}

.select-service-btn {
    padding: 12px 30px;
    background: #0984e3;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.3s;
}

.select-service-btn:hover {
    background: #0770c4;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-block {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: #2d3436;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 700;
    color: #636e72;
    text-align: right;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    font-size: 15px;
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0984e3;
    background: rgba(255,255,255,0.15);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #00b894;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #00a383;
}

.final-cta {
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background: #0984e3;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    transition: background 0.3s;
}

.btn-cta:hover {
    background: #0770c4;
}

.main-footer {
    background: #1e272e;
    color: #dfe6e9;
    padding: 50px 30px 30px;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-links a {
    color: #dfe6e9;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.footer-info {
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.page-hero {
    background: #2d3436;
    color: #fff;
    text-align: center;
    padding: 80px 30px;
}

.page-hero h1 {
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    margin: 0;
}

.services-detailed {
    padding: 80px 30px;
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-text {
    flex: 1;
    min-width: 300px;
}

.service-detail-text h2 {
    margin-bottom: 20px;
}

.service-detail-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-detail-text ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-text ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-detail-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00b894;
    font-weight: 700;
}

.service-pricing {
    margin-bottom: 25px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #0984e3;
    margin-right: 10px;
}

.price-note {
    font-size: 14px;
    color: #636e72;
}

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

.booking-cta h2 {
    margin-bottom: 20px;
}

.booking-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

.about-content,
.mission-section,
.values-section {
    padding: 80px 30px;
}

.about-content h2,
.mission-section h2,
.values-section h2 {
    margin-bottom: 30px;
}

.about-content p,
.mission-section p {
    font-size: 18px;
    line-height: 1.8;
}

.team-section {
    padding: 80px 30px;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.team-member h3 {
    color: #2d3436;
    margin-bottom: 10px;
}

.team-role {
    font-weight: 700;
    color: #0984e3;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: #636e72;
}

.values-list {
    list-style: none;
}

.values-list li {
    padding: 15px 0;
    font-size: 17px;
    line-height: 1.7;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.values-list li:last-child {
    border-bottom: none;
}

.cta-section {
    text-align: center;
    padding: 80px 30px;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-info {
    padding: 80px 30px;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h2 {
    margin-bottom: 15px;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.8;
}

.email-display {
    color: #0984e3;
    font-weight: 600;
    user-select: all;
}

.contact-map {
    padding: 80px 30px;
    text-align: center;
}

.contact-map h2 {
    margin-bottom: 20px;
}

.contact-map p {
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta {
    text-align: center;
    padding: 80px 30px;
}

.contact-cta h2 {
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 17px;
    margin-bottom: 30px;
}

.thanks-section {
    padding: 120px 30px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-confirmation {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 18px;
    font-weight: 600;
}

.legal-page {
    padding: 80px 30px;
    background: #f5f5f5;
}

.legal-page h1 {
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    section {
        padding: 50px 20px;
    }

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

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

    .thanks-content h1 {
        font-size: 36px;
    }
}
