* {
    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.7;
    color: #2a2a2a;
    background: #fafafa;
}

.ad-disclosure {
    background: #1a1a1a;
    color: #f0f0f0;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    position: relative;
    z-index: 100;
}

.nav-floating {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 90;
}

.nav-logo {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.6;
}

.hero-visual {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #3a4a5a;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
}

.hero-overlay h1 {
    font-size: 72px;
    font-weight: 300;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
}

.intro-narrative {
    max-width: 720px;
    margin: 0 auto;
    padding: 120px 40px;
}

.narrative-text {
    text-align: center;
}

.lead-text {
    font-size: 26px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.narrative-text p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.visual-insight {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto 150px;
    padding: 0 40px;
}

.insight-image {
    flex: 1;
    background: #d4d8dc;
}

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

.insight-content {
    flex: 1;
}

.insight-content h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.insight-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #3a3a3a;
}

.insight-content a {
    color: #2a5a8a;
    text-decoration: none;
}

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

.services-preview {
    background: white;
    padding: 100px 40px 120px;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #6a6a6a;
    margin-bottom: 70px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    background: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 24px);
    min-width: 340px;
    transition: transform 0.3s;
}

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

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

.service-card h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 25px 25px 15px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0 25px 20px;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 25px 20px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.service-duration {
    font-size: 14px;
    color: #7a7a7a;
}

.service-price {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
}

.btn-select {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background: #2a2a2a;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #4a4a4a;
}

.trust-build {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 40px;
}

.trust-content h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: -1px;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 40px;
}

.testimonial {
    background: #f5f7f9;
    padding: 40px;
    margin: 40px 0;
    border-left: 3px solid #2a5a8a;
    font-style: italic;
}

.testimonial p {
    font-size: 18px;
    color: #2a2a2a;
    margin-bottom: 15px;
}

.testimonial cite {
    font-style: normal;
    font-size: 15px;
    color: #6a6a6a;
}

.approach-explanation {
    background: #1a1a1a;
    color: white;
    padding: 100px 40px;
}

.approach-grid {
    display: flex;
    align-items: center;
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 22px;
}

.approach-text a {
    color: #7a9aba;
    text-decoration: none;
}

.approach-text a:hover {
    text-decoration: underline;
}

.approach-visual {
    flex: 1;
    background: #3a4a5a;
}

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

.booking-section {
    background: white;
    padding: 100px 40px;
}

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

.booking-container h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: -1px;
}

.booking-container > p {
    text-align: center;
    font-size: 17px;
    color: #5a5a5a;
    margin-bottom: 50px;
}

.journey-form {
    background: #fafafa;
    padding: 50px;
    border-radius: 10px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-family: inherit;
    background: white;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2a5a8a;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #3a6a9a;
}

.disclaimer-section {
    background: #f5f5f5;
    padding: 60px 40px;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #5a5a5a;
    text-align: center;
}

.site-footer {
    background: #1a1a1a;
    color: #d0d0d0;
    padding: 80px 40px 40px;
}

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

.footer-brand h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    color: white;
}

.footer-brand p {
    font-size: 15px;
    color: #9a9a9a;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    color: white;
}

.footer-column a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-references {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding-top: 40px;
    border-top: 1px solid #3a3a3a;
}

.footer-references h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    color: white;
}

.footer-references ol {
    padding-left: 20px;
}

.footer-references li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #9a9a9a;
}

.footer-references a {
    color: #7a9aba;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #3a3a3a;
    text-align: center;
    font-size: 14px;
    color: #8a8a8a;
}

.footer-bottom p {
    margin-bottom: 5px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(10px);
    padding: 25px 40px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    color: #d0d0d0;
    font-size: 15px;
    flex: 1;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background: #2a5a8a;
    color: white;
}

.btn-cookie-accept:hover {
    background: #3a6a9a;
}

.btn-cookie-reject {
    background: transparent;
    color: #d0d0d0;
    border: 1px solid #5a5a5a;
}

.btn-cookie-reject:hover {
    border-color: #8a8a8a;
}

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

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

.thanks-content h1 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.thanks-service {
    background: #f5f7f9;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 17px;
    color: #2a2a2a;
}

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 40px;
    background: #2a5a8a;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    transition: background 0.3s;
}

.btn-home:hover {
    background: #3a6a9a;
}

.page-header {
    padding: 150px 40px 80px;
    text-align: center;
    background: linear-gradient(135deg, #2a5a8a 0%, #1a3a5a 100%);
    color: white;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 300;
    letter-spacing: -2px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

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

.page-content h2 {
    font-size: 32px;
    font-weight: 400;
    margin: 50px 0 20px;
    letter-spacing: -0.5px;
}

.page-content h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 35px 0 15px;
}

.page-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 18px;
}

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 30px;
}

.page-content li {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 10px;
}

.contact-info {
    background: #f5f7f9;
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 17px;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .nav-floating {
        top: 40px;
        padding: 12px 20px;
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-overlay h1 {
        font-size: 42px;
    }

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

    .visual-insight {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }

    .service-card {
        width: 100%;
        min-width: auto;
    }

    .approach-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

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

    .page-header h1 {
        font-size: 38px;
    }
}