﻿.page-hero {
    padding: 3rem 1rem 2rem;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.08) 0%, transparent 100%);
    pointer-events: none;
}

.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.page-hero-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.page-hero h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.page-hero p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem 3rem;
}

.faq-category {
    margin-bottom: 2rem;
}

.faq-category-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .faq-category-title svg {
        width: 20px;
        height: 20px;
    }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s;
}

    .faq-item:hover {
        border-color: var(--border-hover);
    }

.faq-question {
    width: 100%;
    padding: 1.25rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

    .faq-question svg {
        width: 20px;
        height: 20px;
        color: var(--text-muted);
        transition: transform 0.3s;
        flex-shrink: 0;
    }

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

    .faq-answer-content a {
        color: var(--accent);
        text-decoration: none;
    }

    .faq-answer-content ul {
        margin: 0.75rem 0;
        padding-right: 1.25rem;
    }

    .faq-answer-content li {
        margin-bottom: 0.5rem;
    }

/* Contact Box */
.contact-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

    .contact-box h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .contact-box p {
        color: var(--text-secondary);
        margin-bottom: 1.5rem;
    }

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--gradient-1);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s;
}

    .contact-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    }

    .contact-btn svg {
        width: 18px;
        height: 18px;
    }