.bm-price-card{
    position:relative;
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    padding:28px 28px 25px;
    display:flex;
    flex-direction:column;
    height:100%;
    border:1px solid #edf2f7;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:.35s ease;
}
.bm-price-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}
.bm-card-top{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#06A3DA,#0d6efd);
}
.bm-icon{
    width:64px;
    height:64px;
    font-size:26px;
    margin:15px auto 20px;
    border-radius:50%;
    background:#eef9ff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#06A3DA;
    transition:.35s;
}
.bm-price-card:hover .bm-icon{
    transform:translateY(-5px);
}
.bm-plan{
    display:inline-block;
    margin:0 auto 20px;
    padding:8px 22px;
    border-radius:40px;
    background:#eef9ff;
    color:#06A3DA;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}
.bm-price-card h3{
    font-size:34px;
    font-weight:700;
    color:#091E3E;
   text-align:center;
    margin-bottom:12px;
    line-height:1.25;
}
.bm-price-card p{
   text-align:center;
    color:#6b7280;
    font-size:15px;
    line-height:1.6;
    margin-bottom:20px;
}
.bm-price{
    text-align:center;
    font-size:26px;
    font-weight:800;
    color:#091E3E;
    line-height:1.15;
    margin-bottom:20px;
}
.bm-price small{
    display:block;
    margin-top:8px;
    font-size:14px;
    font-weight:500;
    color:#6b7280;
    font-weight:500;
}
.bm-price-card ul{
    margin:0;
    padding:0;
    list-style:none;
    flex:1;
}
.bm-price-card ul li{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:15px;
    padding:10px 0;
    color:#4b5563;
    border-bottom:1px solid #edf2f7;
}
.bm-price-card ul li:last-child{
    border-bottom:none;
}
.bm-price-card ul li i{
    width:24px;
    height:24px;
    border-radius:50%;
    background:#ecfdf3;
    color:#16a34a;
   display:flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
    flex-shrink:0;
}
.bm-btn-primary,
.bm-btn-outline{
    margin-top:30px;
    width:100%;
    height:48px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
}
.bm-ribbon{
    position:absolute;
    top:18px;
    left:50%;
   transform:translateX(-50%);
    background:#06A3DA;
    color:#fff;
    padding:8px 22px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
   letter-spacing:1px;
    z-index:10;
}
.bm-price-card.featured{
    border:2px solid #06A3DA;
    transform:translateY(-12px);
}
.bm-price-card.featured:hover{
    transform:translateY(-18px);
}
.bm-price-card::before{
    width:140px;
    height:140px;
    top:-70px;
    right:-70px;
}
.bm-price-card::after{
    width:90px;
    height:90px;
    bottom:-45px;
    left:-45px;
}
/* FAQ Section */
.faq-section{
    background:#fff;
    padding:80px 0;
}
/* Accordion */
.accordion-item{
    border:1px solid #E5E7EB;
    border-radius:10px;
    margin-bottom:15px;
    overflow:hidden;
}
.accordion-button{
    background:#0B2F6B;
    color:#fff;
    font-size:18px;
    font-weight:600;
    padding:18px 25px;
    box-shadow:none;
}
.accordion-button:not(.collapsed){
    background:#15408B;
    color:#fff;
}
.accordion-button:hover{
    background:#15408B;
}
.accordion-button:focus{
    box-shadow:none;
    border:none;
}
.accordion-body{
    background:#F8FAFC;
    color:#4B5563;
    font-size:16px;
    line-height:1.8;
    padding:25px;
}
.accordion-button::after{
    filter:brightness(0) invert(1);
}
.accordion-item:last-child{
    margin-bottom:0;
}
.faq-title{
    color:#0B2F6B;
    font-size:48px;
    font-weight:700;
}
.faq-subtitle{
    color:#6B7280;
    letter-spacing:2px;
    text-transform:uppercase;
}
