/**
 * Static Pages CSS
 * Styles for FAQ, Terms, and Privacy pages
 */

/* =================================
   FAQ Page Styles
   ================================= */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border-color: var(--sk-primary);
}

.faq-item.active {
    border-color: var(--sk-primary);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question-text {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    flex: 1;
}

.faq-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 10px;
    flex-shrink: 0;
}

.faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 50%;
    color: #64748b;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--sk-primary);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8fafc;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px 76px;
}

.faq-answer p {
    margin: 0;
    color: #4a5568;
    line-height: 1.8;
    font-size: 15px;
}

/* FAQ Responsive */
@media (max-width: 640px) {
    .faq-question {
        padding: 16px;
    }

    .faq-question-text {
        font-size: 14px;
        gap: 12px;
    }

    .faq-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .faq-item.active .faq-answer {
        padding: 0 16px 20px 58px;
    }
}

/* =================================
   Legal Content Styles (Terms & Privacy)
   ================================= */
.legal-content h2 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a202c;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2d3748;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content p {
    margin-bottom: 15px;
}
