/* =========================================
   SERVICE FEATURES LIST
   ========================================= */
.bl-features-container {
    max-width: 800px;
    margin: 40px auto 60px;
    padding: 0 20px;
    text-align: center;
}

.bl-features-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9CA3AF;
    margin-bottom: 25px;
    display: inline-block;
    border-bottom: 2px solid #F3F4F6;
    padding-bottom: 5px;
}

.bl-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 40px;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.bl-features-list li {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #374151;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.bl-features-list li::before {
    content: "";
    flex-shrink: 0;
    width: 22px;
    height: 16px;
    margin-right: 12px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='32'%3E%3Cpath fill='none' stroke='%23FD7444' stroke-width='3' d='M42.154 1.735l-27.4 27.4L1.289 15.67'/%3E%3C/svg%3E");
}

/* Disclaimer Note Styling - DESKTOP */
.bl-features-note {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #F3F4F6;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #6B7280;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bl-features-note strong {
    color: #FFA685;
    font-weight: 700;
}

/* Button Wrapper for Prices Page - DESKTOP */
.bl-list-cta-wrap {
    text-align: center;
    margin-top: 35px;
    margin-bottom: 25px;
}

.bl-list-cta-wrap .bali-salmon-btn {
    display: inline-block;
    min-width: 220px;
    text-align: center;
}

/* =========================================
   MOBILE OPTIMIZATION
   ========================================= */
@media (max-width: 600px) {
    /* List styling */
    .bl-features-list {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .bl-features-list li {
        font-size: 15px;
    }
    
/* Button styling */
.bl-list-cta-wrap {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    margin-top: 25px !important;
    margin-bottom: 10px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

.bl-list-cta-wrap .bali-salmon-btn {
    display: inline-block !important;
    position: relative !important;
    width: auto !important;
    max-width: 280px !important;
    padding: 12px 20px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
    
    /* Footnote - closer to button on mobile */
    .bl-features-note {
        margin-top: 0px !important;
        padding-top: 0 !important;
        border-top: none !important;
    }
}