/* FAQ Page Styles */
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: left;
    width: 100%;
}

/* Ensure content starts at top on this page */
.main-content {
    justify-content: flex-start;
    align-items: stretch;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    margin-top: 0;
}

.faq-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-top: 24px;
    margin-bottom: 16px;
}

.accordion {
    margin-bottom: 24px;
}

.accordion-button {
    font-weight: 600;
}

.accordion-body {
    color: #333333;
    line-height: 1.6;
}

/* Links */
.faq-container a {
    color: #000000;
    text-decoration: underline;
    font-weight: 700;
}

.faq-container a:hover {
    color: #666666;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-container {
        padding: 20px;
    }
    .faq-title {
        font-size: 32px;
    }
    .faq-section-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 28px;
    }
}

