

/* Footer */
/* .footer {
  background: #004080;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  font-size: 0.9rem;
} */

.footer {
  background: #004080;
  color: #fff;
  padding: 40px 20px 20px;
  margin-top: 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.footer-column h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  border-bottom: 2px solid #0066cc;
  padding-bottom: 5px;
}

.footer-column p,
.footer-column a,
.footer-column li {
  font-size: 0.95rem;
  margin: 8px 0;
  color: #ddd;
}

.footer-column a {
  text-decoration: none;
  color: #ddd;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-contact a:hover .contact-icon {
  fill: #0066cc;  /* blue on hover */
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 0.85rem;
  color: #ccc;
}
