/* Staffing Page Styles */
.staffing-page-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 0;
}

/* Hero Section */
.staffing-hero {
    position: relative;
    width: 100%;
    margin-bottom:0px;
}

.staffing-hero-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.staffing-hero-content {
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 30px;
    background-color: transparent;
    max-width: 80%;
}

.staffing-subheading {
    font-size: 15px;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: 400;
    color: #000;
}

.staffing-title {
    font-size: 32px;
    margin: 0;
    font-weight: 500;
    color: #000;
}

/* Section 1 & 2 */

.staffing-section-1,
.staffing-section-2 {
    padding: 80px 0;
    background-color: #fff;
}

.staffing-section-1-inner,
.staffing-section-2-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
section.staffing-section-1.fade-in.active{

    padding-top: 40px;
}
section.staffing-section-2.fade-in.active{
    padding-top: 0; 
}
.section-title-container {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    padding-top: 0;
}

.section-title-container h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #333;
}

.two-column-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 82px;
    align-items: center;
}
.two-column-grid a{
text-decoration: none;
}
.two-column-grid.reverse {
    flex-direction: row-reverse;
}

.left-column,
.right-column {
    flex: 1;
    min-width: 300px;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.content-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px
    margin-bottom: 20px;
    word-break: keep-all;
    color: #333;
}

.text-content {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* Section 3 (Banner) */
.staffing-section-3 {
    padding: 80px 0;
    background-color: #f5f5f5;
}
section.staffing-section-3.fade-in.active {
    padding: 0;
}

.staffing-section-3-inner {
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    position: relative;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.banner-title {
        font-size: 36px;
        margin-bottom: 0px;
        font-family: 'Melvinsans Thin Regular' !important;
}

.banner-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.banner-button {
    display: inline-block;
    max-width: 231px;
    width: 100%;
    font-size: 13px;
    letter-spacing: 0.065em;
    line-height: 15.95px;
    padding: 10px 15px;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    text-align: center;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

.banner-button:hover {
    background-color: #333;
    color: #fff;
}

/* Animation Classes */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .staffing-hero-image {
        height: 400px;
    }

    .staffing-title {
        font-size: 28px;
    }

    .two-column-grid {
        flex-direction: column;
        gap: 20px;
    }
    .staffing-section-2-inner .two-column-grid {
        flex-direction: column-reverse;
    }

    .two-column-grid.reverse {
        flex-direction: column;
    }

    .left-column,
    .right-column {
        width: 100%;
    }

    .section-title-container h2 {
        font-size: 24px;
    }

    .content-title {
        font-size: 20px;
    }

    .banner-title {
        font-size: 28px;
    }
    .two-column-grid img{
    width: 100%;
    }
}

@media (max-width: 480px) {
    .staffing-hero-image {
        height: 300px;
    }

    .staffing-title {
        font-size: 24px;
    }

    .staffing-section-1,
    .staffing-section-2,
    .staffing-section-3 {
        padding: 40px 0;
    }

    .banner-button {
        padding: 10px 20px;
    }
}