.modular-features .feature-content ul {
    margin-left: 1.2rem;
    margin-bottom: 0;
    text-align: left; /* Ensures text stays left even if header is centered */
}

.modular-features .feature-content ul li {
    margin-bottom: 0 rem; 
    line-height: 1.0;     
}

/* Remove the bottom margin from the last bullet point */
.modular-features .feature-content ul li:last-child {
    margin-bottom: 0;
}

/* Ensure all feature boxes in the row are the same height */
.modular-features .columns {
    display: flex;
    flex-wrap: wrap;
}

.modular-features .column {
    display: flex;
}

.modular-features .frame-box {
    width: 100%; /* Makes sure the internal box fills the column height */
}

/* --------------- */

/* Align the icon and header container to the left */
.modular-features .feature-icon {
    display: flex;
    align-items: center; /* Keeps icon and text vertically aligned */
    justify-content: flex-start;
    text-align: left;
}

/* Ensure the header text specifically sits to the left */
.modular-features .feature-icon h6 {
    margin-left: 0.5rem; /* Space between icon and text */
    text-align: left;
    width: 100%;
}

/* Align the bullet list container to the left */
.modular-features .feature-content {
    text-align: left;
}

/* Ensure the list itself has no centering offsets */
.modular-features .feature-content ul {
    margin-left: 1.2rem; /* Standard indent for bullets */
    padding-left: 0;
}