.site-footer {
  background-color: #122566;
  color: #fdfdfd;
  padding: 40px 20px 20px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 250px;
  min-width: 220px;
}

.footer-section h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: #fdfdfd;
}

.footer-section p,
.footer-section ul,
.footer-section li {
  font-size: 1rem;
  line-height: 1.6;
  color: #fdfdfd;
  margin: 0;
  padding: 0;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #fdfdfd;
  text-decoration: none;
  transition: font-weight 0.3s ease;
}

.footer-section ul li a:hover {
  color: #fdfdfd;
  font-weight: bold;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #fdfdfd;
  padding-top: 15px;
}


/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
}

.footer-links li {
  list-style: none;
  margin-bottom: 0.5rem;
  text-decoration: underline;
  padding: 2px 2px 2px;
}

.footer-links a {
  text-decoration: underline;
  color: #fff; /* or your preferred link color */
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ddd; /* hover color */
}