/* Centralização utilitária */
.text-center {
    text-align: center;
}

/* FAQ Page Styles - Enhanced Version */

/* Animations */


@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        max-height: 800px;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        max-height: 800px;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }
}

@keyframes expandSmooth {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    to {
        opacity: 1;
        max-height: 1000px;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}



/* Efeito de clique para botões específicos do FAQ */
.search-clear:active,
.search-suggestion:active,
.answer-btn:active,
.answer-helpful:active,
.contact-btn:active,
.live-chat-btn:active,
.accordion-toggle:active,
.question-item:active {
    transform: translateY(2px) scale(0.98) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.1s ease !important;
}



.animate-bounce {
    animation: bounce 2s infinite;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* Hero Section */
.faq-hero {
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.95), rgba(131, 56, 236, 0.95)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    color: white;
    padding: 5rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 40vh;
}

.faq-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--light-color, #f8f9fa), transparent);
    z-index: 2;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="2" fill="rgba(255,255,255,0.3)" opacity="0.6"><animate attributeName="opacity" values="0.3;0.8;0.3" dur="3s" repeatCount="indefinite"/></circle><circle cx="300" cy="200" r="1.5" fill="rgba(255,255,255,0.4)" opacity="0.5"><animate attributeName="opacity" values="0.2;0.7;0.2" dur="4s" repeatCount="indefinite"/></circle><circle cx="500" cy="150" r="2.5" fill="rgba(255,255,255,0.2)" opacity="0.4"><animate attributeName="opacity" values="0.1;0.6;0.1" dur="5s" repeatCount="indefinite"/></circle><circle cx="700" cy="300" r="1" fill="rgba(255,255,255,0.5)" opacity="0.6"><animate attributeName="opacity" values="0.3;0.9;0.3" dur="2s" repeatCount="indefinite"/></circle><circle cx="800" cy="100" r="2" fill="rgba(255,255,255,0.3)" opacity="0.5"><animate attributeName="opacity" values="0.2;0.7;0.2" dur="3.5s" repeatCount="indefinite"/></circle></svg>');
    animation: float 6s ease-in-out infinite;
}

.faq-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.faq-hero .container {
    position: relative;
    z-index: 2;
}

.faq-hero .hero-content {
    text-align: center !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.faq-hero .hero-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-align: center;
}

.faq-hero .hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center !important;
    width: 100%;
    display: block;
    background: linear-gradient(45deg, #fff, #e0f3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-hero .hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    text-align: center !important;
    width: 100%;
    display: block;
    max-width: 500px;
    line-height: 1.5;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* FAQ Section Spacing */
.faq-section {
    padding-top: 4rem;
    padding-bottom: 3rem;
}

/* Search Box - Enhanced */
.faq-search-container {
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.faq-search-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.search-header {
    text-align: center;
    margin-bottom: 2rem;
}

.search-header h3 {
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.search-header h3 i {
    color: #667eea;
    font-size: 1.2rem;
}

.search-header p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.8;
}

.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    font-size: 1.1rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.search-input {
    width: 100%;
    padding: 1.2rem 4rem 1.2rem 3.5rem;
    border: 2px solid #e8ecf0;
    border-radius: 15px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

.search-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.search-input:focus+.search-clear {
    opacity: 1;
    pointer-events: all;
}

.search-clear {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-clear:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #667eea;
}

.search-suggestions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.suggestion-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin-right: 0.5rem;
}

.search-suggestion {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.search-suggestion:hover {
    background: #667eea;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-search-container {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .search-header h3 {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .search-suggestions {
        justify-content: flex-start;
    }

    .suggestion-label {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
}

/* FAQ Container */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item.active::before {
    transform: scaleY(1);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-item.active {
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.faq-question {
    padding: 1.8rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.faq-question:hover::before {
    left: 100%;
}

.faq-question:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b4799 100%);
}

.question-content {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex: 1;
}

.question-icon {
    font-size: 1.4rem;
    opacity: 0.9;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.faq-question:hover .question-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
}

.question-badge {
    margin-left: auto;
    margin-right: 1rem;
}

.question-badge .badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.badge-primary {
    background: rgba(0, 123, 255, 0.8) !important;
}

.badge-success {
    background: rgba(40, 167, 69, 0.8) !important;
}

.badge-warning {
    background: rgba(255, 193, 7, 0.8) !important;
    color: #000 !important;
}

.badge-info {
    background: rgba(23, 162, 184, 0.8) !important;
}

.badge-secondary {
    background: rgba(108, 117, 125, 0.8) !important;
}

.badge-danger {
    background: rgba(220, 53, 69, 0.8) !important;
}

.faq-toggle {
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 25px;
    text-align: center;
    padding: 0.3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.faq-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
}

.faq-toggle i {
    transition: all 0.3s ease;
    transform-origin: center center;
    transform: rotate(0deg);
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
    color: #ff6b6b;
}

/* Answer Sections - Com Animação Super Suave */
.faq-answer {
    background: rgba(248, 249, 250, 0.95);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    opacity: 1;
    pointer-events: auto;
}

.answer-content {
    padding: 2rem;
    line-height: 1.8;
    color: #555;
    position: relative;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.answer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.answer-content p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.answer-highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.answer-highlight i {
    color: #667eea;
    font-size: 1.2rem;
}

.answer-highlight strong {
    color: #333;
    font-weight: 600;
}

/* Special Content Sections */
.contribution-ways,
.account-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.contrib-item,
.category-item,
.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid #667eea;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.contrib-item:hover,
.category-item:hover,
.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
    text-decoration: none;
}

.contrib-item i,
.category-item i,
.benefit-item i {
    color: #667eea;
    font-size: 1.1rem;
    min-width: 20px;
}

.report-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Estilos específicos para os números dos passos no FAQ */
.report-steps .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.9rem;
}

.step-text {
    flex: 1;
    color: #555;
    font-weight: 500;
}

.answer-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.answer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.answer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    color: white;
    text-decoration: none;
}

.answer-helpful {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border: 1px solid rgba(108, 117, 125, 0.2);
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.answer-helpful:hover {
    background: rgba(40, 167, 69, 0.1);
    border-color: #28a745;
    color: #28a745;
    transform: translateY(-1px);
}

.answer-helpful.marked-helpful {
    background: rgba(40, 167, 69, 0.1);
    border-color: #28a745;
    color: #28a745;
}

.answer-helpful.marked-helpful i {
    color: #28a745;
}

/* CTA Section - Enhanced */
.faq-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 4rem 3rem;
    border-radius: 25px;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1.2" fill="rgba(255,255,255,0.12)"/><circle cx="70" cy="70" r="0.8" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 8s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.faq-cta h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    text-align: center;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2.5rem 0;
}

.cta-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.cta-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.cta-stat span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.btn-gradient {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-gradient.primary {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-gradient.primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.btn-gradient.secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-gradient.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

.cta-footer {
    margin-top: 2rem;
    opacity: 0.8;
}

.cta-footer p {
    font-size: 0.95rem;
    margin: 0;
    text-align: center !important;
}

/* FAQ Statistics */
.faq-stats {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    font-size: 1.3rem;
}

.stat-info h3 {
    margin: 0 0 0.3rem 0;
    font-size: 1.8rem;
    font-weight: 800;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-hero {
        padding: 4rem 0 2rem;
        min-height: 30vh;
    }

    .faq-section {
        padding-top: 2.5rem;
        padding-bottom: 2rem;
    }

    .faq-hero .hero-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .faq-hero .hero-title {
        font-size: 2.2rem;
    }

    .faq-hero .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .stat-item {
        min-width: 150px;
    }

    .faq-question {
        padding: 1.2rem;
        flex-direction: column;
        gap: 1rem;
        text-align: left;
    }

    .question-content {
        width: 100%;
    }

    .question-badge {
        margin: 0;
    }

    .faq-toggle {
        align-self: flex-end;
    }

    .answer-actions {
        flex-direction: column;
    }

    .cta-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .contribution-ways,
    .account-benefits {
        grid-template-columns: 1fr;
    }
}

/* Hidden/Filtered Items */
.faq-item.hidden {
    display: none;
}

/* No Results Message */
.no-results-message {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    border: 2px dashed #ddd;
    margin: 2rem 0;
}

.no-results-message i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.no-results-message h3 {
    color: #666;
    margin-bottom: 1rem;
}

.no-results-message p {
    color: #999;
}
