/* style.css - Fixed Mobile Navigation and FAQ */
:root {
    --primary-red: #cc0000;
    --dark-red: #990000;
    --light-red: #ff3333;
    --lighter-red: #ffe5e5;
    --dark-bg: #0a0a0a;
    --light-bg: #fff;
    --text-dark: #222;
    --text-light: #f5f5f5;
    --gray-border: #ddd;
    --shadow: 0 2px 10px rgba(204, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-padding: clamp(1rem, 3vw, 2rem);
    --section-spacing: clamp(2rem, 5vw, 4rem);
}

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: clamp(14px, 2vw, 16px);
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #fff8f8 0%, #ffffff 100%);
    min-height: 100vh;
    overflow-x: hidden;
    word-wrap: break-word;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container System */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* Fluid Typography System */
h1, h2, h3, h4 {
    color: var(--dark-red);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    font-weight: 600;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    border-bottom: 3px solid var(--primary-red);
    padding-bottom: clamp(0.25rem, 1vw, 0.5rem);
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-top: clamp(1.5rem, 4vw, 2.5rem);
    padding-left: clamp(0.5rem, 1.5vw, 1rem);
    border-left: 4px solid var(--primary-red);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-top: clamp(1.25rem, 3vw, 2rem);
    color: var(--primary-red);
}

h4 {
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    margin-top: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--light-red);
}

p {
    margin-bottom: clamp(0.75rem, 2vw, 1.2rem);
    line-height: 1.7;
    font-size: clamp(0.95rem, 1.5vw, 1rem);
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-red);
    color: white;
    padding: clamp(0.5rem, 1vw, 0.8rem);
    z-index: 1001;
    text-decoration: none;
    border-radius: 0 0 4px 0;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.skip-link:focus {
    top: 0;
}

/* Header - Responsive */
header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
    padding: clamp(0.75rem, 2vw, 1rem) 0;
    box-shadow: 0 4px 12px rgba(204, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 1rem);
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
    text-decoration: none;
    min-width: 0;
    flex-shrink: 0;
}

.logo h1 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: white;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.logo-icon {
    width: clamp(32px, 4vw, 40px);
    height: clamp(32px, 4vw, 40px);
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-weight: bold;
    font-size: clamp(1rem, 2vw, 1.2rem);
    flex-shrink: 0;
}

/* Navigation - Fixed for Mobile */
.nav-menu {
    display: flex;
    transition: var(--transition);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: clamp(0.5rem, 2vw, 1.5rem);
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: clamp(0.25rem, 1vw, 0.5rem) clamp(0.5rem, 1.5vw, 1rem);
    border-radius: 4px;
    transition: var(--transition);
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a:focus {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    outline: 2px solid white;
}

/* Mobile Menu Button - FIXED */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    width: clamp(40px, 5vw, 44px);
    height: clamp(40px, 5vw, 44px);
    position: relative;
    padding: 0;
    z-index: 1002;
    flex-shrink: 0;
}

.menu-icon {
    display: block;
    position: absolute;
    width: 70%;
    height: 3px;
    background: white;
    left: 15%;
    transition: var(--transition);
    transform-origin: center;
}

.menu-icon:nth-child(1) {
    top: 35%;
}

.menu-icon:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-icon:nth-child(3) {
    bottom: 35%;
}

/* Mobile Menu Active State */
.mobile-menu-btn.active .menu-icon:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}

.mobile-menu-btn.active .menu-icon:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .menu-icon:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
    top: auto;
}

/* Hero Section - Responsive */
.hero {
    background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.9));
    color: white;
    padding: clamp(2rem, 5vw, 3rem) 0;
    text-align: center;
    margin-bottom: clamp(1rem, 3vw, 2rem);
    border-bottom: 4px solid var(--primary-red);
}

.hero h2 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: white;
    border: none;
    padding: 0;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.9;
    max-width: min(90%, 800px);
    margin: 0 auto clamp(1.5rem, 3vw, 2rem);
    line-height: 1.7;
    padding: 0 clamp(0.5rem, 2vw, 1rem);
}

.last-updated {
    background: rgba(204, 0, 0, 0.2);
    padding: clamp(0.6rem, 1.5vw, 0.8rem) clamp(1rem, 2vw, 1.5rem);
    border-radius: 50px;
    display: inline-flex;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    justify-content: center;
}

.last-updated span {
    display: flex;
    align-items: center;
    gap: clamp(0.25rem, 1vw, 0.5rem);
}

/* Main Content Grid - Responsive */
main {
    padding: clamp(1.5rem, 3vw, 2rem) 0;
    min-height: 60vh;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
}

@media (min-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr 300px;
    }
}

.article-content {
    background: white;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-border);
    overflow: hidden;
}

/* Lists */
ul, ol {
    margin-left: clamp(1rem, 3vw, 2rem);
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
    padding-left: clamp(0.5rem, 1.5vw, 1rem);
}

li {
    margin-bottom: clamp(0.375rem, 1vw, 0.5rem);
    line-height: 1.6;
    font-size: clamp(0.95rem, 1.5vw, 1rem);
}

/* Special Elements */
.chapter-box,
.warning-box,
.info-box {
    padding: clamp(1rem, 2.5vw, 1.5rem);
    margin: clamp(1rem, 3vw, 2rem) 0;
    border-radius: 0 8px 8px 0;
    border-left-width: 4px;
    border-left-style: solid;
}

.chapter-box {
    background: var(--lighter-red);
    border-left-color: var(--primary-red);
}

.warning-box {
    background: #fff3cd;
    border-left-color: #ffc107;
}

.warning-box h4 {
    color: #856404;
}

.info-box {
    background: #d1ecf1;
    border-left-color: #0c5460;
}

/* Tables - Responsive */
.table-responsive {
    overflow-x: auto;
    margin: clamp(1rem, 3vw, 2rem) 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.table-responsive::-webkit-scrollbar {
    height: 6px;
}

.table-responsive::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 3px;
}

table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: var(--shadow);
    min-width: min(100%, 600px);
}

table th {
    background: var(--primary-red);
    color: white;
    padding: clamp(0.75rem, 1.5vw, 1rem);
    text-align: left;
    font-weight: 600;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    white-space: nowrap;
}

table td {
    padding: clamp(0.75rem, 1.5vw, 1rem);
    border: 1px solid var(--gray-border);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

table tr:nth-child(even) {
    background: var(--lighter-red);
}

/* Creator Grid - Responsive */
.creator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
    gap: clamp(1rem, 2.5vw, 1.5rem);
    margin: clamp(1rem, 3vw, 2rem) 0;
}

.creator-card {
    background: white;
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    padding: clamp(1rem, 2vw, 1.5rem);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.creator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(204, 0, 0, 0.2);
    border-color: var(--primary-red);
}

.creator-card h4 {
    color: var(--dark-red);
    margin-bottom: clamp(0.375rem, 1vw, 0.5rem);
    font-size: clamp(1.1rem, 2vw, 1.2rem);
}

.creator-category {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: clamp(0.2rem, 0.8vw, 0.3rem) clamp(0.5rem, 1.2vw, 0.8rem);
    border-radius: 20px;
    font-size: clamp(0.75rem, 1.2vw, 0.8rem);
    margin-top: auto;
    align-self: flex-start;
}

/* FAQ - FIXED Responsive */
.faq-container {
    margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.faq-item {
    background: white;
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    overflow: hidden;
}

.faq-question {
    padding: clamp(1rem, 2vw, 1.5rem);
    background: var(--lighter-red);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark-red);
    margin: 0;
    border: none;
    width: 100%;
    text-align: left;
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    transition: var(--transition);
    user-select: none;
}

.faq-question:hover {
    background: #ffcccc;
}

.faq-toggle {
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    transition: var(--transition);
    flex-shrink: 0;
    display: inline-block;
    width: 20px;
    text-align: center;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: clamp(0.95rem, 1.5vw, 1rem);
}

.faq-answer.active {
    padding: clamp(1rem, 2vw, 1.5rem);
    max-height: 1000px;
}

/* TOC - Responsive */
.toc {
    background: var(--lighter-red);
    padding: clamp(1rem, 2.5vw, 1.5rem);
    border-radius: 8px;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.toc h3 {
    margin-top: 0;
    color: var(--dark-red);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.toc ul {
    margin-left: clamp(0.5rem, 1.5vw, 1rem);
}

.toc li {
    margin-bottom: clamp(0.5rem, 1.2vw, 0.8rem);
}

.toc a {
    color: var(--dark-red);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    padding: clamp(0.1rem, 0.5vw, 0.2rem) 0;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.toc a:hover {
    color: var(--light-red);
    text-decoration: underline;
    transform: translateX(5px);
}

/* Sidebar - Responsive */
.sidebar {
    background: white;
    padding: clamp(1rem, 2.5vw, 1.5rem);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-border);
    height: fit-content;
    position: static;
}

@media (min-width: 992px) {
    .sidebar {
        position: sticky;
        top: 100px;
    }
}

.sidebar-widget {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-links {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.sidebar-links li {
    margin-bottom: clamp(0.5rem, 1.2vw, 0.8rem);
}

.sidebar-links a {
    color: var(--dark-red);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: clamp(0.375rem, 1vw, 0.5rem);
    border-radius: 4px;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.sidebar-links a:hover,
.sidebar-links a:focus {
    background: var(--lighter-red);
    color: var(--primary-red);
    padding-left: clamp(0.75rem, 1.5vw, 1rem);
}

.key-takeaways {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.key-takeaways li {
    margin-bottom: clamp(0.375rem, 1vw, 0.5rem);
    padding-left: clamp(1.25rem, 2vw, 1.5rem);
    position: relative;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.key-takeaways li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.platform-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(0.375rem, 1vw, 0.5rem);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.platform-stats dt {
    font-weight: 600;
    color: var(--dark-red);
}

.platform-stats dd {
    margin: 0;
}

/* Footer - Responsive */
footer {
    background: var(--dark-bg);
    color: white;
    padding: clamp(2rem, 4vw, 3rem) 0 clamp(1rem, 2.5vw, 1.5rem);
    margin-top: clamp(2rem, 4vw, 3rem);
    border-top: 4px solid var(--primary-red);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.footer-section h4 {
    color: white;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: clamp(0.375rem, 1vw, 0.5rem);
}

.footer-section p {
    color: #ccc;
    line-height: 1.7;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.footer-links {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: clamp(0.5rem, 1.2vw, 0.8rem);
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.footer-links a:hover {
    color: var(--light-red);
    text-decoration: underline;
}

.copyright {
    text-align: center;
    padding-top: clamp(1rem, 2.5vw, 1.5rem);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

.copyright p {
    margin-bottom: clamp(0.375rem, 1vw, 0.5rem);
}

/* Disclaimer */
.disclaimer {
    background: rgba(204, 0, 0, 0.1);
    padding: clamp(1rem, 2.5vw, 1.5rem);
    border-radius: 8px;
    margin: clamp(1.5rem, 3vw, 2rem) 0;
    border: 1px solid rgba(204, 0, 0, 0.3);
}

.disclaimer h4 {
    color: var(--dark-red);
    margin-top: 0;
    font-size: clamp(1.1rem, 2vw, 1.2rem);
}

.disclaimer p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: block;
    }
    
    /* Hide desktop navigation by default */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 1001;
        padding: 2rem;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        width: 100%;
        max-width: 300px;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
        display: block;
        width: 100%;
        border-radius: 8px;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.3);
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    .hero h2 {
        font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.95rem, 2vw, 1.1rem);
    }
    
    .last-updated {
        flex-direction: column;
        gap: clamp(0.5rem, 1.5vw, 0.75rem);
        padding: clamp(0.75rem, 2vw, 1rem);
    }
    
    .article-content {
        padding: clamp(1.25rem, 2.5vw, 1.5rem);
    }
    
    .creator-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: clamp(1.25rem, 2.5vw, 1.5rem);
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: clamp(0.75rem, 2vw, 1rem);
        padding-right: clamp(0.75rem, 2vw, 1rem);
    }
    
    .hero h2 {
        font-size: clamp(1.3rem, 3vw, 1.6rem);
    }
    
    h1 {
        font-size: clamp(1.5rem, 3.5vw, 1.8rem);
    }
    
    h2 {
        font-size: clamp(1.3rem, 3vw, 1.5rem);
    }
    
    .article-content {
        padding: clamp(1rem, 2vw, 1.25rem);
    }
    
    .faq-question {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .faq-toggle {
        margin-left: auto;
    }
}

@media (max-width: 400px) {
    .logo h1 {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    }
    
    .logo-icon {
        width: clamp(28px, 3.5vw, 32px);
        height: clamp(28px, 3.5vw, 32px);
        font-size: clamp(0.9rem, 2vw, 1rem);
    }
    
    .hero h2 {
        font-size: clamp(1.2rem, 2.8vw, 1.4rem);
    }
    
    .platform-stats {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-menu a,
    .sidebar-links a,
    .faq-question {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    table th,
    table td {
        padding: 0.75rem 0.5rem;
    }
    
    .toc a,
    .footer-links a {
        padding: 0.5rem 0;
        display: block;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .faq-answer {
        transition: none !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    body {
        background: #121212;
        color: #e0e0e0;
    }
    
    .article-content,
    .sidebar,
    .creator-card,
    .faq-item {
        background: #1e1e1e;
        border-color: #333;
        color: #e0e0e0;
    }
    
    h1, h2, h3, h4 {
        color: #ff6666;
    }
    
    .toc,
    .chapter-box {
        background: #2a2a2a;
    }
    
    table {
        background: #1e1e1e;
    }
    
    table tr:nth-child(even) {
        background: #2a2a2a;
    }
}

/* Print Styles */
@media print {
    header, footer, .sidebar, .nav-menu, .mobile-menu-btn,
    .hero, .toc, .disclaimer, .creator-category {
        display: none;
    }
    
    .article-content {
        box-shadow: none;
        border: none;
        padding: 0;
        background: white;
        color: black;
    }
    
    body {
        background: white;
        color: black;
        font-size: 12pt;
        line-height: 1.5;
    }
    
    h1, h2, h3, h4 {
        color: black;
        page-break-after: avoid;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
    
    .creator-grid {
        break-inside: avoid;
    }
    
    .chapter-box, .warning-box, .info-box {
        break-inside: avoid;
        border: 1px solid #ccc;
    }
    
    table {
        break-inside: avoid;
    }
    
    .faq-answer {
        max-height: none !important;
        padding: 1rem !important;
        display: block !important;
    }
}