body {
  font-family: 'Outfit', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 1rem;
}

html {
  font-size: clamp(16px, 1.2vw, 17px);
}

.container {
  max-width: 800px;
  width: 90%;
  margin: 1.5rem auto;
  background: white;
  color: black;
  padding: 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  flex: 1;
}

.requirements {
  background-color: #f9f9f9;
  border-left: 5px solid #28a745;
  padding: 1.25rem;
  margin-top: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.requirements h2 {
  margin-bottom: 1rem;
  color: #222;
  font-size: 1.5rem;
}

.requirements ul {
  list-style: none;
  padding-left: 0;
}

.requirements ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;
  font-size: 1rem;
}

.button-row {
  margin-top: 2.5rem;
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #28a745;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1rem;
}

.supported-by {
  margin-top: 2rem;
  text-align: center;
  margin-bottom: 1.25rem;
}

.supported-by h3 {
  margin-bottom: 2rem;
  font-weight: bold;
  font-size: 1.25rem;
}

.logo-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 10px;
  margin-bottom: 30px;
}

.logo-row img {
  max-height: 100px;
  max-width: 250px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-row img:hover {
  transform: scale(1.1);
}

.footer {
  background-color: #28a745;
  color: white;
  padding: 20px 0; /* instead of margin-bottom */
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
}

.footer .supported-by {
  margin-bottom: 0;
}

.terms-link {
  text-decoration: none;
  color: white;
}


@media (max-width: 768px) {
  .logo-row {
    gap: 1.25rem;
  }

  .logo-row img {
    max-height: 60px;
    max-width: 100px;
  }

  .container {
    padding: 1rem;
  }
}