.home-benefits {
    padding: 64px 0;
    background: #fff;
}
.home-benefits__heading {
    color: #F80;
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    margin-bottom: 60px;
}
.home-benefits__heading strong {
    color: #013475;
}
.home-benefits__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.home-benefits__item {
    position: relative;
    flex: 0 1 300px;
    min-height: 493px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-color: #013475;
    overflow: hidden;
}

.home-benefits__overlay {
    position: absolute;
    inset: 0;
    background: rgba(1, 52, 117, 0.7);
}

.home-benefits__content {
    position: relative;
    z-index: 1;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.home-benefits__icon {
    width: 49px;
    height: 49px;
    object-fit: contain;
    margin-bottom: 20px;
}

.home-benefits__title {
    color: #f1f1f1;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 16px;
}

.home-benefits__desc {
    color: #fafafa;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* Tablet */
@media (max-width: 1024px) {
    .home-benefits {
        padding: 48px 0;
    }

    .home-benefits__item {
        flex-basis: calc(50% - 12px);
        min-height: 320px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .home-benefits__heading {
        padding: 0 16px;
    }
    .home-benefits {
        padding: 32px 0;
    }

    .home-benefits__grid {
        gap: 16px;
        padding: 0 16px;
    }

    .home-benefits__item {
        flex-basis: 100%;
        min-height: 220px;
    }

    .home-benefits__content {
        padding: 20px;
    }

    .home-benefits__icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
}
