footer, #disclaimer{
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(59, 130, 246, 0.2); /* blue-600/20 */
  backdrop-filter: blur(10px);
  padding: 2rem 1rem;
  color: #fff;
  font-family: sans-serif;
}
#disclaimer{
  margin: 0 auto;
  padding: 1rem 1rem;
  text-align: left;
  color: rgba(255, 255, 255, 0.375);
  font-size: .7em;

}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    align-content: center;
}

.footer-logo img {
  width: auto;
  height: 30px;
  object-fit: contain;
}

.footer-logo p {
  font-size: 0.875rem;
  color: #9ca3af; /* text-gray-400 */
  max-width: 300px;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  color: #9ca3af; /* text-gray-400 */
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #3b82f6; /* text-blue-500 */
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1500px){
#disclaimer{
  margin: 0 auto;
  padding: 1rem 9rem;
  text-align: left;
  color: rgba(255, 255, 255, 0.375);
  font-size: .9em;

}
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    align-content: center;
}
.footer-logo p {
  text-align: left;
}
}
@media (min-width: 768px) {
  .footer-columns {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-column ul li{
    padding: 6% 0%;
    }
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
    text-align: left;
}

.footer-column h3 {
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column ul li{
    padding: 3% 0%;
}
.footer-column li a {
  color: #9ca3af; /* text-gray-400 */
  font-size: 0.875rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-column li a:hover {
  color: #3b82f6; /* text-blue-500 */
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid #374151; /* border-gray-700 */
}

.footer-bottom .copyright {
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-bottom .terms {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.footer-bottom .terms a {
  color: #9ca3af;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-bottom .terms a:hover {
  color: #3b82f6;
}