.se-container {
  color: #00304b;
  font-family: "HarmoniaSansStd-Regular";
}
#se-form-wrapper {
  max-width: 700px;
}
.se-pretitle {
  text-align: center;
  margin-bottom: 8px;
}
.se-pretitle img {
  /* width: 52px; */
  height: auto;
}
.se-title {
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  color: #00304b;
  margin: 0;
  font-family: "HarmoniaSansStd-Semibd";
}
.se-form-group {
  margin-bottom: 20px;
}
.se-form-group > label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #00304b;
  font-size: 20px;
  font-family: "HarmoniaSansStd-Semibd";
}
.se-form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #d5bc86;
    border-radius: 16px;
    font-size: 20px;
    color: #707070;
    background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(/wp-content/uploads/2026/03/dropdown-icon.png);
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
    font-family: "HarmoniaSansStd-Regular";
}
.se-selected-bar {
  background: #00304b;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  font-family: "HarmoniaSansStd-Semibd";
  padding: 18px 24px;
  border-radius: 16px;
  margin-top: 12px;
  text-align: center;
  text-transform: uppercase;
}
.se-section-title {
  font-size: 40px;
  font-weight: 600;
  color: #00304b;
  margin-top: 50px;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid #d5bc86;
  font-family: "HarmoniaSansStd-Semibd";
}
.se-vote-group {
  margin-bottom: 23px;
}
.se-vote-label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: #00304b;
  font-size: 25px;
  font-family: "HarmoniaSansStd-Semibd";
}
.se-vote-options {
  display: flex;
  gap: 10px;
}
.se-vote-options input[type="radio"] {
  display: none;
}
.se-vote-options label {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #d5bc86;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: #00304b;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fff;
  user-select: none;
  font-family: "HarmoniaSansStd-Semibd";
}
.se-vote-options input[type="radio"]:checked + label {
  background: #d5bc86;
  border-color: #d5bc86;
  color: #00304b;
}
.se-vote-options label:hover {
  background: #d5bc86;
}
.se-btn {
  background: linear-gradient(135deg, #005c89, #002d62);
  color: #fff;
  padding: 21px 40px;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 700;
  /* letter-spacing: 1.5px; */
  text-transform: uppercase;
  transition: opacity 0.2s;
  font-family: "HarmoniaSansStd-Bold";
}
.se-btn:hover {
  opacity: 0.9;
}
.se-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Success screen */
.se-success-screen {
  padding: 100px 0 0;
  max-width: 1440px;
  margin: 0 auto;
}
.se-success-card {
  background: linear-gradient(135deg, #fefdfc, #efeadb);
  border-radius: 80px;
  padding: 80px;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
.se-success-card img {
  /* width: 160px; */
  height: auto;
  flex-shrink: 0;
}
.se-success-text h3 {
  color: #00304b;
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 100%;
  font-family: "HarmoniaSansStd-Bold";
}
.se-success-text p {
  color: #00304b;
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  font-family: "HarmoniaSansStd-Semibd";
}
.se-btn-reset {
  background: linear-gradient(135deg, #005c89, #002d62);
  color: #fff;
  padding: 21px 41px;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 600;
  /* letter-spacing: 1.5px; */
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  margin-top: 45px;
  transition: opacity 0.2s;
  font-family: "HarmoniaSansStd-Semibd";
}
.se-btn-reset:hover {
  opacity: 0.9;
  color: #fff;
}
.se-error-msg {
  color: #d63638;
  background: #fce4e4;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  text-align: center;
}

@media (max-width: 768px) {
  .se-title {
    font-size: 32px;
  }
  .se-section-title {
    font-size: 26px;
    margin-top: 35px;
  }
  .se-vote-label {
    font-size: 18px;
  }
  .se-success-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
    border-radius: 40px;
    gap: 20px;
  }
  .se-success-card img {
    width: 140px;
  }
  .se-success-text h3 {
    font-size: 22px;
  }
  .se-success-text p {
    font-size: 16px;
  }
  .se-btn-reset {
    padding: 16px 32px;
    font-size: 14px;
    margin-top: 25px;
  }
}

@media (max-width: 480px) {
  .se-title {
    font-size: 26px;
  }
  .se-section-title {
    font-size: 22px;
    margin-top: 30px;
  }
  .se-form-group > label {
    font-size: 16px;
  }
  .se-vote-label {
    font-size: 16px;
  }
  .se-vote-options label {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .se-success-card {
    padding: 30px 20px;
    border-radius: 30px;
  }
  .se-success-card img {
    width: 110px;
  }
  .se-success-text h3 {
    font-size: 18px;
  }
  .se-success-text p {
    font-size: 14px;
  }
  .se-btn-reset {
    padding: 14px 28px;
    font-size: 13px;
    border-radius: 60px;
  }
}
