/* General Body Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif; /* Modern, readable font */
    background: #f8f9fa; /* Light grey background for a soft look */
    color: #212529; /* Soft black for main text */
    margin-top: 80px; /* Provide space for fixed navbar */
}

/* Header and Navigation Styles */
header .navbar {
    background-color: #0056b3; /* University's color theme */
    border-bottom: 3px solid #ffc107; /* Accent color for visual separation */
}

.nav-link {
    color: #ffffff;
    font-weight: bold;
}

.nav-link:hover, .nav-link.active {
    color: #ffc107; /* Highlight color for interactivity */
}

/* Main content area */
main {
    padding: 20px;
    text-align: center; /* Center aligning text for focus */
}

h1, h2, h3 {
    color: #0056b3; /* Ensuring headings are in the university's colors */
}

h1 {
    margin-bottom: 0.5em;
    font-size: 2.5rem; /* Larger font for main title */
}

h2 {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    font-size: 2rem; /* Subheading sizes */
}

p, li {
    font-size: 1.2rem; /* Readable text size */
    line-height: 1.6; /* Adequate spacing for readability */
}

/* Lists inside sections */
ul {
    text-align: left; /* Aligning text to the left in lists */
    margin: 0 auto;
    display: inline-block; /* Centering list */
}

/* Buttons and Links */
.btn-primary {
    background-color: #007bff; /* Bootstrap primary color */
    border: none;
    padding: 10px 20px;
    margin-top: 20px;
}

.btn-primary:hover {
    background-color: #0056b3; /* Darker shade on hover */
}

/* Footer Styling */
footer {
    background-color: #343a40; /* Dark footer for contrast */
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem; /* Smaller headings on mobile */
    }
    h2 {
        font-size: 1.5rem;
    }
    p, li {
        font-size: 1rem; /* Smaller text on mobile */
    }
}
