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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.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: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #e8b968;
    color: #2c3e50;
}

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

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

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

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 8px;
    background-color: #f8f9fa;
    border-radius: 3px;
    margin: 0 20px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

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

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: #5a6c7d;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #c5d3dd;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #e8b968;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #2c3e50;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.cta-text {
    display: inline-block;
    color: #e8b968;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #e8b968;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.cta-text:hover {
    color: #d4a556;
    border-bottom-color: #d4a556;
}

.split-reverse,
.split-standard {
    display: flex;
    min-height: 500px;
}

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

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #c5d3dd;
}

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

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

.split-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.split-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.services-preview {
    padding: 80px 40px;
    background-color: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
}

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

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.services-intro p {
    font-size: 18px;
    color: #5a6c7d;
}

.service-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

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

.service-card h3 {
    font-size: 24px;
    padding: 24px 24px 12px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 24px;
    color: #5a6c7d;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    padding: 16px 24px 24px;
    font-size: 20px;
    font-weight: 700;
    color: #e8b968;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.testimonial-block {
    background-color: #2c3e50;
    padding: 80px 40px;
    color: #ffffff;
}

.testimonial-block blockquote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-block p {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-block cite {
    font-size: 16px;
    font-style: normal;
    color: #e8b968;
}

.form-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 16px;
    color: #5a6c7d;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    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: #e8b968;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #e8b968;
    color: #2c3e50;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 20px;
}

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

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

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

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

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

.footer-section a {
    color: #b2bec3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e8b968;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(0,0,0,0.2);
    border-radius: 4px;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #b2bec3;
}

.page-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2c3e50;
}

.page-hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
    padding: 0 40px;
}

.hero-overlay h1 {
    font-size: 56px;
    margin-bottom: 16px;
}

.hero-overlay p {
    font-size: 20px;
}

.page-header-simple {
    padding: 60px 40px;
    text-align: center;
    background-color: #f8f9fa;
}

.page-header-simple h1 {
    font-size: 48px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.page-header-simple p {
    font-size: 18px;
    color: #5a6c7d;
}

.values-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-item {
    flex: 1;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.value-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
}

.team-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-section p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
}

.team-highlight {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #e8b968;
}

.team-highlight p {
    font-size: 18px;
    color: #2c3e50;
    font-style: italic;
}

.commitment-block {
    padding: 80px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.commitment-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.commitment-content ul {
    list-style: none;
    margin-bottom: 40px;
}

.commitment-content li {
    padding: 16px 0 16px 30px;
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
    position: relative;
}

.commitment-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e8b968;
    font-weight: 700;
    font-size: 20px;
}

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

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.service-detail-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-detail-content li {
    margin-bottom: 10px;
    color: #5a6c7d;
    line-height: 1.6;
}

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #c5d3dd;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.pricing-block {
    margin-top: 30px;
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #e8b968;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.price-amount {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #e8b968;
    margin-bottom: 8px;
}

.price-note {
    display: block;
    font-size: 13px;
    color: #7f8c8d;
}

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

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

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

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.contact-detail .note {
    font-size: 14px;
    margin-top: 8px;
    font-style: italic;
    color: #7f8c8d;
}

.contact-image-block {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-color: #c5d3dd;
}

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

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

.contact-overlay-text h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.contact-overlay-text p {
    font-size: 14px;
    line-height: 1.6;
}

.map-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: #f8f9fa;
}

.map-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #2c3e50;
}

.map-section > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    color: #5a6c7d;
}

.map-placeholder {
    height: 400px;
    background-color: #c5d3dd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    font-size: 18px;
    color: #2c3e50;
}

.accessibility-info {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
}

.accessibility-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.accessibility-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
}

.thanks-hero {
    display: flex;
    min-height: 500px;
    background-color: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.thanks-details {
    padding: 20px;
    background-color: #ffffff;
    border-left: 4px solid #e8b968;
    border-radius: 4px;
}

.thanks-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #c5d3dd;
}

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

.next-steps {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.next-steps h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.step-item {
    flex: 1;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.step-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
}

.thanks-cta {
    padding: 80px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.thanks-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #5a6c7d;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

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

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

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #5a6c7d;
}

.legal-content a {
    color: #e8b968;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

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

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

.cookie-table td {
    color: #5a6c7d;
    font-size: 14px;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .ad-disclosure {
        margin: 0;
    }

    .main-nav {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-split,
    .split-reverse,
    .split-standard {
        flex-direction: column;
    }

    .service-cards {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
    }

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

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

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

    .cta-buttons {
        flex-direction: column;
    }
}