/* Footer Section */
.footer-section {
  background-color: #e8f1f9; /* Light Blue Background */
  color: #333333;
  padding: 2rem 0;
  text-align: center;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0077b6; /* Deep Blue */
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-menu li a {
  color: #0077b6;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-menu li a:hover {
  color: #f4a261; /* Soft Orange */
  text-decoration: underline;
}

.footer-bottom {
  font-size: 0.9rem;
  border-top: 1px solid #c0d6e4;
  padding-top: 1rem;
  margin-top: 1rem;
  color: #555555;
}
