body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #e6e4fb;
}

/* Header with Logo and Photos */
.header {
  background-color: #000066;
  color: rgb(240, 240, 240);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.header img {
  height: 100px;
}

.header .center-title {
  text-align: center;
  flex-grow: 1;
  color: rgb(255, 253, 253);
}

.header h1 {
  margin: 0;
  font-size: 22px;
}

.header h2 {
  margin: 0;
  font-size: 28px;
  color: gold;
}

/* Navbar */
.navbar {
  background-color: #3f1111;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.navbar a {
  color: white;
  text-decoration: none;
  padding: 14px 20px;
  font-size: 14px;
}

.navbar a:hover {
  background-color: #cc0000;
}

/* Department Title */
.dept-title {
  background-color: white;
  color: green;
  text-align: center;
  padding: 29px;
  font-weight: bold;
}

/* Main Content */
.content {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  background-color: #fff;
  text-align: justify;
}

/* Info & Image Section */
.info-section {
  display: flex;
  justify-content:center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.info-box, .image-box {
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  text-align:left;
}

.info-box h3 {
  color: #0000cc;
}

.info-box p {
  font-size: 14px;
  margin: 10px 0;
}

.image-box img {
  width: 100%;
  border-radius: 10px;
}

.image-box p {
  margin-top: 10px;
  font-size: 14px;
}

/* Footer */
.footer {
  background-color: #002060;
  color: #ffffff;
  padding: 5px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-section h3 {
  color: #ffcc00;
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-section ul1 {
  list-style: none;
  padding: 0;
}

.footer-section ul1 li {
  margin-bottom: 8px;
}

.footer-section ul1 li a {
  color: #e0c6c6;
  text-decoration: none;
}

.footer-section ul1 li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: #3f1111;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

.social-icons a {
  margin-right: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
}