body {
  font-family: 'Montserrat', sans-serif;
  background-color: #1e1e1e;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 25px rgb(84 252 129 / 15%);
  width: 90%;
  max-width: 950px;
  text-align: center;
  color: #ffffff;
}

.container img {
  max-width: 280px;
  margin-bottom: 20px;
}

.container h1 {
  font-size: 36px;
  font-weight: bold;
  color: #025813;
}

.container h2 {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
}

.container p {
  font-size: 18px;
  color: #dcdcdc;
}

.btn-custom {
  background: #014c10;
  color: #f8f7fa;
  font-size: 20px;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 255, 72, 0.5);
  transition: 0.3s;
}

.btn-custom:hover {
  background: #037c1b55;
  transform: scale(1.1);
}

.contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: #212121;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgb(84 252 129 / 15%);
  margin: 25px auto;
  max-width: 750px;
}

.contact-info p {
  margin: 0;
  font-size: 18px;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.contact-info i {
  color: #015c13;
  margin-right: 12px;
  font-size: 22px;
}

.checkbox-group {
  text-align: left;
  margin-top: 20px;
}
a {
  font-size: 18px;
  font-weight: 600;
  color: #015c13;
  margin-left: 10px;
  margin-right: 10px;
}
.btn-success {
  background: #014d10;
  color: #f8f7fa;
  font-size: 18px;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 255, 64, 0.5);
  transition: 0.3s;
}

.btn-success:hover {
  background: #037c1b55;
  transform: scale(1.05);
}

.question {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  opacity: 1;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.option-container {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 25px;
  flex-wrap: wrap;
}

.question,
.form-section {
  display: none;
}

.option {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 15px;
  padding: 16px 24px;
  background: #0a241638;
  color: #ffffff;
  cursor: pointer;
  border-radius: 12px;
  font-weight: bold;
  transition: transform 0.3s ease-in-out, background 0.3s,
    box-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
  box-shadow: 0 4px 16px rgba(0, 255, 85, 0.3);
}

.option:hover {
  background: #f8f7fa;
  color: #212121;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 255, 89, 0.5);
}

.option i {
  display: none;
}

.option span {
  font-size: 18px;
}
.option-container-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .contact-info {
    flex-direction: column;
  }
  .option-container-wrapper {
    flex-direction: column;
    gap: 15px;
  }
}
