.faq-page {
    background: #f8fafc;
}

.faq-content {
    padding: 2rem 0 6rem;
}

.faq-content .faq-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 6rem 0;
    text-align: center;
    color: white;
    margin-bottom: 4rem;
}

.faq-content .faq-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-content .faq-hero .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.faq-content .faq-search {
    max-width: 600px;
    margin: 0 auto 4rem;
}

.faq-content .search-box {
    background: white;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-content .search-box i {
    color: #64748b;
}

.faq-content .search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #1e293b;
}

.faq-content .search-box input::placeholder {
    color: #94a3b8;
}

.faq-content .faq-categories {
    max-width: 800px;
    margin: 0 auto;
}

.faq-content .category-section {
    margin-bottom: 4rem;
}

.faq-content .category-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.faq-content .faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-content .faq-item {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-content .faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 500;
    color: #1e293b;
    transition: all 0.3s ease;
}

.faq-content .faq-question:hover {
    background: #f8fafc;
}

.faq-content .faq-question.active {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.faq-content .faq-question i {
    transition: transform 0.3s ease;
}

.faq-content .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content .faq-answer p {
    padding: 1.5rem;
    padding-top: 0;
    color: #64748b;
    line-height: 1.6;
}

.faq-content .faq-answer ul {
    padding: 0 1.5rem 1.5rem 3rem;
    color: #64748b;
}

.faq-content .faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-content .faq-contact {
    max-width: 600px;
    margin: 4rem auto 0;
}

.faq-content .contact-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-content .contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.faq-content .contact-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.faq-content .contact-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.faq-content .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.faq-content .btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .faq-content .faq-hero h1 {
        font-size: 2.5rem;
    }

    .faq-content .faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }

    .faq-content .contact-actions {
        flex-direction: column;
    }

    .faq-content .btn-primary {
        width: 100%;
        justify-content: center;
    }
}