 table.rct-cost-table tr, th, td {
    border: 1px solid;
    padding: 10px;
}
        .faq-section{
    padding:80px 20px;
    background:#f8fbff;
}

.section-heading{
    text-align:center;
    max-width:700px;
    margin:0 auto 50px;
}

.section-heading span{
    display:inline-block;
    background:#e8f1ff;
    color:#0d6efd;
    padding:8px 16px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.section-heading h2{
    font-size:40px;
    margin-bottom:15px;
    color:#222;
}

.section-heading p{
    color:#666;
    line-height:1.7;
}

.faq-wrapper{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border-radius:14px;
    margin-bottom:15px;
    overflow:hidden;
    box-shadow:0 5px 25px rgba(0,0,0,0.06);
}

.faq-question{
    width:100%;
    border:none;
    background:none;
    padding:22px 25px;
    text-align:left;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq-question span{
    font-size:24px;
    color:#0d6efd;
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    padding:0 25px 25px;
    color:#666;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}