@import url('https://cdn.jsdelivr.net/npm/pretendard@1.3.6/dist/web/static/pretendard.css');

body {
  font-family: 'Pretendard', sans-serif;
  background-color: #fffdfa;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.container {
  max-width: 720px;
  margin: 60px auto;
  padding: 30px;
  background-color: #ffffff;
  border: 1px solid #f3f3f3;
  border-radius: 16px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}

h2 {
  text-align: center;
  color: #222;
  font-size: 26px;
  margin-bottom: 40px;
}

.question {
  margin-bottom: 30px;
  padding: 20px;
  border-left: 4px solid #ffc21a;
  background-color: #fffdf6;
  border-radius: 8px;
}

.question p {
  font-weight: 600;
  margin-bottom: 12px;
}

.question label {
  display: block;
  margin: 10px 0;
  padding-left: 8px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.question input[type="radio"] {
  margin-right: 8px;
  accent-color: #ffc21a;
}

button[type="submit"] {
  display: block;
  width: 100%;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  background-color: #ffc21a;
  color: #222;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  min-height: 48px;
}

button[type="submit"]:hover {
  background-color: #e5ae0f;
}
@media (max-width: 600px) {
  .container {
    margin: 20px auto;
    padding: 16px;
  }

  h2 {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .question {
    padding: 16px;
    font-size: 14px;
  }

  .question p {
    font-size: 15px;
  }

  .question label {
    font-size: 14px;
  }

  button[type="submit"] {
    font-size: 15px;
    padding: 12px 0;
  }
}
