/* Career content in card format */
.career-card {
    background-color: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 900px;
    margin:  auto ;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
    

.career-mission {
    font-size: 1.05rem;
    color: var(--text-color-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.career-terms {
    font-size: 0.9rem;
    color: var(--text-color-medium);
}

.terms-link {
    color: var(--secondary-orange);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: var(--secondary-orange-hover);
}

/* Responsive fix */
@media (max-width: 768px) {
    .career-card {
        padding: 1.5rem;
    }
}