/* Styles khusus careers.html */
body, h1, h2, h3, h4, h5, h6, .btn {
    font-family: 'Arial Narrow', Arial, sans-serif;
}

/* Why Join Us Section */
.why-join-us .card {
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(79,140,255,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.why-join-us .card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(79,140,255,0.18);
}

.open-positions .card {
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(110,214,255,0.10);
    transition: box-shadow 0.2s, transform 0.2s;
}

.open-positions .card:hover {
    box-shadow: 0 8px 32px rgba(110,214,255,0.18);
    transform: translateY(-4px) scale(1.01);
}

.application-process .rounded-circle {
    box-shadow: 0 2px 12px rgba(79,140,255,0.10);
    font-weight: bold;
    font-size: 1.5rem;
}

.application-process .text-center h3 {
    font-weight: 700;
}

.section-divider {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #4f8cff 0%, #6ed6ff 100%);
    border-radius: 3px;
    margin: 2rem auto 3rem auto;
} 