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

.logo {
  max-width: 220px;
  height: auto;
  margin-bottom: 20px;
  display: block;
}

.faq-section {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  margin-bottom: 20px;
}

.faq-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 14px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 24px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-top: 10px;
}

/* BASE */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background-color: #f7f7f7;
  color: #1a1a1a;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* HERO */
.hero {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid #e5e5e5;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 16px;
  color: #555;
}

/* INFO BOX */
.info-box {
  background: #fff4f4;
  border: 1px solid #f5c2c2;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.info-box strong {
  display: block;
  margin-bottom: 8px;
}

/* FORM */
form {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
}

/* SECTION */
.form-section {
  margin-bottom: 30px;
}

.form-section h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.form-section p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

/* INPUT GROUP */
.form-group {
  margin-bottom: 15px;
}

/* LABEL */
label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
}

/* INPUTS */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  transition: border 0.2s ease;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* FOCUS STATE */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #000;
}

/* CHECKBOXES */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.checkbox-group input {
  margin-top: 3px;
}

.checkbox-group label {
  font-weight: normal;
  font-size: 14px;
}

/* BUTTON */
button {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

button:hover {
  opacity: 0.85;
}

/* REQUIRED ASTERISK */
.required {
  color: red;
}

/* SUCCESS MESSAGE */
.success {
  background: #e6f7ec;
  border: 1px solid #b7e4c7;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.success h3 {
  margin-bottom: 10px;
}

/* ERROR MESSAGE */
.error {
  background: #ffe6e6;
  border: 1px solid #ffb3b3;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 24px;
  }

  form {
    padding: 20px;
  }

  .container {
    padding: 15px;
  }
}
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.progress-wrap {
  margin-bottom: 25px;
}

.progress-text {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: #e5e5e5;
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 0;
  background: #000;
  transition: width 0.3s ease;
}

.step-navigation {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.secondary-btn {
  background: #e5e5e5;
  color: #1a1a1a;
}

.secondary-btn:hover {
  opacity: 0.9;
}