* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* COLORS */
:root {
    --navy: #0b1f3a;
    --orange: #ff7a00;
    --light: #f4f6fb;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 60px;
    background: var(--navy);
    color: white;
}

.navbar a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

.btn-outline {
    border: 1px solid white;
    padding: 6px 12px;
    border-radius: 5px;
}

/* HERO */
.hero {
    height: 90vh;
    background: url('https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d') center/cover no-repeat;
    position: relative;
}

.overlay {
    background: rgba(11, 31, 58, 0.8);
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.overlay h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.search-box {
    margin-top: 20px;
}

.search-box input {
    padding: 12px;
    width: 250px;
    border: none;
}

.search-box button {
    padding: 12px 15px;
    background: var(--orange);
    border: none;
    color: white;
}

/* FEATURES */
.features {
    display: flex;
    padding: 60px;
    gap: 20px;
    background: var(--light);
}

.feature {
    text-align: center;
    flex: 1;
}

.feature img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* PROGRAMS */
.programs {
    padding: 60px;
    text-align: center;
}

.program-grid {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.card {
    flex: 1;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
    text-align: left;
}

.tag {
    background: var(--orange);
    color: white;
    padding: 4px 10px;
    font-size: 0.7rem;
    border-radius: 20px;
}

/* CTA */
.cta {
    background: var(--navy);
    color: white;
    text-align: center;
    padding: 50px;
}

.cta button {
    margin-top: 15px;
    padding: 12px 20px;
    background: var(--orange);
    border: none;
    color: white;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: white;
}