.assistance-page{
    max-width:900px;
    margin:40px auto;
    margin-top: 10px;
    padding:0 20px;
}

.assistance-card{
    background:#fff;
    border-radius:14px;
    padding:30px;
    padding-top: 10px;
    border:2px solid rgba(0,0,0,.08);
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.assistance-card h1{
    margin-top:0;
    text-align:center;
    font-size: 1.5em;
    color:#111827;
}

.assist-subtitle{
    text-align:center;
    color:#6b7280;
    margin-bottom:30px;
}

.form-row{
    display:flex;
    gap:20px;
}

.form-row .form-group{
    flex:1;
}

.form-group{
    margin-bottom:18px;
}

.form-group label{
    display:block;
    font-weight:600;
    margin-bottom:6px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:12px 14px;
    border:1px solid #d1d5db;
    border-radius:10px;
    box-sizing:border-box;
    font-size:15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    outline:none;
    border-color:#4d6bff;
}

.readonly-field{
    background:#f3f4f6;
    cursor:not-allowed;
    font-weight:600;
}

.optional-tip{
    color:#6b7280;
    font-size:.85rem;
}

.submit-request-btn{
    width:100%;
    border:none;
    padding:14px;
    font-size:16px;
    font-weight:700;
    color:#fff;
    border-radius:10px;

    background:linear-gradient(
      90deg,
      #4d6bff,
      #00c6c7
    );

    cursor:pointer;
}

.submit-request-btn:hover{
    opacity:.95;
}

@media(max-width:768px){

    .form-row{
        flex-direction:column;
        gap:0;
    }

}


.assist-hero{
    background:linear-gradient(
        135deg,
        #4d6bff 0%,
        #00c6c7 100%
    );

    color:#fff;
     
    border-radius:16px;

    margin:25px;

    box-shadow:
        0 10px 30px rgba(77,107,255,.25);
}

.assist-hero-content{
    
    margin:0 auto;
    text-align:center;
}

.assist-badge{
    display:inline-block;

    padding:8px 16px;

    background:rgba(255,255,255,.18);

    border:1px solid rgba(255,255,255,.25);

    border-radius:999px;

    font-size:.9rem;
    font-weight:700;

    margin-top:15px;
}

.assist-hero h1{
    margin:10 0 12px;

    font-size:1.3rem;

    line-height:1.3;
}

.assist-hero p{
    font-size:1rem;
    line-height:1.5;

    max-width:850px;

    margin:0 auto;
}

.assist-benefits{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
    margin-top:8px;
    padding-bottom: 15px;
}

.assist-benefit{
    background:rgba(255,255,255,.15);
    border:2px solid rgba(255,255,255,.2);

    padding:8px 12px;
    font-size:.92rem;

    border-radius:8px;

    font-weight:700;
}
.submit-request-btn:disabled{

    background:#cbd5e1;

    cursor:not-allowed;

    box-shadow:none;
}

.privacy-consent{

    margin-top:25px;
    margin-bottom:15px;

    padding:16px;

    background:#f8fafc;

    border:1px solid #e5e7eb;

    border-radius:10px;
}

.consent-row{

    display:flex;

    align-items:flex-start;

    gap:12px;

    cursor:pointer;

    line-height:1.6;
}

.consent-row input{

    margin-top:4px;

    width:18px;
    height:18px;

    flex-shrink:0;
}
.important-notice{
    background:#f8fafc;
    border:1px solid #dbeafe;
    border-left:4px solid #4d6bff;
    border-radius:10px;
    padding:18px;
    margin:20px 0;
}

.important-notice h3{
    margin-top:0;
    margin-bottom:10px;
}

.important-notice ul{
    padding-left:20px;
    margin:0;
}

.important-notice li{
    margin-bottom:8px;
}

.hidden{
    display:none !important;
}

.loading-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
}

.loading-box{
    background:#fff;
    padding:30px;
    border-radius:12px;
    text-align:center;
    min-width:280px;
}

.spinner{
    width:50px;
    height:50px;
    border:5px solid #e5e7eb;
    border-top:5px solid #4d6bff;
    border-radius:50%;
    animation:spin .8s linear infinite;
    margin:0 auto 15px;
}

@keyframes spin{
    to{
        transform:rotate(360deg);
    }
}

.response-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
}

.response-box{
    background:#fff;
    width:90%;
    max-width:500px;
    padding:25px;
    border-radius:12px;
    text-align:center;
}

.response-box button{
    margin-top:15px;
    padding:12px 25px;
    border:none;
    border-radius:8px;
    background:#4d6bff;
    color:#fff;
    cursor:pointer;
}