```css
/*====================================================
=            RankTop AI SEO - Public CSS             =
====================================================*/

.rt-ai-faqs,
.rt-ai-faqs *,
.rt-ai-rating,
.rt-ai-rating * {
    font-family: var(--rt-ai-font-family, inherit) !important;
}

/*------------------------
    FAQS
-------------------------*/

.rt-ai-faqs {
    margin: 35px 0;
}

.rt-ai-faq-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 14px;
    transition: all .25s ease;
}

.rt-ai-faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}

.rt-ai-faq-question {
    width: 100%;
    border: 0;
    background: #f8f8f8;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    font: inherit;
    font-size: 17px;
    font-weight: 600;
    color: inherit;
    transition: background .25s ease;
}

.rt-ai-faq-question:hover {
    background: #f2f2f2;
}

.rt-ai-faq-question span {
    flex: 1;
}

.rt-ai-faq-question b {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 300;
    transition: .35s ease;
    flex-shrink: 0;
}

.rt-ai-faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 24px;
    line-height: 1.8;
    transition:
        max-height .45s cubic-bezier(.4, 0, .2, 1),
        opacity .30s ease,
        padding .30s ease;
}

.rt-ai-faq-answer p:last-child {
    margin-bottom: 0;
}

.rt-ai-faq-item.is-open {
    border-color: rgba(0, 0, 0, .15);
}

.rt-ai-faq-item.is-open .rt-ai-faq-question {
    background: #f5f5f5;
}

.rt-ai-faq-item.is-open .rt-ai-faq-answer {
    max-height: 1200px;
    opacity: 1;
    padding: 0 24px 24px;
}

.rt-ai-faq-item.is-open .rt-ai-faq-question b {
    transform: rotate(45deg);
    background: #111827;
    color: #fff;
}

/*------------------------
    Rating
-------------------------*/

.rt-ai-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
    font-size: 15px;
    color: inherit;
}

.rt-ai-stars {
    display: flex;
    gap: 2px;
    font-size: 18px;
    color: #f5b301;
    letter-spacing: 1px;
    line-height: 1;
}

.rt-ai-rating strong {
    font-size: 15px;
    font-weight: 700;
}

.rt-ai-rating span {
    color: inherit;
}

.rt-ai-admin-rate {
    margin-left: 10px;
    border: 0;
    background: #111827;
    color: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    cursor: pointer;
    transition: .25s;
    font-size: 12px;
    font-weight: 600;
}

.rt-ai-admin-rate:hover {
    background: #000;
    transform: translateY(-2px);
}

/*------------------------
    Responsive
-------------------------*/

@media(max-width:768px) {

    .rt-ai-faq-question {
        padding: 16px 18px;
        font-size: 15px;
    }

    .rt-ai-faq-answer {
        padding: 0 18px;
    }

    .rt-ai-faq-item.is-open .rt-ai-faq-answer {
        padding: 0 18px 18px;
    }

    .rt-ai-rating {
        flex-wrap: wrap;
        border-radius: 16px;
        gap: 8px;
    }

    .rt-ai-admin-rate {
        width: 100%;
        margin-left: 0;
    }

}

```