#narrative {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.mt-4 {
    margin-top: 1rem;
}

/* Hero Styles */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(10, 25, 48, 0.9), rgba(0, 113, 188, 0.4));
    z-index: 10;
}

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

.hero-content {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    z-index: 20;
    position: relative;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background-color: hsla(0, 0%, 100%, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.hero-desc {
    font-size: 1.25rem;
    color: rgb(229, 231, 235);
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1.75rem;
}

@media (min-width: 800px) {
    .hero-title {
        font-size: 4.5rem;
        line-height: 1;
    }
}

@media (max-width: 600px) {
    .hero-content {
        padding-left: 0;
        padding-right: 0;
    }
}