.form-section {
  padding: 24px 20px 32px;
  background: #fff;
}

.question {
  margin-bottom: 22px;
}

.question p {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.option-grid {
  display: grid;
  gap: 8px;
}

.option-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.option-grid.time {
  grid-template-columns: repeat(3, 1fr);
}

.option {
  height: 48px;
  border: 2px solid #d9e8dc;
  background: #fff;
  color: #222;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: none;
}

.option-grid.time .option {
  font-size: 15px;
  line-height: 1.25;
}

.option.active {
  background: #008f2f;
  color: #fff;
  border-color: #008f2f;
}

.option:active {
  transform: translateY(1px);
}

.form-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  margin-bottom: 12px;
}

.form-row label {
  font-size: 16px;
  font-weight: 700;
}

input,
select {
  width: 100%;
  height: 46px;
  padding: 0 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
}

input:focus,
select:focus {
  border-color: #008f2f;
}

.phone-inputs {
  display: grid;
  grid-template-columns: 80px 10px 1fr 10px 1fr;
  align-items: center;
  gap: 6px;
}

.phone-inputs span {
  text-align: center;
  font-weight: 700;
}

.agree {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 500;
}

.agree input {
  width: 16px;
  height: 16px;
}

.privacy-btn {
  border: none;
  background: none;
  padding: 0;
  color: #008f2f;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
}

.notice {
  margin: 24px 0 20px;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: #111;
}

.submit-btn {
  display: block;
  width: 100%;
  max-width: 360px;
  height: 76px;
  margin: 0 auto;
  border: none;
  border-radius: 18px;
  background: #ed0012;
  color: #fff;
  font-family: inherit;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  animation: pulseBtn 1s infinite;
}

.submit-btn:disabled {
  opacity: .75;
  cursor: not-allowed;
  animation: none;
}

@keyframes pulseBtn {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(.97);
  }
}

#result {
  margin-top: 16px;
  text-align: center;
  color: #ed0012;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width:380px) {

  .option {
    font-size: 14px;
  }

  .option-grid.time .option {
    font-size: 12px;
  }

  .question p {
    font-size: 15px;
  }

  .submit-btn {
    height: 72px;
    font-size: 25px;
  }

}

.option-small {
  font-size: 13px;
  line-height: 1.2;
}

.phone-prefix {
  background: #f5f5f5;
  color: #222;
  text-align: center;
  font-weight: 700;
  cursor: default;
  user-select: none;
}