/* Help Center Page Specific Styles */

.help-center-page .page-title-banner {
    /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%); */
    /* Using primary color as base, can be customized */
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.help-center-page .page-title-banner .fa-question-circle {
    opacity: 0.8;
}
.help-center-page .page-title-banner h1 {
    color: var(--light-text);
}
.help-center-page .page-title-banner .lead {
    color: rgba(255,255,255,0.9);
    font-weight: 300;
}
.help-center-page .page-title-banner .form-control-lg {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.help-center-page .page-title-banner .btn-light {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    font-weight: 500;
}

.help-categories-section .help-category-card {
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--light-text);
}
.help-categories-section .help-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}
.help-categories-section .help-category-card .card-title {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--dark-text);
    margin-top: 0.5rem;
}
.help-categories-section .help-category-card .card-text {
    font-size: 0.9rem;
    min-height: 3.2em; /* Ensure consistent height for text block */
}
.help-categories-section .help-category-card .category-link {
    font-weight: 500;
}

.faq-list-section .faq-category-group {
    padding-top: 2rem; /* For scroll-spy offset if used */
    margin-top: -2rem; /* Negative margin to counteract padding for anchor links */
}
.faq-list-section .section-subtitle-faq {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}
.faq-list-section .section-subtitle-faq i {
    opacity: 0.8;
}

.faq-list-section .accordion-button {
    font-weight: 500;
    color: var(--dark-text);
    background-color: var(--light-text);
    border-bottom: 1px solid var(--border-color);
    font-size: 1.05rem; /* Slightly larger FAQ questions */
}
.faq-list-section .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(var(--primary-color-rgb), 0.05);
    box-shadow: inset 0 -1px 0 var(--border-color);
}
.faq-list-section .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-rgb), 0.25);
}
.faq-list-section .accordion-button::after { 
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-list-section .accordion-button:not(.collapsed)::after {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-list-section .accordion-body {
    font-size: 0.95rem;
    padding: 1.25rem;
    background-color: #fdfdfd; 
}
.faq-list-section .accordion-body a {
    text-decoration: underline;
}
