/* ============================================
   FAQ PAGE - MODERN DESIGN
   ============================================ */

:root {
    --faq-primary: #083300;
    --faq-accent: #e8a819;
    --faq-dark: #0a1628;
    --faq-light: #f8fafc;
    --faq-text: #334155;
    --faq-text-light: #64748b;
    --faq-border: rgba(8, 51, 0, 0.1);
    --faq-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --faq-radius: 16px;
    --faq-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--faq-light);
    color: var(--faq-text);
    line-height: 1.6;
    min-height: 100vh;
}

/* ============================================
   BACK BUTTON
   ============================================ */

.back-home-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--faq-border);
    border-radius: 50px;
    color: var(--faq-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--faq-transition);
    box-shadow: var(--faq-shadow);
}

.back-home-btn:hover {
    background: var(--faq-primary);
    color: white;
    transform: translateX(-3px);
}

.back-home-btn i {
    font-size: 0.85rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.faq-hero {
    position: relative;
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, var(--faq-primary) 0%, #0d4a00 50%, #052200 100%);
    overflow: hidden;
}

.faq-hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(232, 168, 25, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(232, 168, 25, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.faq-hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.faq-logo {
    margin-bottom: 30px;
}

.faq-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.faq-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.faq-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

/* ============================================
   SEARCH BOX
   ============================================ */

.faq-search-container {
    max-width: 600px;
    margin: 0 auto;
}

.faq-search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 60px;
    padding: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.faq-search-icon {
    position: absolute;
    left: 24px;
    color: var(--faq-text-light);
    font-size: 1.1rem;
}

.faq-search-input {
    flex: 1;
    padding: 18px 24px 18px 56px;
    border: none;
    background: transparent;
    font-size: 1.05rem;
    font-family: inherit;
    color: var(--faq-text);
    outline: none;
}

.faq-search-input::placeholder {
    color: var(--faq-text-light);
}

.faq-search-clear {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 8px;
    background: var(--faq-light);
    border: none;
    border-radius: 50%;
    color: var(--faq-text-light);
    cursor: pointer;
    transition: var(--faq-transition);
}

.faq-search-clear:hover {
    background: var(--faq-primary);
    color: white;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.faq-main {
    padding: 40px 20px 60px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   CATEGORY TABS
   ============================================ */

.faq-categories-container {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-categories-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--faq-border);
    border-radius: 50%;
    color: var(--faq-primary);
    cursor: pointer;
    transition: var(--faq-transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    z-index: 10;
}

.faq-categories-arrow:hover:not(:disabled) {
    background: var(--faq-primary);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(8, 51, 0, 0.2);
}

.faq-categories-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.faq-categories-arrow i {
    font-size: 0.9rem;
}

.faq-categories-wrapper {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.faq-categories-wrapper::-webkit-scrollbar {
    display: none;
}

.faq-categories {
    display: flex;
    gap: 10px;
    padding: 4px;
    min-width: max-content;
}

.faq-category-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border: 2px solid var(--faq-border);
    border-radius: 50px;
    color: var(--faq-text);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--faq-transition);
    white-space: nowrap;
}

.faq-category-btn i {
    font-size: 0.9rem;
    opacity: 0.7;
}

.faq-category-btn:hover {
    border-color: var(--faq-primary);
    color: var(--faq-primary);
}

.faq-category-btn.active {
    background: var(--faq-primary);
    border-color: var(--faq-primary);
    color: white;
}

.faq-category-btn.active i {
    opacity: 1;
}

/* ============================================
   RESULTS INFO
   ============================================ */

.faq-results-info {
    margin-bottom: 24px;
    padding-left: 4px;
}

.faq-results-info span {
    font-size: 0.9rem;
    color: var(--faq-text-light);
    font-weight: 500;
}

/* ============================================
   ARTICLES GRID
   ============================================ */

.faq-articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .faq-articles-grid {
        grid-template-columns: 1fr;
    }

    .faq-categories-container {
        gap: 8px;
    }

    .faq-categories-arrow {
        width: 36px;
        height: 36px;
    }

    .faq-categories-arrow i {
        font-size: 0.8rem;
    }

    .faq-category-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* ============================================
   ARTICLE CARD
   ============================================ */

.faq-article-card {
    background: white;
    border-radius: var(--faq-radius);
    padding: 24px;
    border: 1px solid var(--faq-border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

/* Removed duplicate hover styles - see .faq-article-card:hover below */

.faq-article-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.faq-article-category {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--faq-text-light);
    font-weight: 500;
}

.faq-article-category i {
    color: var(--faq-accent);
}

.faq-article-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: linear-gradient(135deg, var(--faq-accent) 0%, #d4961a 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-article-badge i {
    font-size: 0.65rem;
}

.faq-article-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--faq-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.faq-article-summary {
    font-size: 0.9rem;
    color: var(--faq-text-light);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.faq-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.faq-tag {
    padding: 4px 10px;
    background: var(--faq-light);
    color: var(--faq-text-light);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 20px;
}

/* Article content hidden by default (shown in modal) */
.faq-article-content {
    display: none !important;
}

.faq-article-content h1,
.faq-article-content h2,
.faq-article-content h3,
.faq-article-content h4 {
    color: var(--faq-dark);
    margin-top: 28px;
    margin-bottom: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.faq-article-content h1 { 
    font-size: 1.5rem; 
    margin-top: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--faq-border);
}
.faq-article-content h2 { 
    font-size: 1.3rem; 
    color: var(--faq-primary);
}
.faq-article-content h3 { 
    font-size: 1.15rem; 
    color: var(--faq-dark);
}
.faq-article-content h4 {
    font-size: 1.05rem;
    color: var(--faq-text);
}

.faq-article-content p {
    margin-bottom: 18px;
    line-height: 1.75;
}

.faq-article-content p:last-child {
    margin-bottom: 0;
}

.faq-article-content ul,
.faq-article-content ol {
    margin-bottom: 20px;
    padding-left: 28px;
    line-height: 1.8;
}

.faq-article-content ul {
    list-style: none;
    padding-left: 0;
}

.faq-article-content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    line-height: 1.75;
}

.faq-article-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--faq-accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.faq-article-content ol {
    counter-reset: list-counter;
    list-style: none;
    padding-left: 0;
}

.faq-article-content ol li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 10px;
    counter-increment: list-counter;
    line-height: 1.75;
}

.faq-article-content ol li::before {
    content: counter(list-counter) '.';
    position: absolute;
    left: 0;
    color: var(--faq-primary);
    font-weight: 700;
    font-size: 1rem;
}

.faq-article-content li {
    margin-bottom: 10px;
}

.faq-article-content li:last-child {
    margin-bottom: 0;
}

.faq-article-content strong {
    color: var(--faq-dark);
    font-weight: 700;
}

.faq-article-content em {
    font-style: italic;
    color: var(--faq-text);
}

.faq-article-content blockquote {
    margin: 20px 0;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(232, 168, 25, 0.08) 0%, rgba(232, 168, 25, 0.03) 100%);
    border-left: 4px solid var(--faq-accent);
    border-radius: 8px;
    font-style: italic;
    color: var(--faq-text);
    line-height: 1.7;
}

.faq-article-content blockquote p {
    margin-bottom: 0;
}

.faq-article-content blockquote p:last-child {
    margin-bottom: 0;
}

.faq-article-content .highlight-box {
    margin: 20px 0;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(8, 51, 0, 0.05) 0%, rgba(8, 51, 0, 0.02) 100%);
    border-left: 4px solid var(--faq-primary);
    border-radius: 8px;
    line-height: 1.75;
}

.faq-article-content .highlight-box p {
    margin-bottom: 8px;
}

.faq-article-content .highlight-box p:last-child {
    margin-bottom: 0;
}

.faq-article-content .info-box {
    margin: 20px 0;
    padding: 16px 20px;
    background: rgba(8, 51, 0, 0.03);
    border: 1px solid rgba(8, 51, 0, 0.1);
    border-radius: 8px;
    line-height: 1.75;
}

.faq-article-content .info-box strong {
    display: block;
    margin-bottom: 8px;
    color: var(--faq-primary);
    font-size: 0.95rem;
}

.faq-article-content a {
    color: var(--faq-primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: var(--faq-transition);
}

.faq-article-content a:hover {
    border-bottom-color: var(--faq-primary);
    color: #0d4a00;
}

.faq-article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.faq-article-content th,
.faq-article-content td {
    padding: 12px;
    border: 1px solid var(--faq-border);
    text-align: left;
}

.faq-article-content th {
    background: var(--faq-light);
    font-weight: 600;
}

.faq-article-expand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--faq-primary) 0%, #0d4a00 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--faq-transition);
    box-shadow: 0 2px 8px rgba(8, 51, 0, 0.2);
}

.faq-article-expand:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(8, 51, 0, 0.3);
}

.faq-article-expand i {
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.faq-article-expand:hover i {
    transform: scale(1.1);
}

/* Card hover effect */
.faq-article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ============================================
   NO RESULTS
   ============================================ */

.faq-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--faq-text-light);
}

.faq-no-results i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.faq-no-results h3 {
    font-size: 1.25rem;
    color: var(--faq-text);
    margin-bottom: 8px;
}

/* ============================================
   CONTACT CTA
   ============================================ */

.faq-contact-cta {
    background: linear-gradient(135deg, var(--faq-primary) 0%, #0d4a00 100%);
    padding: 60px 20px;
    text-align: center;
}

.faq-contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.faq-contact-cta h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.faq-contact-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.faq-contact-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.faq-contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--faq-transition);
}

.faq-contact-btn.primary {
    background: var(--faq-accent);
    color: var(--faq-dark);
}

.faq-contact-btn.primary:hover {
    background: white;
    transform: translateY(-2px);
}

.faq-contact-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.faq-contact-btn.secondary:hover {
    background: white;
    color: var(--faq-primary);
    border-color: white;
}

/* ============================================
   FOOTER
   ============================================ */

.faq-footer {
    padding: 30px 20px;
    text-align: center;
    background: var(--faq-dark);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ============================================
   MODAL
   ============================================ */

.faq-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.faq-modal.active {
    display: flex;
}

.faq-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.faq-modal-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    background: white;
    border-radius: var(--faq-radius);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.faq-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--faq-light);
    border: none;
    border-radius: 50%;
    color: var(--faq-text);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--faq-transition);
}

.faq-modal-close:hover {
    background: var(--faq-primary);
    color: white;
}

.faq-modal-content {
    padding: 40px;
    overflow-y: auto;
    max-height: 90vh;
}

.faq-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.faq-modal-category {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(8, 51, 0, 0.05);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--faq-primary);
}

.faq-modal-category i {
    font-size: 0.9rem;
}

.faq-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--faq-dark);
    margin-bottom: 16px;
    padding-right: 40px;
    line-height: 1.3;
}

.faq-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--faq-light);
}

.faq-modal-body {
    color: var(--faq-text);
    line-height: 1.8;
}

/* Modal body inherits article content styles */
.faq-modal-body h1,
.faq-modal-body h2,
.faq-modal-body h3,
.faq-modal-body h4 {
    color: var(--faq-dark);
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.faq-modal-body h1 {
    font-size: 1.6rem;
    margin-top: 0;
}

.faq-modal-body h2 {
    font-size: 1.4rem;
}

.faq-modal-body h3 {
    font-size: 1.2rem;
}

.faq-modal-body h4 {
    font-size: 1.05rem;
}

.faq-modal-body p {
    margin-bottom: 16px;
}

.faq-modal-body ul,
.faq-modal-body ol {
    margin: 16px 0;
    padding-left: 28px;
}

.faq-modal-body li {
    margin-bottom: 8px;
}

.faq-modal-body strong {
    color: var(--faq-dark);
    font-weight: 600;
}

.faq-modal-body .highlight-box,
.faq-modal-body .info-box {
    margin: 24px 0;
    padding: 20px;
    border-radius: 12px;
}

.faq-modal-body .highlight-box {
    background: linear-gradient(135deg, rgba(232, 168, 25, 0.1) 0%, rgba(232, 168, 25, 0.05) 100%);
    border-left: 4px solid var(--faq-accent);
}

.faq-modal-body .info-box {
    background: rgba(8, 51, 0, 0.05);
    border-left: 4px solid var(--faq-primary);
}

.faq-modal-body blockquote {
    margin: 20px 0;
    padding: 16px 20px;
    border-left: 4px solid var(--faq-primary);
    background: rgba(8, 51, 0, 0.03);
    font-style: italic;
    color: var(--faq-text-light);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .back-home-btn span {
        display: none;
    }
    
    .back-home-btn {
        padding: 12px;
        border-radius: 50%;
    }
    
    .faq-hero {
        padding: 80px 16px 60px;
    }
    
    .faq-hero-title {
        font-size: 1.75rem;
    }
    
    .faq-search-input {
        padding: 14px 20px 14px 48px;
        font-size: 1rem;
    }
    
    .faq-articles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .faq-article-card {
        padding: 20px;
    }
    
    .faq-contact-cta h2 {
        font-size: 1.5rem;
    }
    
    .faq-modal-content {
        padding: 24px;
    }

    .faq-modal-title {
        font-size: 1.4rem;
        padding-right: 30px;
    }

    .faq-modal-body h1 {
        font-size: 1.3rem;
    }

    .faq-modal-body h2 {
        font-size: 1.2rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-article-card {
    animation: fadeIn 0.4s ease backwards;
}

.faq-article-card:nth-child(1) { animation-delay: 0.05s; }
.faq-article-card:nth-child(2) { animation-delay: 0.1s; }
.faq-article-card:nth-child(3) { animation-delay: 0.15s; }
.faq-article-card:nth-child(4) { animation-delay: 0.2s; }
.faq-article-card:nth-child(5) { animation-delay: 0.25s; }
.faq-article-card:nth-child(6) { animation-delay: 0.3s; }

/* Search highlight */
.search-highlight {
    background: linear-gradient(135deg, rgba(232, 168, 25, 0.3) 0%, rgba(232, 168, 25, 0.2) 100%);
    padding: 2px 4px;
    border-radius: 4px;
}

/* ============================================
   PAGINATION
   ============================================ */

.faq-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 20px 0;
}

.faq-pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: white;
    border: 2px solid var(--faq-border);
    border-radius: 12px;
    color: var(--faq-text);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--faq-transition);
}

.faq-pagination-btn:hover:not(:disabled) {
    border-color: var(--faq-primary);
    color: var(--faq-primary);
}

.faq-pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.faq-pagination-pages {
    display: flex;
    gap: 6px;
}

.faq-page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    background: white;
    border: 2px solid var(--faq-border);
    border-radius: 12px;
    color: var(--faq-text);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--faq-transition);
}

.faq-page-btn:hover {
    border-color: var(--faq-primary);
    color: var(--faq-primary);
}

.faq-page-btn.active {
    background: var(--faq-primary);
    border-color: var(--faq-primary);
    color: white;
}

.faq-page-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--faq-text-light);
    font-weight: 600;
}

/* Hide pagination when few results */
.faq-pagination.hidden {
    display: none;
}

@media (max-width: 768px) {
    .faq-pagination {
        gap: 4px;
    }
    
    .faq-pagination-btn,
    .faq-page-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 10px;
    }
}

