.hire-advantages {
    padding: 60px 0;
    width: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
}

.advantages-container {
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
}

.advantages-header {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto 50px auto;
}

.advantages-title {
    font-size: 42px;
    line-height: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    font-family: var(--font-heading, 'Lexend Deca', sans-serif);
}

.advantages-title .text-primary {
    color: var(--color-primary, #50b843);
}

.advantages-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    max-width: 950px;
    margin: 0 auto;
    font-weight: 500;
    font-family: var(--font-body, 'Inter', sans-serif);
}

/* 2 Column Grid for Advantages Boxes */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

.advantage-card {
    background-color: #e8f5e9;
    /* Light green background from image */
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(84, 178, 72, 0.1);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(84, 178, 72, 0.15);
}

.advantage-icon {
    margin-bottom: 20px;
}

.bag-icon-bg {
    width: 65px;
    height: 65px;
    background-color: transparent;
    /* Changed to transparent to show the actual image asset */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.advantage-custom-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.advantage-card-title {
    font-size: 26px;
    /* Standardized to 26px as per home page value-cards */
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    font-family: var(--font-heading, 'Lexend Deca', sans-serif);
}

.advantage-card-desc {
    font-size: 18px;
    /* Standardized to 18px as per home page value-cards */
    line-height: 1.5;
    color: #333333;
    font-weight: 500;
    font-family: var(--font-body, 'Inter', sans-serif);
}

/* Responsiveness */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantage-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .advantages-title {
        font-size: 32px;
    }

    .advantages-subtitle {
        font-size: 16px;
    }
}