.oc-features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

.oc-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 20px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.oc-feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fdf2ea;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.oc-feature-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.oc-feature-text h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 5px 0;
}

.oc-feature-text p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}
