/* Custom font and base styling */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f7f9fb;
}

/* Custom colors for a professional, academic feel */
.color-primary {
    background-color: #1e3a8a;
    /* Deep Blue */
}

.text-primary {
    color: #1e3a8a;
}

.color-accent {
    background-color: #0d9488;
    /* Teal */
}

.text-accent {
    color: #0d9488;
}

.btn-primary {
    background-color: #1e3a8a;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #102353;
}