/* ========================================
   FAQ PAGE STYLES
   ======================================== */

.faq-full-section {
    padding: 80px 0;
    background: var(--darker-bg);
}

.faq-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.faq-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

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

.faq-category {
    margin-bottom: 48px;
}

.faq-category-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.faq-item-full {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-full:hover {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--light-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-orange);
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.faq-item-full.open .faq-icon {
    transform: rotate(180deg);
}

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

.faq-item-full.open .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    padding: 0 24px 20px 24px;
    margin: 0;
}

.faq-answer ul {
    list-style: none;
    padding: 0 24px 20px 44px;
    margin: 0;
}

.faq-answer li {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 8px 0;
    position: relative;
    padding-left: 20px;
}

.faq-answer li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
}
