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

.ad-disclosure {
    background-color: #f7fafc;
    color: #4a5568;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #e2e8f0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c5f7c;
}

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

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

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

.hero-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
}

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

.cta-primary:hover {
    background-color: #234a5f;
}

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

.feature-split.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image img {
    width: 100%;
    height: 100%;
}

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

.feature-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

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

.services-intro {
    padding: 80px 60px;
    background-color: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a202c;
}

.services-header p {
    font-size: 18px;
    color: #718096;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-info {
    padding: 28px;
}

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

.service-info p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f7c;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 12px 24px;
    background-color: #2c5f7c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #234a5f;
}

.testimonial-split {
    display: flex;
    min-height: 450px;
}

.testimonial-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background-color: #f7fafc;
}

.testimonial-text {
    max-width: 500px;
}

.quote {
    font-size: 22px;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 16px;
    line-height: 1.6;
}

.author {
    font-size: 16px;
    color: #718096;
    font-weight: 600;
}

.testimonial-image {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
}

.form-section {
    padding: 80px 60px;
    background-color: #f7fafc;
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a202c;
}

.form-container > p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 40px;
}

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

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

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

.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;
}

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

.submit-btn {
    width: 100%;
    padding: 14px 32px;
    background-color: #2c5f7c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.main-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 40px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto 40px;
    gap: 40px;
}

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

.footer-section p {
    color: #cbd5e0;
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #2d3748;
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
    font-size: 14px;
}

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

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

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

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

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.cookie-accept:hover {
    background-color: #234a5f;
}

.cookie-reject {
    background-color: #4a5568;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #2d3748;
}

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

.about-hero-content,
.services-hero-content,
.contact-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.about-hero-content h1,
.services-hero-content h1,
.contact-hero-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a202c;
}

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

.about-hero-image,
.services-hero-image,
.contact-hero-image {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-image img,
.services-hero-image img,
.contact-hero-image img {
    width: 100%;
    height: 100%;
}

.mission-split,
.team-split {
    display: flex;
    min-height: 500px;
}

.mission-split.reverse {
    flex-direction: row-reverse;
}

.mission-image,
.team-image {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-image img,
.team-image img {
    width: 100%;
    height: 100%;
}

.mission-content,
.team-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: #f7fafc;
}

.mission-content h2,
.team-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

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

.values-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-header h2 {
    font-size: 40px;
    color: #1a202c;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background-color: #f7fafc;
    border-radius: 8px;
}

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

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

.detailed-services {
    padding: 60px 40px;
    background-color: #f7fafc;
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-split {
    display: flex;
    min-height: 450px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.service-detail-image {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-detail-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.service-includes {
    list-style: none;
    margin-bottom: 28px;
}

.service-includes li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #4a5568;
}

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

.service-detail-price {
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 16px;
    color: #718096;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f7c;
}

.services-cta-section {
    padding: 80px 60px;
    background-color: #2c5f7c;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 16px;
}

.services-cta-content p {
    font-size: 18px;
    color: #e6f2f7;
    margin-bottom: 32px;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #2c5f7c;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #f7fafc;
}

.contact-info-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

.contact-info-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a202c;
}

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

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

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

.contact-map-placeholder {
    flex: 1;
    min-height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    padding: 40px;
}

.map-overlay p {
    font-size: 18px;
    color: #2d3748;
}

.thanks-section {
    padding: 120px 60px;
    background-color: #f7fafc;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    text-align: center;
    max-width: 600px;
}

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

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a202c;
}

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.selected-service-info {
    font-size: 17px;
    color: #2c5f7c;
    font-weight: 600;
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #2c5f7c;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #234a5f;
}

.btn-secondary {
    background-color: #ffffff;
    color: #2c5f7c;
    border: 2px solid #2c5f7c;
}

.btn-secondary:hover {
    background-color: #f7fafc;
}

.legal-content {
    padding: 80px 60px;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a202c;
}

.legal-intro {
    font-size: 18px;
    color: #718096;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2d3748;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #4a5568;
}

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

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-container ul li {
    margin-bottom: 8px;
    color: #4a5568;
    line-height: 1.6;
}

.legal-container a {
    color: #2c5f7c;
    text-decoration: underline;
}

.legal-date {
    margin-top: 40px;
    font-style: italic;
    color: #718096;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.cookie-table th {
    background-color: #f7fafc;
    font-weight: 600;
    color: #2d3748;
}

.cookie-table td {
    color: #4a5568;
}

@media (max-width: 768px) {
    .hero-split,
    .feature-split,
    .testimonial-split,
    .mission-split,
    .team-split,
    .service-detail-split,
    .about-hero-split,
    .services-hero-split,
    .contact-hero-split,
    .contact-info-split {
        flex-direction: column;
    }

    .feature-split.reverse,
    .mission-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .feature-content,
    .mission-content,
    .team-content,
    .service-detail-content {
        padding: 40px 24px;
    }

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

    .services-intro,
    .values-section,
    .detailed-services,
    .form-section {
        padding: 60px 24px;
    }

    .services-grid,
    .values-grid {
        flex-direction: column;
    }

    .nav-links {
        gap: 16px;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}