.pricing-section{
    max-width:1200px;
    margin:auto;
    margin-top: 75px;
}

.pricing-container{
    background:#F7F7F7;
    border-radius:20px;
    padding:40px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:75px;
    align-items:start;
}

.plan{
    display:flex;
    flex-direction:column;
    min-height:620px;
}
.plan h3, .desc, .period, .small-text, .plan h4, .feature-note, .plan ul li{
      font-family: "Inter", sans-serif;
}
.plan h3{
    font-size:20px;
    font-weight:500;
    color:#111;
    margin-bottom:10px;
}
.growth-top{
    margin-top: 45px;
}

.desc{
    font-size:16px;
    color:#666;
    line-height:1.5;
    margin-bottom:40px;
}

.price-box{
    display:flex;
    align-items:flex-end;
    margin-bottom:15px;
}

.price{
font-family: "Outfit", sans-serif;
font-size: 40px;
font-weight: 400;
line-height: 56px;
}
.period{
    margin-left:8px;
    font-size:16px;
    color:#444;
    margin-bottom:10px;
}

.small-text{
    color: #868686;
    font-size: 14px;
    line-height: 1.4;
    max-width: 220px;
    font-weight: normal;
}

.btn{
    display:block;
    width: 100%;
    text-align:center;
    text-decoration:none;
    background:#1f1f1f;
    color:#fff;
    padding:10px;
    border-radius:4px;
    margin-top:35px;
    font-size:18px;
    font-weight:500;
}
.btn:hover {
    color: #fff;
}
.divider{
    height:1px;
    background:#ddd;
    margin:40px 0;
}

.plan h4{
    font-size:18px;
    font-weight:600;
    margin-bottom:10px;
}

.feature-note{
    color:#8f8f8f;
    margin-bottom:25px;
}

.plan ul{
    list-style:none;
    padding: 0px !important;
}

.plan ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:22px;
    font-size:16px;
    color:#222;
}

.plan ul li:before{
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;   
    border-radius: 50%;
    background-image: url('images/tick.svg');
    background-repeat: no-repeat;
    background-position: center;
}

.featured{
    background:#fff;
    border:1px solid #d7d7d7;
    border-radius:22px;
    padding:28px;
    margin-top:-75px;
    box-shadow:0 2px 8px rgba(0,0,0,.04);
    position:relative;
}

.tag{
    position:absolute;
    top:20px;
    right:25px;
    background:#dff1fb;
    color:#333;
    font-size:14px;
    padding:8px 18px;
    border-radius:20px;
}


.faq-section{
    max-width:1100px;
    margin:40px auto;
}

.faq-title{
    font-size:30px;
    font-weight:600;
    margin-bottom:40px;
    font-family: "Inter", sans-serif;
}

.faq-item{
    border-top:1px solid #d9d9d9;
}
.faq-item span{
    font-family: "Inter", sans-serif;
    font-size: 18px;
}
.faq-item:last-child{
    border-bottom:1px solid #d9d9d9;
}

.faq-question{
    width:100%;
    border:none;
    background:none;
    text-align:left;
    padding:32px 0;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:20px;
    color:#222;
}

.icon{
    font-size:28px;
    transition:transform .3s ease;
}

.faq-item.active .icon{
    transform:rotate(180deg);
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    padding:0 0 25px;
    color:#333;
    line-height:1.8;
    font-size:14px;
    font-family: "Inter", sans-serif;
}

/* Open by default */
.faq-item.active .faq-answer{
    max-height:300px;
}



@media (max-width:991px){

    .pricing-container{
        grid-template-columns:repeat(2,1fr);
    }

    .featured{
        grid-column: 1 / 3;
        margin: -40px 100px 25px;
    }
    .faq-section{
        padding: 0 20px;
    }
    .faq-section{
        padding: 0 20px;
    }
}
@media (min-width: 768px) and (max-width: 1024px) { 
.faq-section{
        padding: 0 20px;
    }
}
@media (min-width: 320px) and (max-width: 480px) {
    .pricing-container {
display: block;
 background: transparent;
 padding: 0px 25px;
}
.muse-banner-inh{
    padding: 0 20px 0px !important;
}
.plan {
    background: #F7F7F7;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 16px;
    border:1px solid #DADADA;
}
.featured {
margin: auto;
background: #fff;
}
    .faq-section{
        padding: 0 20px;
    }
}