/* Footer Styles */
.site-footer {
  background: #062a4d; /* dark navy */
  color: #fff !important;
  padding: 40px 20px 20px;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}


.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px; /* controls space between columns */
  max-width: 1100px;
  margin: 0 auto;
}

.footer-about,
.footer-links {
  flex: 0 1 220px;   /* Do NOT allow flex-grow */
  min-width: 220px;
  max-width: 320px;
  margin-bottom: 20px;
}


.footer-about {
  flex: 1 1 300px;
  margin-bottom: 20px;
}

h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #fff !important;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.social-icons a {
  color: #fff;
  margin-right: 12px;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #00b4d8; /* accent color */
}

.footer-links {
  flex: 1 1 200px;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #00b4d8;
}

.footer-bottom p{
  text-align: center;
  padding-top: 15px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  color: #fff !important;
}
