body {
  margin: 0;
  padding-top: 164px;
}

#header {
  position: fixed;
  top: 0px;
  width: 100%;
  background-color: rgba(214, 211, 211, 0.939);
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
}

.logo {
  height: 160px;
  width: auto;
}
.nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-grow: 1;
}
.nav > li {
  position: relative;
}

.nav > li > a {
  display: block;
  padding: 40px 20px;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
}

.nav > li > a:hover {
  background-color: #0066cc;
  color: rgb(19, 211, 19);
}

.nav > li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #004080;
  padding: 0;
  margin: 0;
  list-style: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav > li:hover > ul {
  display: block;
}

.nav > li ul li {
  position: relative;
}

.nav > li ul li a {
  display: block;
  padding: 10px;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid #0066cc;
}

.nav > li ul li a:hover {
  background-color: rgb(15, 150, 15);
  color: white;
}

.nav > li ul li ul {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 1px;
}

.nav > li ul li:hover > ul {
  display: block;
}
@media (max-width: 768px) {
  #header {
    position: relative;
    flex-direction: column;
    align-items: center;
  }

  .logo {
    margin-bottom: 10px;
    height: 180px;
  }

  .nav {
    flex-direction: column;
    display: none;
    width: 100%;
  }

  .nav.show {
    display: flex;
  }

  .nav > li {
    width: 100%;
  }

  .nav > li > a {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #0066cc;
  }

  .nav > li ul {
    position: relative;
    top: 0;
    left: 0;
  }

  .nav > li ul li ul {
    position: relative;
    top: 0;
    left: 0;
    margin-left: 20px;
  }

  .menu-toggle {
    display: block;
    padding: 15px;
    background-color: #004080;
    color: white;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
  }
}
.menu-toggle {
  display: none;
}
.mission-vision {
  padding: 50px 20px;
  background: linear-gradient(
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.8)
    ),
    url("/app/assets/logo.png") center/cover no-repeat;
  text-align: center;
  background-attachment: fixed;
}

.mission,
.vision {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin: 20px auto;
  max-width: 600px;
  transition: transform 0.3s ease;
}

.mission:hover,
.vision:hover {
  transform: scale(1.05);
}

.title {
  font-size: 2em;
  color: #004080;
  margin-bottom: 20px;
  font-weight: bold;
}

.description {
  font-size: 1.2em;
  color: #333;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .title {
    font-size: 1.8em;
  }

  .description {
    font-size: 1em;
  }

  .mission,
  .vision {
    padding: 20px;
  }
}

.footer {
  background-color: rgba(214, 211, 211, 0.939);
  color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 20px;
}

.footer-links {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-links h3 {
  margin-bottom: 10px;
  font-size: 1.2em;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #066240;
}

.footer-social {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-social h3 {
  margin-bottom: 10px;
  font-size: 1.2em;
}

.social-icons a {
  margin-right: 10px;
}

.social-icons img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9em;
  border-top: 1px solid #26b330;
  padding-top: 10px;
}

.footer-bottom p {
  margin: 0;
}
