/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
  color: white;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  padding: 20px;
}

.logo {
  max-width: 350px;
  margin: 40px auto;
}

.cta-buttons {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.btn {
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  width: 200px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.primary {
  background-color: white;
  color: black;
  border: none;
}

.primary:hover {
  background-color: #ccc;
}

.secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.secondary:hover {
  background-color: white;
  color: black;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  overflow-y: auto;
}

.modal-content {
  background: #111;
  margin: 5% auto;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  color: white;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content h2 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  text-align: center;
}

.modal-content label {
  display: block;
  margin-top: 15px;
  font-size: 0.9rem;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
}

.initiation-fee-notice {
  background-color: #333;
  border: 1px solid #666;
  border-radius: 6px;
  padding: 15px;
  margin: 20px 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #ffd700;
}

.agreement {
  margin: 20px 0;
  font-size: 0.8rem;
  line-height: 1.4;
}

.close {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
  margin-top: -10px;
}

/* Mobile Friendly */
@media (max-width: 600px) {
  .modal-content {
    width: 95%;
    margin: 20px auto;
    padding: 20px;
    max-height: 95vh;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .logo {
    max-width: 250px;
  }

  iframe {
    height: 80vh;
  }
}
	
