/* ============================================
   PAGE-SPECIFIC STYLES (FAQ, Support, etc.)
   These will be used when we update other pages
   ============================================ */

/* FAQ Accordion - Universal Style (matches service-template.css) */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #A0CBFF;
}

.faq-question .icon {
    transition: transform 0.3s ease;
    opacity: 0.5;
    flex-shrink: 0;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.faq-item.active .faq-question .icon {
    transform: rotate(180deg);
    opacity: 1;
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 0.9375rem;
    }
}

/* Page Headers */
.page-header {
    padding: 160px 0 60px;
    text-align: center;
    background: var(--bg-primary);
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Info Tables */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.info-table th,
.info-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.info-table th {
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-secondary);
}

.info-table td {
    color: var(--text-secondary);
}

/* Notice Boxes */
.notice-box {
    padding: 20px 24px;
    border-radius: var(--radius-md);
    margin: 24px 0;
}

.notice-box.blue {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.notice-box.amber {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.notice-box.red {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Quote Block */
.quote-block {
    padding: 24px;
    background: var(--bg-secondary);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 24px 0;
    font-style: italic;
    color: var(--text-secondary);
}