/* GENERAL PAGE SETUP -------------------------------------------------- */

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    min-height: 100vh;
    background: linear-gradient(180deg, #4E8BBE 0%, #0D2B4D 100%);
    background-attachment: fixed;
    background-size: cover;
    font-family: "Inter", Arial, sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* HERO -------------------------------------------------- */

.hero {
    text-align: center;
    padding-top: 60px;
}

.hero-logo {
    width: 130px;
    opacity: 0.95;
    margin-bottom: 10px;
}

.hero h1 {
    margin: 10px 0 0 0;
    font-size: 54px;
    font-weight: 700;
}

.hero h2 {
    margin-top: 10px;
    font-size: 22px;
    font-weight: 400;
}

.subtitle {
    max-width: 600px;
    margin: 14px auto 26px auto;
    font-size: 15px;
    opacity: 0.9;
}


/* CTA BUTTON -------------------------------------------------- */

.cta-button {
    background: white;
    color: #0d2b4d;
    padding: 12px 26px;
    border-radius: 6px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: 0.2s ease;
    font-weight: 600;
}

.cta-button:hover {
    background: #d9e8f5;
}


/* CAROUSEL -------------------------------------------------- */

.carousel-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.carousel {
    width: 900px;
    height: 460px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}


/* VALUE SECTION -------------------------------------------------- */

.value-section {
    text-align: center;
    padding: 60px 20px 30px;
}

.value-section h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.value-section p {
    font-size: 15px;
    max-width: 650px;
    margin: 0 auto;
    opacity: 0.9;
}


/* FOOTER -------------------------------------------------- */

.footer {
    width: 100%;
    text-align: center;
    padding: 25px 0 40px;
    margin-top: auto;
    font-size: 12px;
    opacity: 0.7;
}
