/* Footer Styles */
.footer {
  background-color: #0b2d55; /* dark navy blue background */
  color: #dcdcdc; /* light grey text */
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer h3 {
  color: #ff8c42; /* orange headings */
  font-size: 18px;
  margin-bottom: 12px;
}

.footer p,
.footer a,
.footer li {
  color: #dcdcdc; /* light text */
  font-size: 14px;
  text-decoration: none;
  line-height: 1.6;
}

.footer a:hover {
  color: #ff8c42; /* hover color */
}

.footer .footer-section {
  margin-bottom: 25px;
}

.footer .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer .social-icons a {
  font-size: 20px;
  color: #dcdcdc;
  transition: color 0.3s ease;
}

.footer .social-icons a:hover {
  color: #ff8c42;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #ccc;
}
