.simple_text_lg {
  margin-bottom: .7rem;
  font-size: 1.17em;
}

ul.list-checks {
  list-style: none; 
  margin: 0; 
  padding: 0;
}
ul.list-checks > li {
  width: fit-content; 
  margin: 0; 
  padding: 5px 0 5px 56px; 
  box-sizing: border-box; 
  background-image: url('https://static.insales-cdn.com/files/1/5774/36484750/original/Vector.svg'); 
  background-position: top 4px left 16px; 
  background-repeat: no-repeat; 
  background-size: 30px 30px;
}

/* Для статей */
        .custom-list-disk {
            list-style: disc !important;
        }
        .custom-list-disk li {
            margin: 10px 0 10px 0;
        }
        .custom-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
        
        .custom-list li {
            position: relative;
            padding: 15px 0 15px 60px;
            margin-bottom: 15px;
            font-size: 16px;
            line-height: 1.5;
        }
        
        .custom-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 15px;
            width: 30px;
            height: 30px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%233366cc"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
        }
        
        .custom-list strong {
            color: #2c3e50;
            display: block;
            margin-bottom: 5px;
        }

        .columns-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
            margin: 20px 0;
        }
        
        .column {
            flex: 1;
            min-width: 300px;
            background: #f9f9f9;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .column img {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
            margin-bottom: 15px;
        }
        
        .column p {
            font-size: 14px;
            line-height: 1.4;
            color: #333;
        }
        
        /* Мобильная версия */
        @media (max-width: 768px) {
            .columns-container {
                flex-direction: column;
            }
            
            .column {
                min-width: 100%;
                margin-bottom: 20px;
            }
        }
