body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.topbar {
    background: #0B2E59;
    color: #fff;
    padding: 10px 0;
}

.apply-btn {
    float: right;
    background: #C9A227;
    padding: 6px 12px;
    color: #fff;
    text-decoration: none;
}

.navbar {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #0B2E59;
    font-weight: 600;
}

.hero {
    background: linear-gradient(rgba(11,46,89,0.8), rgba(11,46,89,0.8)),
                url('../images/campus.jpg') center/cover no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.btn-primary {
    background: #C9A227;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.about, .cta {
    padding: 60px 0;
    text-align: center;
}

.cta {
    background: #0B2E59;
    color: #fff;
}

.btn-gold {
    background: #C9A227;
    padding: 12px 25px;
    color: #fff;
    text-decoration: none;
}