.tm-sc-list {
    list-style: none;
    transition: all 0.3s ease;
    margin-top: 30px;
    padding: 0;
}

.tm-sc-list li {
    font-weight: 600;
    line-height: 36px;
    font-size: 18px;
    color: #1f1f1f;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.tm-sc-list li svg,
.tm-sc-list li i {
    flex-shrink: 0;
}

.tm-sc-list li span {
    flex: 1;
}

/* Optional hover effect */
.tm-sc-list li:hover {
    color: #e11010;
    transition: color 0.3s ease;
}

.tm-sc-list li:hover svg path {
    fill: #1f1f1f;
    transition: fill 0.3s ease;
}

.tm-sc-list li:hover i {
    color: #1f1f1f;
    transition: color 0.3s ease;
}
