.careers-hero{
    text-align:center;
    padding:140px 10% 60px;
}

.careers-hero h1{
    font-size:4rem;
}

.careers-hero p{
    color:#94A3B8;
    margin-top:10px;
}

.careers-section{
    padding:80px 10%;
}

.careers-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.career-card{
    background:#1E293B;
    padding:25px;
    border-radius:18px;
    transition:0.3s;
    border:1px solid rgba(255,255,255,0.05);
}

.career-card:hover{
    transform:translateY(-8px);
    border-color:#EC4899;
}

.career-card h3{
    margin-bottom:10px;
}

.career-card p{
    color:#CBD5E1;
    margin-bottom:15px;
    line-height:1.6;
}

.career-card span{
    font-size:0.9rem;
    color:#EC4899;
}

.career-card span{
    font-size:0.9rem;
    color:#EC4899;
}

.apply-section p{
    color:#94A3B8;
    max-width:600px;
    margin:10px auto 30px;
}

.apply-btn{
    display:inline-block;
    padding:15px 35px;
    border-radius:50px;
    background:linear-gradient(135deg,#EC4899,#6D28D9);
    color:white;
    text-decoration:none;
    transition:0.3s;

    margin-top:20px;
}

.apply-section{
    max-width:900px;

    margin:80px auto;

    padding:60px;

    text-align:center;

    background:#1E293B;

    border-radius:25px;

    border:1px solid rgba(255,255,255,0.08);
}

.section-divider{
    display:flex;
    align-items:center;
    justify-content:center;

    margin:80px 10% 40px;
}

.section-divider::before,
.section-divider::after{
    content:"";
    flex:1;
    height:1px;
    background:rgba(255,255,255,0.1);
}

.section-divider span{
    padding:0 20px;
    color:#94A3B8;
    font-size:0.9rem;
    letter-spacing:2px;
    text-transform:uppercase;
}

.apply-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(236,72,153,0.25);
}

@media(max-width:768px){

    .careers-grid{
        grid-template-columns:1fr;
    }

    .careers-hero h1{
        font-size:2.5rem;
    }

}