body {
    font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.65;
    color: #1E1E1E;
}

/* Navbar */
.user-icon {
    color: rgba(255,255,255,0.55) !important;
    font-weight: 500 !important;
}

.navbar .user-icon:hover {
    color: rgba(255,255,255,0.75) !important;
}

/* Hero */
.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, #081F2C, #005BBB);
    padding-top: 80px;
    color: white;
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
}

    .card h5 {
        color: #005BBB;
    }

/* Buttons */
.btn-primary {
    background-color: #005BBB;
    border-color: #005BBB;
}

    .btn-primary:hover {
        background-color: #004999;
        border-color: #004999;
    }

/* Footer */
footer {
    background: #081F2C;
    color: white;
}
/* Prevent anchor targets from hiding behind navbar */
section {
    scroll-margin-top: 100px; /* matches navbar height */
}