* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f6f8;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #10827e;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Navigation */
nav {
    background-color: #d8d8d8;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 15px;
}

nav ul li a {
    color: rgb(17, 53, 62);
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Section */
.section {
    padding: 40px;
    background-color: white;
    margin: 20px auto;
    width: 80%;
    border-radius: 5px;
}

.section h2 {
    color:  rgb(50, 180, 203);
    margin-bottom: 15px;
}

/* Cards */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.card {
    background-color: #e6f0ff;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
}

/* Departments */
.dept-list {
    list-style: square;
    padding-left: 20px;
}

/* Contact Form */
.contact-form {
    margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

.contact-form button {
    background-color: #003366;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0059b3;
}

/* Footer */
footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}
