@media (max-width: 768px) {
  .card {
    width: 90%;
  }

  h1 {
    font-size: 1.5rem;
  }
}

/* Responsive styles for smaller screens */
@media (max-width: 480px) {
  .container {
    padding: 10px;
  }

  .card {
    width: 100%;
  }

  h1 {
    font-size: 1.2rem;
  }
}

footer {
  background-color: #0a0a0a;
  color: #ffffff;
  padding: 30px 20px;
  text-align: center;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
}

.footer-left,
.footer-links,
.footer-right {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffd700;
}

/* ✅ Make it responsive for small screens */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-left,
  .footer-right {
    margin-bottom: 10px;
  }
}

/* Stripe-like nav alignment */
.stripe-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  /* Tight spacing like Stripe */
  white-space: nowrap;
}

/* Stripe link style */
.stripe-nav .nav-link {
  font-weight: 500;
  color: #0a2540 !important;
  padding: 8px 2px !important;
  transition: color 0.2s ease;
}

/* Hover effect like Stripe */
.stripe-nav .nav-link:hover {
  color: aqua !important;
}

/* Stripe-style SIGN UP button */
.signup-btn {
  padding: 8px 18px !important;
  border-radius: 20px;
  background: aqua;
  color: white !important;
  font-weight: 600;
  border: none;
  transition: background 0.2s ease;
}

.signup-btn:hover {
  background: aqua;
}
.signup-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.5);
}