/* FAQ Page Styles */

/* Page specific styles */
.page.faq {
    padding-top: 120px;
}

@media (max-width: 767.98px) {
    .page.faq {
        padding-top: 80px;
    }
}

/* FAQ intro section */
.faq-intro {
    margin-bottom: 80px;
}

.faq-intro h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #fff;
}

@media (max-width: 767.98px) {
    .faq-intro h1 {
        font-size: 2rem;
    }
}

/* FAQ Category */
.faq-category {
    margin-bottom: 80px;
}

.faq-category-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* FAQ Item */
.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.faq-question::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    min-width: 16px;
    background-image: url('../../../favicons/favicon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 4px;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 31px;
}

/* FAQ CTA section */
.faq-cta {
    text-align: center;
    padding: 80px 0;
    margin-bottom: 80px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
}

.faq-cta .cta-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #fff;
}

.faq-cta .cta-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}
