.ass-page{ background:var(--offwhite); padding:48px 0 56px; }

.ass-card{
  width:min(760px, 100%);
  margin-inline:auto;
  background:#fff;
  border:1px solid var(--stroke);
  border-radius:18px;
  box-shadow:var(--shadow-sm);
  overflow:hidden;
}

.ass-card__head{
  background:#0f2146;
  color:#fff;
  padding:22px 24px 16px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.ass-dropdown {
  width: 100%;
  padding: 10px 15px;
  border: 2px solid #ccc;
  border-radius: 8px;
  background: #fff;
  font-size: 1rem;
  appearance: none;       /* removes default arrow for custom styling */
  cursor: pointer;
  color: #0f2146;
}

.ass-q input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 2px;   /* square edges */
  accent-color: #1b1464; /* optional: brand color when checked */
  cursor: pointer;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "▾";           /* custom dropdown arrow */
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 1.2rem;
  color: #666;
}

.ass-card__head h1{
  color:#fff; font-size:18px; line-height:1.3; margin:0 0 6px; font-weight:700;
}
.ass-card__head p{
  color:#e6ecff; margin:0 0 12px; font-size:14px;
}

/* Progress */
.ass-progress{
  width:100%; height:8px; border-radius:999px;
  background:rgba(255,255,255,.18); position:relative; overflow:hidden;
  margin-bottom:10px;
}
.ass-progress__bar{
  position:absolute; inset:0 auto 0 0;
  width:0%; height:100%; border-radius:999px;
  background:#D7BD88;
  transition:width .25s ease;
}
.ass-step{ color:#cfd7ff; font-weight:700; font-size:12px; }

/* Form */
.ass-form{ padding:18px; }
.ass-q{ 
    display:none;
     border: none; 
 }
.ass-q.is-active{
     display:block; 
    }

.ass-q legend{
  color:var(--primary);
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial;
  font-size:18px; font-weight:700; margin:6px 0 12px;
}

/* Option cards */
.opt{
  display:flex; align-items:flex-start; gap:12px;
  background:#fff; border:1px solid var(--stroke);
  border-radius:8px; padding:14px 14px;
  margin:10px 0; cursor:pointer; transition:box-shadow .15s, border-color .15s;
}
.opt input{
  appearance:none; width:18px; height:18px; margin-top:2px;
  border:2px solid #bfc6d9; border-radius:50%; display:inline-block; position:relative; flex:0 0 auto;
}
.opt input:checked{ border-color:var(--primary); }
.opt input:checked::after{
  content:""; position:absolute; inset:3px; border-radius:50%; background:var(--primary);
}
.opt span{ color:var(--ink); font-size:14px; line-height:1.45; }
.opt:hover{ box-shadow:var(--shadow-sm); }

.ass-controls{
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  padding:8px 4px 4px; margin-top:6px;
}
.ass-controls .btn{ min-width:120px; }
.ass-controls .ass-prev[disabled]{ opacity:.5; pointer-events:none; }

/* Responsive paddings */
@media (max-width:768px){
  .ass-page{ padding:28px 0 40px; }
  .ass-form{ padding:14px; }
  .ass-card__head{ padding:18px 16px 12px; }
}
