@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

/* Container for the entire footer */
.site-footer {
  background-color: #002D5B; /* Dark blue background */
  color: #fff;               /* White text by default */
  padding: 40px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.80rem;
}

/* Footer container with columns */
.site-footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

/* Footer column titles */
.site-footer .footer-col h3 {
  font-size: 0.90rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #BFDFFF; /* Light blue for titles */
}

/* Footer column lists */
.site-footer .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-col li {
  margin-bottom: 5px;
}

/* Footer links */
.site-footer .footer-col a {
  color: #fff; /* White links by default */
  text-decoration: none;
  transition: color 0.3s, font-size 0.3s;
  font-size: 0.80rem;
}

/* Link hover effect: light blue with slightly smaller font */
.site-footer .footer-col a:hover {
  color: #BFDFFF;
  font-size: 0.80rem; 
  
}

/* Footer disclaimer text */
.site-footer .footer-disclaimer {
  max-width: 1200px;
  margin: 20px auto 0;
  text-align: center;
  line-height: 1.4;
  font-size: 0.7rem;
  color: #fff;  /* White text */
}

/* Footer bottom (copyright) text */
.site-footer .footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 0.7rem;
  color: #fff;  /* White text */
}
