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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    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: 1rem;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.btn-cookie-accept {
    background-color: #2ecc71;
    color: #ffffff;
}

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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

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

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

.hero-magazine {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #34495e;
}

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

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 100%;
}

.hero-text-block {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    max-width: 600px;
    margin-left: 5%;
}

.hero-text-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.intro-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.intro-column-main {
    flex: 2;
    min-width: 300px;
}

.intro-column-main h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-column-main p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.intro-column-side {
    flex: 1;
    min-width: 280px;
}

.highlight-card {
    background-color: #ecf0f1;
    padding: 2rem;
    border-left: 4px solid #3498db;
}

.highlight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.benefit-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.benefit-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
}

.featured-destinations {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.section-title-offset {
    max-width: 1400px;
    margin: 0 auto 2rem 10%;
    font-size: 2.5rem;
    color: #2c3e50;
}

.destination-showcase {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.dest-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    background-color: #34495e;
}

.dest-large {
    flex: 2;
    min-width: 400px;
    min-height: 500px;
}

.dest-medium {
    flex: 1;
    min-width: 300px;
    min-height: 500px;
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.dest-card:hover img {
    transform: scale(1.05);
}

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

.dest-overlay h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.dest-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

.services-preview {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.services-intro-block {
    margin-bottom: 3rem;
    margin-left: 15%;
    max-width: 700px;
}

.services-intro-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-intro-block p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.services-magazine-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card-mag {
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card-mag:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card-mag img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.price-tag {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1rem;
}

.btn-service-select {
    width: 100%;
    padding: 0.8rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.booking-form-section {
    background-color: #2c3e50;
    padding: 5rem 2rem;
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto 0 20%;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 4px;
}

.form-container-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-intro {
    margin-bottom: 2rem;
    color: #7f8c8d;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.testimonials-grid h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonial-layout {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: #ecf0f1;
    padding: 2rem;
    border-left: 3px solid #3498db;
    font-style: italic;
}

.testimonial p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #2c3e50;
}

.disclaimer-section {
    background-color: #f8f9fa;
    padding: 3rem 2rem;
}

.disclaimer-text {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.8;
    text-align: center;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

.email-text {
    color: #ecf0f1;
    cursor: default;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 0.9rem;
    color: #95a5a6;
}

.page-hero-about,
.page-hero-services,
.page-hero-contact {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: #ffffff;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.page-hero-content h1,
.page-hero-services h1,
.page-hero-contact h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p,
.hero-sub {
    font-size: 1.3rem;
    opacity: 0.9;
}

.story-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

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

.story-text-primary h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-text-primary p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.story-image-block {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
}

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

.values-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.values-section h2 {
    max-width: 1400px;
    margin: 0 auto 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
}

.values-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-block {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background-color: #ffffff;
    border-top: 3px solid #3498db;
}

.value-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-block p {
    font-size: 1rem;
    color: #34495e;
}

.team-approach {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.team-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.team-content {
    flex: 2;
    min-width: 300px;
}

.team-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.team-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.team-visual {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
}

.team-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.commitment-block {
    background-color: #ecf0f1;
    padding: 4rem 2rem;
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.commitment-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

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

.service-visual {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
}

.service-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

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

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price-display {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.service-info p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.service-info h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.inclusion-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.inclusion-list li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
}

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

.booking-cta-section {
    background-color: #ecf0f1;
    padding: 4rem 2rem;
}

.cta-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-content-centered p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #7f8c8d;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.contact-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-split {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 2;
    min-width: 300px;
}

.contact-info-block h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.info-section {
    margin-bottom: 2.5rem;
}

.info-section h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.info-section p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.8;
}

.address-text {
    line-height: 1.8;
}

.info-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

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

.highlight-box {
    background-color: #ecf0f1;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 3px solid #3498db;
}

.highlight-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.highlight-box p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.faq-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    background-color: #ffffff;
    padding: 2rem;
    border-top: 2px solid #3498db;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 0.95rem;
    color: #34495e;
}

.thanks-hero {
    background: linear-gradient(135deg, #27ae60, #2c3e50);
    color: #ffffff;
    padding: 5rem 2rem;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    opacity: 0.9;
}

.thanks-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.thanks-info-blocks {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.thanks-block {
    flex: 1;
    min-width: 280px;
    background-color: #ecf0f1;
    padding: 2rem;
}

.thanks-block h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-block p {
    font-size: 1rem;
    color: #34495e;
}

.thanks-cta {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #f8f9fa;
}

.thanks-cta h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.thanks-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-thanks-link {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.legal-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-intro {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-container p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.8;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-container li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #34495e;
    line-height: 1.8;
}

.legal-container a {
    color: #3498db;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #2980b9;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

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

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

    .destination-showcase {
        flex-direction: column;
    }

    .dest-large,
    .dest-medium {
        min-width: 100%;
    }

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

    .service-card-mag {
        max-width: 100%;
    }

    .form-container-offset {
        margin: 0 auto;
    }

    .testimonial-layout {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

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

    .story-grid,
    .team-layout {
        flex-direction: column;
    }

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

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

    .thanks-links {
        flex-direction: column;
        align-items: center;
    }
}
