* {
    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;
}

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e6ed;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f7a;
    letter-spacing: -0.5px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

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

.main-nav a:hover {
    color: #2c5f7a;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    background-color: #f8f9fa;
    padding: 6px 12px;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    position: relative;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 122, 0.4), rgba(52, 73, 94, 0.3));
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a2332;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a5568;
}

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

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

.btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #2c5f7a;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #2c5f7a;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.split-intro {
    display: flex;
    min-height: 500px;
}

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

.split-content-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a2332;
    line-height: 1.3;
}

.split-content-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

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

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

.split-content-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.split-content-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a2332;
    line-height: 1.3;
}

.split-content-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 24px;
}

.services-preview {
    padding: 100px 0;
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a2332;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a2332;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
}

.service-price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #2c5f7a;
}

.split-cta {
    display: flex;
    min-height: 500px;
}

.booking-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.booking-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.booking-intro {
    text-align: center;
    margin-bottom: 48px;
}

.booking-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a2332;
}

.booking-intro p {
    font-size: 17px;
    color: #4a5568;
}

.travel-form {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 16px;
    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: #2c5f7a;
}

.btn-submit {
    width: 100%;
    background-color: #2c5f7a;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #234a5e;
    transform: translateY(-1px);
}

.footer {
    background-color: #1a2332;
    color: #cbd5e0;
    padding: 60px 0 32px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 40px;
}

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

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

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 24px;
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #a0aec0;
}

.footer-bottom p {
    font-size: 13px;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2332;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-cookie {
    background-color: #2c5f7a;
    color: #ffffff;
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie:hover {
    background-color: #234a5e;
}

.btn-cookie-outline {
    background-color: transparent;
    color: #ffffff;
    padding: 10px 24px;
    border: 2px solid #ffffff;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.page-hero {
    padding: 100px 0 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a2332;
}

.page-hero p {
    font-size: 18px;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail-item {
    display: flex;
    min-height: 500px;
    margin-bottom: 80px;
}

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

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

.service-detail-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a2332;
}

.service-price-large {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f7a;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    font-size: 16px;
    color: #4a5568;
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f7a;
    font-weight: 700;
}

.services-cta {
    padding: 80px 0;
    background-color: #2c5f7a;
    text-align: center;
    color: #ffffff;
}

.services-cta h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-split {
    display: flex;
    min-height: 500px;
}

.about-hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a2332;
    line-height: 1.2;
}

.about-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
}

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

.about-story {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.story-content h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a2332;
}

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

.about-split-values {
    display: flex;
    min-height: 500px;
}

.about-team {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.about-team h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 24px;
    color: #1a2332;
}

.team-intro {
    font-size: 17px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #4a5568;
    line-height: 1.8;
}

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

.team-member {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    max-width: 360px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.team-image {
    height: 280px;
    background-size: cover;
    background-position: center;
}

.team-member h3 {
    font-size: 20px;
    padding: 24px 24px 12px;
    color: #1a2332;
}

.team-member p {
    font-size: 15px;
    padding: 0 24px 24px;
    color: #4a5568;
    line-height: 1.6;
}

.about-difference {
    padding: 100px 0;
    background-color: #ffffff;
}

.difference-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a2332;
}

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

.difference-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.difference-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a2332;
}

.difference-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.about-cta-split {
    display: flex;
    min-height: 500px;
}

.contact-hero {
    padding: 100px 0 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a2332;
}

.contact-hero p {
    font-size: 18px;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

.contact-split-section {
    display: flex;
    min-height: 600px;
}

.contact-info-side {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.contact-details {
    max-width: 500px;
}

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

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a2332;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-email {
    color: #2c5f7a;
    font-weight: 600;
}

.contact-map-side {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 95, 122, 0.15);
}

.contact-approach {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.contact-approach h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a2332;
}

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

.approach-step {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    display: flex;
    gap: 20px;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: #2c5f7a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.approach-step h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a2332;
}

.approach-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-cta {
    padding: 80px 0;
    background-color: #2c5f7a;
    text-align: center;
    color: #ffffff;
}

.contact-cta h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a2332;
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 6px;
    margin: 32px 0;
}

.thanks-next-steps {
    margin: 40px 0;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a2332;
}

.thanks-next-steps ul {
    list-style: none;
    padding-left: 0;
}

.thanks-next-steps li {
    font-size: 16px;
    color: #4a5568;
    padding-left: 32px;
    position: relative;
    margin-bottom: 16px;
    line-height: 1.6;
}

.thanks-next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5f7a;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a2332;
}

.legal-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a2332;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .hero-split,
    .split-intro,
    .split-cta,
    .about-hero-split,
    .about-split-values,
    .about-cta-split,
    .contact-split-section,
    .service-detail-item {
        flex-direction: column;
    }

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

    .hero-text,
    .split-content-left,
    .split-content-right,
    .about-hero-content,
    .contact-info-side,
    .service-detail-content {
        padding: 40px 24px;
    }

    .hero-text h1,
    .about-hero-content h1,
    .contact-hero h1,
    .page-hero h1 {
        font-size: 32px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 16px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .team-member,
    .difference-item,
    .approach-step {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .travel-form {
        padding: 32px 24px;
    }

    .thanks-content {
        padding: 40px 24px;
    }
}