.footer {
  background-color: #350f94;
  color: #e0e0e0;
  padding: 1.5rem 1rem;
  text-align: center;
  border-radius: 2rem 2rem 0 0;
  margin-top: 1rem;
  position: relative;
}

.footer-container {
  max-width: 700px;
  margin: 0 auto;
}

.footer-title {
  font-size: 3rem;
  font-weight: 500;
  padding: 0;
  color: #ffffff;
  letter-spacing: 1px;
  font-family: "Oswald";
}

.footer-content {
  margin-bottom: 1rem;
}

.footer-contact p {
  margin: 0.3rem 0;
  font-size: 1rem;
  color: #ccc;
}

.footer-contact a {
  color: #ffffff;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #beb6f4;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #a8a7a7;
}

@media (max-width: 600px) {
  .footer-title {
    font-size: 1.5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-contact p {
    font-size: 0.95rem;
  }
}
