/* Fix for removing automatic numbering in menu items */
.menu-section .row {
    counter-reset: none !important;
    list-style: none !important;
}

.menu-section .col-md-6 {
    list-style: none !important;
    counter-increment: none !important;
}

.menu-section .col-md-6::before,
.menu-section .col-lg-4::before {
    display: none !important;
    content: none !important;
}

/* Override any automatic numbering from Bootstrap or CSS */
.menu-section ol,
.menu-section ul {
    counter-reset: none !important;
    list-style: none !important;
}

.menu-section ol li::before,
.menu-section ul li::before {
    display: none !important;
    content: none !important;
}

/* Force disable all automatic counters and list styling */
.menu-section * {
    list-style: none !important;
    counter-increment: none !important;
    counter-reset: none !important;
}

.menu-section *::before {
    content: none !important;
    display: none !important;
}

/* Bootstrap grid counter fix */
.row {
    counter-reset: none !important;
}

.col-md-6, .col-lg-4 {
    counter-increment: none !important;
}

.col-md-6::before, .col-lg-4::before {
    content: none !important;
    display: none !important;
}