/* Header Styling */
.header {
    background-color: #f4f8fb;
    color: #003366;
    padding: 40px 20px;
    padding-bottom: 10px;
    text-align: center;
}

.header h1 {
    font-size: 3em;
    margin: 0;
    font-weight: 700;
    color: #003366;
}

.header p {
    font-size: 1.2em;
    margin: 10px;
    color: #003366;
}

/* Container Styling */
.container {
    width: 85%;
    margin: 0 auto;
    padding: 40px 0;
}

/* Employment Section Styling */
.employment-section {
    margin-top: 30px;
    padding: 30px;
    background-color: #f4f8fb;
    border-left: 5px solid #003366;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.employment-section:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.employment-section h2 {
    font-size: 2em;
    color: #003366;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    padding-left: 0;
}

.employment-section h2 i {
    margin-right: 10px;
    color: #003366;
}

/* Button for Job Openings */
.view-job-btn {
    display: inline-block;
    padding: 15px 25px;
    font-size: 1.2em;
    color: #fff;
    background-color: #0b3954;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.view-job-btn:hover {
    background-color: #002244;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Benefits List */
.benefits-list {
    list-style-type: none;
    padding: 0;
    margin: 15px 0;
}

.benefits-list li {
    font-size: 1.2em;
    color: #003366;
    margin: 8px 0;
}

/* Compliance Section Styling */
.e-verify {
    text-align: center;
    margin-top: 20px;
}

.e-verify img {
    width: 100px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.e-verify img:hover {
    transform: scale(1.1);
}

.compliance-links a {
    color: #003366;
    text-decoration: underline;
    margin: 0 8px;
    transition: color 0.3s ease;
}

.compliance-links a:hover {
    color: #002244;
}

/* Mobile Layout */
@media (max-width: 767px) {
    .container {
        width: 95%;
        padding: 20px 10px;
    }

    .header h1 {
        font-size: 2em;
    }

    .header p {
        font-size: 1em;
    }

    .employment-section {
        padding: 20px;
        margin-top: 20px;
    }

    .employment-section h2 {
        font-size: 1.8em;
        flex-direction: column;
        text-align: center;
    }

    .view-job-btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 1em;
    }

    .benefits-list li {
        font-size: 1em;
    }

    .e-verify img {
        width: 80px;
    }
}
