* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

header {
    background: #004080;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.subheading {
    font-size: 14px;
    margin-top: 5px;
}

nav {
    margin-top: 10px;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    background: #003366;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
}

.section {
    padding: 40px 0;
    background: white;
}

.section h2 {
    margin-bottom: 20px;
    text-align: center;
    color: #004080;
}

.section ul {
    list-style: disc;
    margin-left: 40px;
}

#about p,
#academics li,
#contact p {
    margin-bottom: 15px;
}

.facility-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #f9f9f9;
}

.facility-table th,
.facility-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

.facility-table th {
    background-color: #004080;
    color: white;
}

.gallery {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px 0;
}
