.site-footer {
  background-color: #1a5276;
  color: #fff;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Sections */
.footer-section h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  top: 32px;
  left: 0;
  width: 130px;
  height: 3px;
  background-color: #3498db;
}

.footer-section p {
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
  background-color: #3498db;
  transform: translateY(-3px);
}

/* Quick Links */
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

.footer-section ul a:hover {
  color: #3498db;
  padding-left: 5px;
}

.contact-info {
  display: unset;
}

/* Contact Info */
.contact-info address {
  font-style: normal;
  margin-bottom: 1.5rem;
}

.contact-info address svg {
  margin-right: 10px;
}
.contact-info p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.contact-info i {
  margin-right: 0.75rem;
  color: #3498db;
  margin-top: 0.25rem;
}

.hours h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.hours p {
  margin-bottom: 0.5rem;
}

/* Footer Bottom */
.footer-bottom {
  background-color: #154360;
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #fff;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #3498db;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    margin-top: 1rem;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .site-footer {
    padding-top: 2.5rem;
  }

  .footer-bottom {
    margin-top: 2.5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }
}
