.career-section {
    background-color: #f7f9fc;
    padding: 60px 0;
}

.career-card {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.career-card h5 {
    color: #0a2568;
    font-weight: 600;
    margin-bottom: 15px;
}

.career-card p {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.career-card .apply-btn {
    background-color: #2f77ed;
    color: white;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.career-card .apply-btn:hover {
    background-color: #0a2568;
}

.career-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.career-card ul li {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.career-card ul li i {
    color: #00adef;
    margin-right: 10px;
}

.application-form {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.application-form h3 {
    color: #0a2568;
    margin-bottom: 20px;
    font-weight: 600;
}

.application-form label {
    font-weight: 500;
    color: #0a2568;
}

.application-form .btn-primary {
    background-color: #2f77ed;
    border: none;
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.application-form .btn-primary:hover {
    background-color: #0a2568;
}