.careers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.careers-header {
    text-align: center;
    margin-bottom: 3rem;
}

.careers-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.careers-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.careers-highlight {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-top: 1.5rem;
}

.accreditation-badge {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.accreditation-badge .badge {
    width: 250px;
    height: auto;
    transition: transform 0.3s ease;
}

.accreditation-badge .badge:hover {
    transform: scale(1.05);
}

/* Tablet and larger */
@media (min-width: 768px) {
    .accreditation-badge .badge {
        width: 300px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .careers-container {
        padding: 3rem 2rem;
    }
}

