.recruitment-banner {
    position: relative;
    width: 100%;
    height: 550px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Corrected: Align left */
    color: var(--aip-white);
    text-align: left;
    /* Corrected: Align left */
}

.recruitment-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    /* Corrected: Darker overlay */
    z-index: 1;
}

.recruitment-banner-content {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.recruitment-banner h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.recruitment-banner p {
    font-size: 1.25rem;
    line-height: 1.3;
    opacity: 0.95;
}

.recruitment-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--aip-heading);
    margin-bottom: 20px;
    /* Reduced to pull divider closer */
}

.section-divider {
    width: 100%;
    max-width: 1140px;
    height: 1px;
    /* Looks thinner in screenshot */
    background-color: var(--aip-primary);
    margin: 0 auto 50px;
    opacity: 0.3;
    /* Subtle as in screenshot */
}

/* Why choose us cards */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.commitment-card {
    background: var(--aip-white);
    border-radius: 12px;
    padding: 28px 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--aip-primary-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.commitment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.commitment-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--aip-text-title);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.commitment-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.commitment-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--aip-text-content);
    line-height: 1.5;
}

.commitment-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--aip-primary);
    font-weight: bold;
}

.career-section {
    background-color: #003399;
    /* Deep blue background from image 16.png */
    padding: 80px 0;
    color: white;
    text-align: center;
}

.career-section .section-title {
    color: white !important;
    margin-bottom: 30px;
}

.career-section .divider {
    width: 100%;
    max-width: 1140px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 0 auto 50px;
}

.career-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: left;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.career-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s, box-shadow 0.2s;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.career-card .logo {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.career-card .logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.career-card .info {
    flex: 1;
}

.career-card .info h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #111;
    margin: 0 0 10px 0;
}

.career-card .info .location-tag {
    background: #f0f2f5;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1rem;
    color: #555;
    display: inline-block;
}

/* Application Process Refinement */
.process-container {
    background: var(--aip-white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--aip-primary-border);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.process-image {
    width: 55%;
    height: 100%;
    object-fit: cover;
    align-self: center;
    border-radius: 70px;
    padding: 50px;
}

.process-content {
    width: 40%;
    padding: 30px 0px 30px 25px;
}

.process-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-step {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    align-items: flex-start;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-num {
    flex-shrink: 0;
    width: 24px;
    font-weight: 700;
    color: #111;
    font-size: 17px;
}

.step-text {
    flex: 1;
}

.process-step strong {
    font-weight: 700;
    color: #111;
    font-size: 17px;
}

.step-text span {
    display: block;
    margin-top: 4px;
    padding-left: 10px;
    color: #555;
}


@media (max-width: 992px) {
    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-container {
        flex-direction: column;
    }

    .process-image,
    .process-content {
        width: 100%;
        padding: 30px;
    }
}

@media (max-width: 768px) {

    .commitment-grid,
    .career-grid {
        grid-template-columns: 1fr;
    }

    .career-section {
        padding: 40px 0;
    }

    .career-section .section-title {
        font-size: 1.5rem !important;
        margin-bottom: 15px;
    }

    .career-section .divider {
        margin-bottom: 30px;
    }

    .career-subtitle {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .career-card {
        padding: 15px;
        gap: 15px;
    }

    .career-card .logo {
        width: 60px;
        height: 60px;
    }

    .career-card h4 {
        font-size: 1rem;
    }

    .recruitment-banner {
        height: 260px;
    }

    .recruitment-banner-content {
        padding: 0 15px;
    }

    .recruitment-banner h1 {
        font-size: 18px !important;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .recruitment-banner p {
        font-size: 16px !important;
        max-width: 100%;
        line-height: 1.3;
    }

    .process-content {
        padding: 20px 28px;
    }
}