.career-jobs{
    max-width:1000px;
    margin:auto;
    padding:70px 20px;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
    font-size:34px;
    color:#16213e;
}

.job-item{
    background:#fff;
    border-radius:12px;
    margin-bottom:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    overflow:hidden;
    transition:.3s;
    border:1px solid #e8edf3;
}

.job-item:hover{
    transform:translateY(-3px);
}

.job-header{
    width:100%;
    border:none;
    background:#fff;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 28px;
    text-align:left;
}

.job-left h3{
    margin:0;
    font-size:22px;
    color:#0c1d3a;
}

.job-meta{
    display:flex;
    gap:18px;
    margin-top:10px;
    flex-wrap:wrap;
}

.job-meta span{
    font-size:14px;
    color:#6c7a89;
    background:#eef5ff;
    padding:6px 12px;
    border-radius:30px;
}

.job-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    font-size:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.job-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .45s ease;
}

.job-content p,
.job-content h4,
.job-content ul,
.job-content .apply-btn{
    margin-left:28px;
    margin-right:28px;
}

.job-content p{
    margin-top:20px;
}

.job-content ul{
    padding-left:20px;
}

/* .job-content li{
    margin:8px 0;
} */

.apply-btn{
    display:inline-block;
    margin:20px 28px 28px;
    padding:12px 24px;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    transition:.3s;
}

ul.service-categories li{
    font-weight: normal;
}

.apply-btn:hover{
    background:#084298;
}

.job-item.active .job-content{
    max-height:1000px;
    overflow-y: auto;
}

.job-item.active .job-icon{
    transform:rotate(45deg);
    background:#198754;
}

@media(max-width:768px){

.job-header{
    padding:18px;
}

.job-left h3{
    font-size:19px;
}

.job-meta{
    gap:10px;
}

}