* {
    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.6;
    color: #2c3e50;
    background: #ffffff;
}

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

.container-fluid {
    width: 100%;
    padding: 0 40px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

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

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #3498db;
    color: #ffffff;
}

.btn-accept:hover {
    background: #2980b9;
}

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

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

.header-transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 30px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.main-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.main-nav a:hover {
    opacity: 0.8;
}

.ad-notice {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
}

.hero-visual {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #34495e;
}

.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), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.4;
}

.cta-hero {
    display: inline-block;
    padding: 18px 48px;
    background: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.story-intro {
    padding: 120px 20px;
    background: #f8f9fa;
}

.lead-text {
    font-size: 28px;
    line-height: 1.8;
    color: #34495e;
    font-weight: 300;
}

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

.grid-item-large {
    flex: 2;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    background-color: #7f8c8d;
}

.grid-item-small {
    flex: 1;
    min-width: 250px;
    position: relative;
    overflow: hidden;
    background-color: #95a5a6;
}

.grid-item-large img,
.grid-item-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #ffffff;
}

.grid-overlay h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.grid-overlay p {
    font-size: 16px;
    opacity: 0.9;
}

.immersive-content {
    padding: 140px 20px;
}

.container-split {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.content-text h2 {
    font-size: 48px;
    margin-bottom: 32px;
    line-height: 1.2;
    color: #2c3e50;
}

.content-text p {
    font-size: 19px;
    margin-bottom: 24px;
    line-height: 1.8;
    color: #4a5f7f;
}

.link-inline {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    margin-top: 16px;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: #2980b9;
}

.content-image {
    flex: 1;
    min-width: 300px;
    background-color: #bdc3c7;
}

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

.experiences-showcase {
    padding: 100px 20px;
    background: #f8f9fa;
}

.section-title-center {
    text-align: center;
    font-size: 52px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 60px;
}

.experience-cards {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.exp-card {
    display: flex;
    gap: 40px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.exp-card:nth-child(even) {
    flex-direction: row-reverse;
}

.exp-image {
    flex: 1;
    min-width: 300px;
    background-color: #95a5a6;
}

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

.exp-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.exp-content h3 {
    font-size: 30px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.exp-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 24px;
}

.exp-details {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ecf0f1;
}

.exp-details span {
    font-size: 15px;
    color: #7f8c8d;
}

.pricing {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
}

.btn-select {
    padding: 12px 28px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

.booking-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.booking-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
    text-align: center;
}

.booking-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    opacity: 0.95;
}

.booking-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    color: #2c3e50;
}

.form-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.form-notice p {
    margin: 0;
    color: #856404;
}

.selected-display {
    background: #d4edda;
    border: 1px solid #28a745;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.selected-display p {
    margin: 0;
    color: #155724;
}

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

.form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 16px;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #28a745;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #218838;
}

.btn-submit:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.trust-elements {
    padding: 100px 20px;
    background: #2c3e50;
    color: #ffffff;
}

.trust-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
    min-width: 250px;
}

.trust-item h4 {
    font-size: 24px;
    margin-bottom: 16px;
}

.trust-item p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.9;
}

.footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ecf0f1;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

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

.page-header h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

.page-content {
    padding: 80px 20px;
}

.content-section {
    max-width: 800px;
    margin: 0 auto 60px;
}

.content-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.content-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5f7f;
    margin-bottom: 20px;
}

.contact-info-grid {
    display: flex;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-box {
    flex: 1;
    min-width: 250px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    padding: 40px;
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-header h3 {
    font-size: 28px;
    color: #2c3e50;
}

.service-price {
    font-size: 24px;
    font-weight: 600;
    color: #3498db;
}

.service-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .container-split {
        flex-direction: column;
        gap: 40px;
    }

    .exp-card {
        flex-direction: column;
    }

    .exp-card:nth-child(even) {
        flex-direction: column;
    }

    .trust-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 15px;
    }
}