/* ==========================================
   LINKS SECTION - Clean Bright Highlight
========================================== */
#footer-links-section {
  background: #f5f9ff; /* light blue background for clarity */
  padding: 2rem 1rem;
  text-align: center;
  border-top: 3px solid #1e90ff; /* blue trust line */
  border-bottom: 3px solid #27ae60; /* green action line */
}

#footer-links-section .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
}

#footer-links-section .footer-links a {
  color: #1e90ff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  background: rgba(30, 144, 255, 0.08);
  transition: all 0.3s ease;
}

#footer-links-section .footer-links a:hover {
  color: #fff;
  background: linear-gradient(90deg, #1e90ff, #27ae60);
  transform: translateY(-2px);
}

/* ==========================================
   FOOTER - Dark, Solid, Trustworthy
========================================== */
#footer-main {
  background: #1b1b1b; /* solid dark for contrast */
  color: #ccc;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  border-top: 4px solid #1e90ff; /* subtle brand line */
}

#footer-main p {
  color: #bbb;
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 600px) {
  #footer-links-section .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  #footer-links-section .footer-links a {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}
