* {
    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;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    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;
}

.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: #27ae60;
    color: white;
}

.btn-accept:hover {
    background: #229954;
}

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

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.brand {
    font-size: 20px;
    font-weight: 700;
    color: #1a5490;
}

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

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

.nav-links a:hover {
    color: #1a5490;
}

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

.hero-visual {
    width: 100%;
    height: 100vh;
    position: relative;
}

.hero-image-overlay {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #2c3e50;
}

.hero-image-overlay::before {
    content: '';
    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.5));
}

.hero-text-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text-overlay h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-text-overlay p {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.4;
}

.narrative-intro {
    padding: 120px 20px;
    background: #fafafa;
}

.story-block {
    max-width: 700px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.8;
    color: #34495e;
}

.story-block p {
    margin-bottom: 30px;
}

.image-dominant-section {
    width: 100%;
    margin: 0;
}

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

.visual-block {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #34495e;
}

.text-overlay-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: #1a5490;
    color: white;
}

.text-overlay-right h2 {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.text-overlay-right p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta-inline {
    display: inline-block;
    padding: 14px 32px;
    background: white;
    color: #1a5490;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-inline:hover {
    background: #ecf0f1;
    transform: translateY(-2px);
}

.minimal-spacing {
    padding: 100px 20px;
    background: white;
}

.centered-statement {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.centered-statement h2 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
}

.visual-cards-stacked {
    padding: 0;
}

.card-visual {
    width: 100%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

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

.card-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
    padding: 60px 40px;
    color: white;
}

.card-overlay-text h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.card-overlay-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 600px;
}

.select-service {
    padding: 12px 28px;
    background: white;
    color: #2c3e50;
    border: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #ecf0f1;
    transform: translateY(-2px);
}

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

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
}

.trust-content > p {
    font-size: 20px;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 60px;
    color: #34495e;
}

.trust-points {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.point {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
}

.point h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a5490;
}

.point p {
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
}

.testimonials-inline {
    padding: 100px 20px;
    background: white;
}

.testimonial-block {
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 40px;
    border-left: 4px solid #1a5490;
    background: #fafafa;
}

.testimonial-block blockquote {
    font-size: 19px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-block cite {
    font-size: 15px;
    color: #7f8c8d;
    font-style: normal;
}

.pricing-reveal {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a5490 0%, #2980b9 100%);
    color: white;
}

.pricing-container h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
}

.price-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.price-item {
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.price-item .price {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.price-item .duration {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
}

.booking-section {
    padding: 100px 20px;
    background: #fafafa;
}

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

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

.booking-form {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.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: 14px;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background: #154070;
    transform: translateY(-2px);
}

.final-cta {
    padding: 120px 20px;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 52px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 22px;
    font-weight: 300;
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

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

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #7f8c8d;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border-radius: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

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

    .split-visual {
        flex-direction: column;
    }

    .text-overlay-right {
        padding: 50px 30px;
    }

    .text-overlay-right h2 {
        font-size: 32px;
    }

    .centered-statement h2 {
        font-size: 32px;
    }

    .trust-points {
        flex-direction: column;
    }

    .price-grid {
        flex-direction: column;
    }

    .price-item {
        max-width: 100%;
    }
}