
.hero.career-hero {

    display: flex; 
    justify-content: center; 
    align-items: center; 
    min-height: 50vh; 
    text-align: center; 
    padding: 20px; 
}


.career-hero .section-content {
    max-width: 800px; 
    margin: 0 auto; 
    color: var(--text-primary); 
}


.career-hero h1 {
    font-size: 3.2rem; 
    margin-bottom: 30px;
    color: var(--text-primary); 
}


.career-hero h2 {
    font-size: 1.8em; 
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--text-links); 
    text-align: left; 
}


.career-hero p {
    font-size: 1em; 
    line-height: 1.6;
    margin-bottom: 1em; 
    text-align: left; 
    color: var(--text-secondary); 
}


.career-hero p strong {
    font-weight: 700;
    color: var(--text-primary); 
}



@media (max-width: 768px) {
    .hero.career-hero {
        min-height: auto; 
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .career-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .career-hero h2 {
        font-size: 1.5em; 
        margin-top: 30px;
    }

    .career-hero .section-content {
        padding: 0 10px; 
    }
}


body.dark-mode .career-hero .section-content {
    color: var(--text-primary); 
}

body.dark-mode .career-hero h1,
body.dark-mode .career-hero h2,
body.dark-mode .career-hero p strong {
    color: var(--text-primary); 
}

body.dark-mode .career-hero p {
    color: var(--text-secondary); 
}
body.dark-mode .career-hero h2 {
    color: var(--text-links); 
}