body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #e5f0fb;
    overflow-x: hidden;
}

/* CENTERING CONTAINER */
.container {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

/* ---------------- NAVBAR ---------------- */
.navbar {
    width: 100%;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: #0a2a4f;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #0a2a4f;
    font-size: 17px;
    transition: 0.2s;
}

.nav-links a:hover {
    color: #1c74f8;
}

.nav-btns {
    display: flex;
    gap: 12px;
}

.btn-outline,
.btn-primary {
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

.btn-outline {
    border: 2px solid #1c74f8;
    color: #1c74f8;
}

.btn-outline:hover {
    background: #1c74f8;
    color: white;
}

.btn-primary {
    background: #1c74f8;
    color: white;
}

.btn-primary:hover {
    opacity: 0.85;
}

/* ---------------- HERO SECTION ---------------- */
.hero {
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #0a2a4f;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    max-width: 450px;
    color: #334;
}

.btn-hero {
    margin-top: 25px;
    display: inline-block;
    padding: 14px 35px;
    background: #1c74f8;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.btn-hero:hover {
    opacity: 0.85;
}

/* ---------------- IMAGE ---------------- */
.hero-images {
    display: flex;
    justify-content: center;
}

.hero-illustration {
    width: 400px;
    transition: 0.3s;
}

.hero-illustration:hover {
    transform: scale(1.05);
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1000px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-illustration {
        width: 300px;
        margin-top: 30px;
    }
}

@media (max-width: 700px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-illustration {
        width: 240px;
    }
}
