/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background-color: #004080;
  color: white;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: opacity 0.3s;
}

nav ul li a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 500px;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 64, 128, 0.7), rgba(0, 64, 128, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay .container {
  z-index: 1;
  padding: 40px 20px;
}

.hero h1 {
  font-size: 2.5em;
  color: white;
  margin-bottom: 15px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2em;
  color: white;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Contact Details Section */
.contact-details {
  margin: 50px auto;
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.contact-details h2 {
  font-size: 2em;
  color: #004080;
  margin-bottom: 25px;
  border-bottom: 3px solid #004080;
  padding-bottom: 10px;
}

.contact-details p {
  font-size: 1.1em;
  margin-bottom: 15px;
  line-height: 1.8;
}

.contact-details strong {
  color: #004080;
  font-weight: 600;
}

/* Departments Contact Section */
.departments-contact {
  margin: 50px auto;
  padding: 30px;
}

.departments-contact h2 {
  font-size: 2em;
  color: #004080;
  margin-bottom: 25px;
  border-bottom: 3px solid #004080;
  padding-bottom: 10px;
}

.departments-contact ul {
  list-style: none;
}

.departments-contact ul li {
  font-size: 1.1em;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.departments-contact ul li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #004080;
  font-weight: bold;
}

.departments-contact ul li strong {
  color: #004080;
}

/* Map Section */
.map {
  margin: 50px auto;
  padding: 30px;
}

.map h2 {
  font-size: 2em;
  color: #004080;
  margin-bottom: 25px;
  border-bottom: 3px solid #004080;
  padding-bottom: 10px;
}

#map-placeholder {
  width: 100%;
  height: 400px;
  background-color: #e0e0e0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1.1em;
  border: 2px solid #ddd;
}

/* FAQ Section */
.faq {
  margin: 50px auto;
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.faq h2 {
  font-size: 2em;
  color: #004080;
  margin-bottom: 30px;
  border-bottom: 3px solid #004080;
  padding-bottom: 10px;
}

.faq-item {
  margin-bottom: 25px;
  padding: 20px;
  background-color: white;
  border-radius: 5px;
  border-left: 4px solid #004080;
}

.faq-item h3 {
  font-size: 1.3em;
  color: #004080;
  margin-bottom: 10px;
  font-weight: 600;
}

.faq-item p {
  color: #555;
  line-height: 1.7;
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: white;
  padding: 30px 0;
  margin-top: 60px;
}

.footer-inner {
  text-align: center;
}

.footer-inner p {
  margin-bottom: 10px;
  font-size: 0.95em;
}

.footer-inner a {
  color: #87ceeb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-inner a:hover {
  color: white;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    justify-content: center;
    gap: 15px;
  }

  .hero-banner {
    height: 400px;
  }

  .hero h1 {
    font-size: 1.8em;
  }

  .hero p {
    font-size: 1em;
  }

  .contact-details,
  .departments-contact,
  .map,
  .faq {
    padding: 20px;
  }

  .contact-details h2,
  .departments-contact h2,
  .map h2,
  .faq h2 {
    font-size: 1.5em;
  }

  #map-placeholder {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 95%;
    padding: 0 15px;
  }

  .hero-banner {
    height: 350px;
  }

  .hero h1 {
    font-size: 1.5em;
  }
}
