.re-icon-wrap {
    width: 100%;
    margin-bottom: 35px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
}

.re-icon-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.re-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.re-icon-box {
    text-align: center;
    padding: 22px 10px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: .2s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.re-icon-box:hover {
    background: rgba(0,0,0,0.05);
    border-color: #ddd;
}

.re-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin: 0 auto 6px;
}

.re-icon-text {
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .re-icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
