.text-component ul {
    list-style-type: none;
    margin-bottom: 20px;
    padding: 0;
}

.text-component ul li {
    position: relative;
    padding-left: 30px;
}

.text-component ul li:not(:last-child) {
    margin-bottom: 15px;
}

.text-component ul li:before {
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    border: 2px solid var(--secondary-color); 
    border-radius: 3px;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 3px;
}

.text-component ul li:after {
    content: 'L';
    display: block;
    width: 25px;
    height: 25px;
    font-size: 16px;
    color: var(--secondary-color);
    position: absolute;
    left: -6px;
    top: -4px;
    font-weight: bold;
    transform: scaleX(-1) rotate(-35deg);
}

.text-component a {
    color: var(--primary-color);
}

.text-component a:hover {
    text-decoration: underline;
}
