.site-footer {
  background: linear-gradient(90deg, #00217c, #5151ff);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2rem 1rem;
  margin-top: 3rem;
  font-size: 0.95rem;
  color: #ffffff;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  align-items: center;
}

/* Responsive layout for wider screens */
@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
  }

  .footer__section {
    flex: 1;
  }

  .footer__links ul,
  .footer__contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer__links li,
  .footer__contact li {
    margin-bottom: 0.5rem;
  }
}

.footer__brand {
  font-size: 1.1rem;
  font-weight: 700;
}

.footer__tagline {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  color: #9cf8ff;
}

.footer__links a,
.footer__contact a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.footer__links a:hover,
.footer__contact a:hover {
  text-decoration: underline;
}

.footer__copy {
  text-align: center;
  font-size: 0.85rem;
  color: #ffffff;
  margin-top: 2rem;
}