/* style.css */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  text-align: center;
}
.sticky-header {
  position: sticky;
  top: 0;
  background: #222;
  color: white;
  padding: 20px;
  z-index: 1000;
}
main {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}
.question {
  display: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.question.active {
  display: block;
  opacity: 1;
}
.horizontal-options {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.horizontal-options button {
  padding: 12px 20px;
  font-size: 16px;
  border: 2px solid #333;
  background-color: white;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s;
}
input, button {
  font-size: 16px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="file"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 4px;
  border: 1px solid #ccc;
}
button[type="submit"], .nav-buttons button, #makePayment {
  padding: 12px 24px;
  margin: 10px;
  border: none;
  border-radius: 4px;
  background-color: #007BFF;
  color: white;
  cursor: pointer;
}
button:hover {
  background-color: #0056b3;
}
.nav-buttons {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
}
.close {
  float: right;
  font-size: 28px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .horizontal-options {
    flex-direction: column;
  }
  .modal-content {
    margin: 30% auto;
  }
}
