body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #0000ff;
    color: white;
    padding: 20px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header img {
    height: 50px;
    margin-left: 20px;
}

header h1 {
    margin: 0;
    flex-grow: 1;
}

nav {
    margin-right: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
    text-align: center;
}

main h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

main p {
    font-size: 18px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}
.academics h3 {
    font-size: 20px;
    margin-top: 20px;
}

.academics ul {
    text-align: left;
    display: inline-block;
    margin: 0 auto;
    list-style-type: disc;
    padding-left: 20px;
}
section {
    margin-bottom: 40px;
}

.about-us h3 {
    font-size: 20px;
    margin-top: 20px;
}

.about-us ul {
    text-align: left;
    display: inline-block;
    margin: 0 auto;
    list-style-type: disc;
    padding-left: 20px;
}

form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form input[type="submit"] {
    background-color: #0000ff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background-color: #000099;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery img {
    margin: 10px;
    height: 200px;
    width: auto;
}
