.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.page-header {
    text-align: center;
    padding: 20px 0 20px;
    background: linear-gradient(135deg, var(--secondary-color1), var(--primary-color));
    color: var(--white);
    margin-bottom: 60px;
    border-radius: 10px;
    min-height: 15vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    background: var(--surface-color);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-light);
}

.faq-question h3 {
    color: var(--secondary-color1);
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--secondary-color2);
    transition: transform 0.3s ease;
}

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

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 200px;
}

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

.faq-answer p {
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
}