.stylish-list {
    column-count: 2;
    column-gap: 3em;
    list-style: none;
    padding-left: 0;
    margin-top: 2em;
}

.stylish-list li {
    break-inside: avoid;
    margin-bottom: 1.5em;
    padding-left: 2.5em;
    position: relative;
    line-height: 1.6;
    color: #333;
    font-size: 1.05em;
    transition: transform 0.2s ease, color 0.2s ease;
}

/* Custom checkmark icon */
.stylish-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5em;
    height: 1.5em;
    background: linear-gradient(135deg, #173457 0%, #2c5aa0 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9em;
    box-shadow: 0 2px 8px rgba(23, 52, 87, 0.3);
}

.stylish-list li:hover {
    transform: translateX(5px);
    color: #173457;
}

.stylish-list li:hover:before {
    box-shadow: 0 4px 12px rgba(23, 52, 87, 0.5);
}

/* Responsive - single column on mobile */
@media (max-width: 768px) {
    .stylish-list {
        column-count: 1;
        column-gap: 0;
    }
    
    .stylish-list li {
        font-size: 1em;
    }
}