.faq-page {
    background: #f8fafc;
    min-height: 100vh;
}

.faq-hero {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.faq-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.faq-hero p {
    max-width: 700px;
    margin: auto;
    color: #cbd5e1;
    line-height: 1.8;
}

.faq-container {
    max-width: 900px;
    margin: auto;
    padding: 70px 30px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #0f172a;
}

.faq-question span {
    font-size: 22px;
    color: #ff7a00;
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-answer p {
    color: #475569;
    line-height: 1.8;
}