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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fdfcfa;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

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

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

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

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

.header-main {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #34495e;
}

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 5px 12px;
    border-radius: 3px;
}

.nav-main {
    display: flex;
    gap: 30px;
}

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

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

.hamburger {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

.hero-magazine {
    margin-bottom: 60px;
}

.hero-image-wrap {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay h1 {
    font-size: 52px;
    color: white;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    text-align: center;
    max-width: 600px;
}

.intro-magazine {
    padding: 80px 0;
    background-color: white;
}

.magazine-grid {
    display: flex;
    gap: 60px;
}

.magazine-main {
    flex: 2;
}

.magazine-main h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

.magazine-main p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #34495e;
}

.magazine-sidebar {
    flex: 1;
}

.sidebar-card {
    background-color: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
}

.sidebar-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #bdc3c7;
    color: #34495e;
}

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

.featured-experiences {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title-offset {
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c3e50;
    padding-left: 40px;
}

.exp-grid-three {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.exp-card {
    flex: 1;
    min-width: 320px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.exp-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #34495e;
}

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

.exp-content {
    padding: 30px;
}

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

.exp-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px 20px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.story-section {
    padding: 80px 0;
    background-color: white;
}

.story-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #34495e;
}

.testimonial-inline {
    font-size: 20px;
    font-style: italic;
    color: #555;
    border-left: 4px solid #3498db;
    padding-left: 25px;
    margin: 40px 0;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    font-style: normal;
    color: #7f8c8d;
}

.additional-services {
    padding: 80px 0;
    background-color: #fdfcfa;
}

.services-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.services-left {
    flex: 1.2;
}

.services-left h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.service-item {
    padding: 25px 0;
    border-bottom: 1px solid #e0e0e0;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.service-item p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.service-price-inline {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-price-inline .price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.btn-select-small {
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-small:hover {
    background-color: #2980b9;
}

.highlight-service {
    background-color: #fff9e6;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid #f39c12;
}

.services-right {
    flex: 1;
}

.services-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.booking-form-section {
    padding: 80px 0;
    background-color: white;
}

.form-wrapper {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #555;
    margin-bottom: 35px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 16px 30px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

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

.trust-building {
    padding: 80px 0;
    background-color: #f0f4f8;
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.trust-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #34495e;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.trust-item p {
    font-size: 16px;
    color: #555;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff9e6;
}

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

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

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

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

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

.footer-col p {
    color: #bdc3c7;
    line-height: 1.8;
}

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

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

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

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
    color: #95a5a6;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-box {
    background-color: white;
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
}

.thanks-box h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-box p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-selected {
    font-weight: 700;
    color: #3498db;
}

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.page-header {
    background-color: #34495e;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
}

.content-section {
    padding: 80px 0;
    background-color: white;
}

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

.content-section h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #34495e;
}

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

.content-section ul {
    margin-bottom: 25px;
    padding-left: 30px;
}

.content-section ul li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.contact-info-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    background-color: #e0e0e0;
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
}

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

    .hamburger {
        display: flex;
    }

    .nav-main.mobile-open {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 15px;
    }

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

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

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

    .exp-grid-three {
        flex-direction: column;
    }

    .services-split {
        flex-direction: column;
    }

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

    .form-wrapper {
        padding: 30px 20px;
    }

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

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