body,*{
    box-sizing:border-box;
    font-family:Tahoma,Arial,sans-serif!important;
}

body{
    margin:0;
    background:#f5f7fb;
    color:#233048;
}

a{
    text-decoration:none;
}

.page-shell{
    max-width:1100px;
    margin:30px auto;
    padding:0 16px;
}

.hero{
    background:linear-gradient(135deg,#325591 0%,#1f4079 100%);
    color:#fff;
    border-radius:28px;
    padding:38px 24px;
    text-align:center;
    box-shadow:0 12px 35px rgba(20,45,90,.18);
    margin-bottom:24px;
}

.hero img{
    width:150px;
    max-width:100%;
    background:#fff;
    border-radius:18px;
    padding:10px;
    margin-bottom:14px;
}

.hero h1{
    margin:0 0 8px;
    font-size:34px;
}

.hero p{
    margin:0;
    line-height:1.9;
    opacity:.95;
}

.top-actions{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    margin-top:18px;
}

.lang-dropdown{
    min-width:150px;
    width:auto;
    padding:10px 14px;
    border-radius:999px;
    border:0;
    background:#fff;
    color:#325591;
    font-weight:bold;
    cursor:pointer;
}

.card{
    background:#fff;
    border-radius:24px;
    padding:26px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    margin-bottom:20px;
}

.choice-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.choice-card{
    border:1px solid #dce4f2;
    border-radius:24px;
    padding:28px;
    background:#fbfcff;
    transition:.25s;
}

.choice-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(50,85,145,.16);
}

.choice-card h2{
    margin:0 0 12px;
    color:#325591;
}

.choice-card p{
    color:#5b6780;
    line-height:1.9;
}

.grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.field{
    display:flex;
    flex-direction:column;
}

.field.full{
    grid-column:1/-1;
}

label{
    font-weight:bold;
    margin-bottom:8px;
    color:#1f3d69;
}

input,select,textarea{
    width:100%;
    padding:14px 16px;
    border-radius:14px;
    border:1px solid #dce4f2;
    background:#fbfcff;
    font-size:14px;
    outline:none;
}

textarea{
    min-height:140px;
    resize:vertical;
    line-height:1.8;
}

button,.btn{
    display:inline-block;
    background:#325591;
    color:#fff!important;
    border:none;
    border-radius:14px;
    padding:13px 18px;
    font-weight:bold;
    text-decoration:none;
    cursor:pointer;
}

.btn-red{
    background:#b91c1c;
}

.btn-light{
    background:#eef4ff;
    color:#325591!important;
    border:1px solid #d3def1;
}

.btn-white{
    background:#fff;
    color:#325591!important;
    border:1px solid rgba(255,255,255,.8);
}

.actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:18px;
}

.table-wrap{
    overflow-x:auto;
}

table{
    width:100%;
    border-collapse:collapse;
}

th,td{
    padding:13px;
    border-bottom:1px solid #e5edf8;
    text-align:right;
    vertical-align:top;
}

html[dir="ltr"] th,
html[dir="ltr"] td{
    text-align:left;
}

th{
    color:#325591;
    background:#f8fbff;
}

.applicant-photo{
    width:150px;
    max-width:100%;
    border-radius:18px;
    border:1px solid #dce4f2;
    padding:6px;
    background:#fff;
}

.success-icon{
    width:86px;
    height:86px;
    margin:0 auto 18px;
    border-radius:50%;
    background:rgba(255,255,255,.16);
    border:2px solid rgba(255,255,255,.25);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:44px;
    font-weight:bold;
}

.info-box{
    background:#f8fbff;
    border:1px solid #dbe7fb;
    border-radius:18px;
    padding:18px;
    line-height:1.9;
    color:#334155;
}

.notice{
    background:#eef4ff;
    color:#325591;
    border:1px solid #d3def1;
    padding:14px 16px;
    border-radius:14px;
    font-weight:bold;
}

.badge{
    display:inline-block;
    padding:6px 10px;
    border-radius:999px;
    background:#eef4ff;
    color:#325591;
    font-weight:bold;
    font-size:12px;
}

@media(max-width:768px){
    .grid,
    .choice-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:26px;
    }
}