.bg-overlay {
    position: relative;
}

.bg-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.bg-overlay>* {
    position: relative;
    z-index: 2;
}

/* Mobil uyum düzeltmesi */
@media (max-width: 767px) {
    .feature-grid-wrap.style2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        /* Elemanlar arasında boşluk */
    }

    .feature-grid.style2 {
        width: 100%;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .feature-grid_icon img {
        width: 60px;
        height: auto;
        margin-bottom: 10px;
    }

    .feature-grid_text {
        font-size: 15px;
        line-height: 1.6;
        padding: 0 10px;
    }
}