.form-card {
  background: #fff;
  border-radius: 16px;
  padding: clamp(20px, 4vw, 32px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  max-width: 560px;
  margin-left: auto;
  margin-right: 0;
  color: #2A2B2B;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
}
.form-title {
  margin: 0 0 6px;
  text-align: center;
  font-size: clamp(20px, 3.2vw, 24px);
  font-weight: 800;
}
.form-subtitle {
  margin: 0 0 12px;
  text-align: center;
  color: #6b7280;
  font-size: 18px;
}
.form-intro {
  margin: 0 0 18px;
  text-align: center;
  color: #4b5563;
  line-height: 1.5;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px 14px;
  margin-bottom: 10px;
}
@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.form-group label {
  font-size: 13px;
  color: #374151;
  font-weight: 600;
}
.form-control {
  appearance: none;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 15px;
  background: #fff;
  color: #111827;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.form-control::placeholder {
  color: #9ca3af;
}
.form-control:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .15);
}
.form-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  margin: 0;
  font-size: 13px;
  color: #4b5563;
  padding-left: 0px !important;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #2563eb;
}
.form-check a {
  color: #2563eb;
  text-decoration: underline;
}
.btn-submit {
  display: inline-block;
  width: 100%;
  margin-top: 14px;
  padding: 12px 16px;
  border: 0;
  border-radius: 12px;
  background: #52C93E;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: transform .06s ease, box-shadow .2s ease, opacity .2s ease;
  box-shadow: 0 8px 20px rgba(204, 152, 101, .25);
}
.btn-submit:hover {
  opacity: .95;
}
.btn-submit:active {
  transform: translateY(1px);
}
.is-invalid {
  border-color: #ef4444 !important;
}
.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, .15) !important;
}
.error-msg {
  color: #b91c1c;
  font-size: 12px;
  margin-top: 4px;
}
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: #fff;
  margin: auto;
  padding: 20px 24px;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  position: relative;
  animation: fadeIn .3s ease;
}
.close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
}
.close:hover {
  color: #000;
}


form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.btn-submit {
  background: #52C93E;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}
.btn-submit:hover {
  background: #52C93E;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.accordion {
  border-top: 1px solid #e5e7eb;
}
.acc-item {
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
}
.acc-btn {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: #fff;
  border: 0;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
.acc-btn::after {
  content: "";
  margin-left: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid #6b7280;
  border-bottom: 2px solid #6b7280;
  transform: rotate(-45deg);
  transition: transform .2s ease;
}
.acc-btn[aria-expanded="true"]::after {
  transform: rotate(45deg);
}
.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  background: #fff;
}
.acc-body {
  padding: 0 16px 14px 16px;
  color: #111827;
  line-height: 1.55;
  font-size: 15px;
}
.acc-btn:hover {
  background: #f9fafb;
}
.acc-btn:focus {
  outline: 3px solid rgba(37, 99, 235, .25);
  outline-offset: 2px;
  border-radius: 6px;
}
.accordion-mobile .acc-item {
  background: #fff;
}
@media (max-width: 768px) {
  .accordion-mobile .acc-btn {
    padding: 16px 18px;
    font-size: 16px;
  }
  .accordion-mobile .acc-body {
    padding: 0 18px 16px 18px;
    font-size: 15px;
    line-height: 1.6;
  }
}
.accordion-mobile .acc-item {
  border-bottom: 1px solid #e5e7eb;
}
.accordion-mobile .acc-btn {
  border-radius: 8px;
}
.accordion-mobile .acc-btn:hover {
  background: #f9fafb;
}
.accordion-mobile .acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
