/* Container Background */
.BenefitsSection {
    background-color: #00a0e9;
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

/* Wrapper Layout */
.BenefitsSection .wrapper {
    max-width: 1280px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
}

/* Video Section */
.BenefitsSection .videoColumn {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.BenefitsSection .videoWrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background-color: #000;
}

.BenefitsSection .videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Header Styling */
.BenefitsSection .heading {
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 28px;
    color: #ffffff;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.BenefitsSection .accentSlash {
    color: #e52421;
    font-weight: 900;
    font-size: 2.2rem;
}

/* Benefits List Styling */
.BenefitsSection .benefitsList {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.BenefitsSection .benefitItem {
    font-size: 18px;
    line-height: 1.45;
    color: #ffffff;
}

.BenefitsSection .itemTitle {
    color: #ffcc00;
    /* Yellow accent highlight */
    font-weight: 700;
}

.BenefitsSection .itemDesc {
    color: #ffffff;
    font-weight: 400;
}

/* Mobile & Tablet Responsiveness */
@media (min-width:0px) and (max-width: 575.98px) {
    .BenefitsSection .benefitItem {
        font-size: 16px;
    }

    .BenefitsSection .wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .BenefitsSection {
        padding: 60px 0px;
    }

    .BenefitsSection .heading {
        font-size: 28px;
    }
}

@media (min-width:576px) and (max-width: 991.98px) {
    .BenefitsSection .wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .BenefitsSection .BenefitsSection {
        padding: 30px 20px;
    }

    .BenefitsSection .heading {
        font-size: 1.6rem;
    }
}