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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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 {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    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);
}

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

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

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-disclosure {
    flex: 1;
    text-align: center;
}

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

.hero-visual {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    font-weight: 300;
    opacity: 0.95;
}

.hero-cta {
    padding: 16px 40px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-cta:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.intro-narrative {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.intro-narrative h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.intro-narrative p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #34495e;
    line-height: 1.8;
}

.experiences-showcase {
    padding: 100px 20px;
    background-color: #ffffff;
}

.section-header-offset {
    margin-bottom: 60px;
}

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-header-offset p {
    font-size: 18px;
    color: #7f8c8d;
}

.experience-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

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

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

.card-image-wrap {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #95a5a6;
}

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

.card-content {
    padding: 28px;
}

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

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

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

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

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

.select-service-btn.selected {
    background-color: #27ae60;
}

.trust-builder {
    padding: 100px 20px;
    background-color: #ecf0f1;
}

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

.trust-image {
    flex: 1;
    background-color: #bdc3c7;
}

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

.trust-text {
    flex: 1;
}

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

.trust-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #34495e;
}

blockquote {
    margin: 40px 0;
    padding: 24px;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
    font-style: italic;
}

blockquote p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

cite {
    font-style: normal;
    font-weight: 600;
    color: #7f8c8d;
    font-size: 14px;
}

.booking-flow {
    padding: 100px 20px;
    background-color: #ffffff;
}

.booking-flow h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c3e50;
    text-align: center;
}

.booking-flow > p {
    font-size: 17px;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 50px;
}

.booking-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #ecf0f1;
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-box {
    padding: 24px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.thanks-box {
    max-width: 600px;
    text-align: center;
    background-color: #f8f9fa;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.thanks-box p {
    font-size: 18px;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-box .service-detail {
    font-weight: 600;
    color: #2c3e50;
    font-size: 20px;
    margin: 24px 0;
}

.thanks-box .back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.page-header p {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    padding: 60px 20px;
}

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

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

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.content-section ul {
    margin: 16px 0 16px 24px;
}

.content-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.contact-info {
    padding: 80px 20px;
}

.contact-details {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

.detail-item {
    margin-bottom: 28px;
}

.detail-item h3 {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.detail-item p {
    font-size: 18px;
    color: #2c3e50;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 16px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

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

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

    .trust-content-split {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}