/* FAQ Page Specific Styles */
.faq-page {
    background-color: #fff;
    color: #333;
}

.faq-hero {
    background: #000;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.faq-hero__title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.faq-content {
    padding: 80px 20px;
}

.faq-content__inner {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category__title {
    font-size: 1.5rem;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item__question {
    width: 100%;
    padding: 25px 0;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item__question::after {
    content: '+';
    font-size: 1.5rem;
    color: #999;
    transition: transform 0.3s;
}

.faq-item.is-active .faq-item__question::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.is-active .faq-item__answer {
    max-height: 1000px;
}

.faq-item__answer p {
    padding-bottom: 25px;
    line-height: 1.8;
    color: #666;
}

.faq-cta {
    text-align: center;
    background: #f8f8f8;
    padding: 40px;
    margin-top: 80px;
    border-radius: 8px;
}

.btn-primary {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: bold;
    transition: opacity 0.3s;
}

@media (max-width: 768px) {
    .faq-hero__title { font-size: 2rem; }
    .faq-hero { padding: 60px 20px; }
}