/* Fix for page banner in careers.html */

/* Reset any potential conflicting styles */
body {
    padding-top: 80px; /* Adjust based on header height */
}

/* Ensure the page banner is visible */
.page-banner {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    background-color: #f5f5f5;
    padding: 40px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

/* Style the page banner heading */
.page-banner h2 {
    display: block !important;
    visibility: visible !important;
    font-size: 32px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 15px;
}

/* Style the page banner paragraph */
.page-banner p {
    display: block !important;
    visibility: visible !important;
    font-size: 18px;
    color: #555;
    max-width: 800px;
}


