/* QUANTUM STREAM DESIGN SYSTEM */
:root {
    --void-bg: #050505;
    --grid-line: rgba(0, 243, 255, 0.05);
    --neon-cyan: #00f3ff;
    --neon-purple: #bc13fe;
    --text-main: #e0e0e0;
    --text-muted: #8899a6;
    --panel-bg: rgba(10, 20, 30, 0.8);
    --border-glow: 0 0 10px rgba(0, 243, 255, 0.3);
    --font-head: 'Courier New', Courier, monospace; /* Terminal vibe */
    --font-body: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--void-bg);
    background-image: 
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 40px 40px;
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

/* --- LAYOUT --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

header {
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
    background: rgba(5, 5, 5, 0.95);
    position: sticky; top: 0; z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-flex { display: flex; justify-content: space-between; align-items: center; height: 70px; }

.logo { 
    font-family: var(--font-head); font-size: 1.5rem; font-weight: bold; 
    color: var(--neon-cyan); text-transform: uppercase; letter-spacing: 2px;
    text-shadow: 0 0 10px var(--neon-cyan);
}

nav ul { display: flex; list-style: none; gap: 20px; }
nav a { 
    color: var(--text-main); text-decoration: none; font-size: 0.9rem; text-transform: uppercase; 
    transition: 0.3s; border-bottom: 2px solid transparent;
}
nav a:hover { color: var(--neon-cyan); border-bottom-color: var(--neon-cyan); text-shadow: 0 0 8px var(--neon-cyan); }

/* --- HERO SECTION --- */
.hero-section {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
    position: relative;
}

.hero-title {
    font-family: var(--font-head); font-size: 3.5rem; margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, var(--neon-cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-sub { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 40px; }

/* CTA BUTTON */
.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    animation: pulse 2s infinite;
}

.cta-button:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 50px var(--neon-cyan);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(0, 243, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 243, 255, 0); }
}

/* --- CONTENT BLOCKS --- */
.content-wrapper { display: grid; grid-template-columns: 1fr 300px; gap: 40px; margin: 50px auto; }
.main-article { background: var(--panel-bg); padding: 40px; border: 1px solid rgba(255,255,255,0.1); border-left: 3px solid var(--neon-cyan); }

h1, h2, h3 { font-family: var(--font-head); margin-top: 30px; margin-bottom: 15px; color: #fff; }
h2 { color: var(--neon-cyan); font-size: 1.8rem; border-bottom: 1px solid rgba(0, 243, 255, 0.2); padding-bottom: 10px; }
p { margin-bottom: 20px; font-size: 1.05rem; color: #ccc; }

.highlight-box {
    background: rgba(188, 19, 254, 0.1);
    border: 1px solid var(--neon-purple);
    padding: 20px;
    margin: 20px 0;
    position: relative;
}
.highlight-box::before { content: "⚠ SYSTEM NOTE"; position: absolute; top: -12px; left: 20px; background: var(--void-bg); padding: 0 10px; color: var(--neon-purple); font-size: 0.8rem; font-weight: bold; }

/* --- SIDEBAR & WIDGETS --- */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.widget { background: rgba(255,255,255,0.03); padding: 20px; border: 1px solid rgba(255,255,255,0.1); }
.widget-title { color: var(--neon-purple); font-weight: bold; margin-bottom: 15px; border-bottom: 1px dashed var(--neon-purple); padding-bottom: 5px; }

.link-list li { list-style: none; margin-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 5px; }
.link-list a { color: var(--text-main); text-decoration: none; display: flex; justify-content: space-between; }
.link-list a:hover { color: var(--neon-cyan); }

/* --- MOBILE --- */
@media (max-width: 768px) {
    .content-wrapper { grid-template-columns: 1fr; }
    .hero-title { font-size: 2rem; }
    .nav-flex { flex-direction: column; height: auto; padding: 20px 0; }
    nav ul { flex-wrap: wrap; justify-content: center; margin-top: 15px; }
}
:root {
    --bg-body: #0a0a0a;       /* Очень черный */
    --bg-sidebar: #111111;    /* Чуть светлее */
    --bg-card: #161616;       /* Серый для карточек */
    --accent: #FF6B00;        /* Industrial Orange */
    --text-main: #e0e0e0;
    --text-muted: #888888;
    --border: #2a2a2a;
    
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }

/* --- Layout: Sidebar + Main --- */
.app-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styling */
.sidebar {
    width: 260px;
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
}

.brand {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--border);
}

.brand-box {
    background: var(--accent);
    color: #000;
    font-family: var(--font-head);
    font-weight: 700;
    padding: 10px;
    font-size: 1.2rem;
}

.brand span {
    font-family: var(--font-head);
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 1px;
}
.brand small { color: var(--text-muted); font-size: 0.7rem; }

.nav-menu {
    flex-grow: 1;
    padding: 30px 0;
}

.nav-item {
    display: block;
    padding: 15px 30px;
    color: var(--text-muted);
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 3px solid transparent;
}

.nav-item:hover, .nav-item.active {
    background: rgba(255, 107, 0, 0.05);
    color: #fff;
    border-left-color: var(--accent);
}

.nav-item .icon {
    margin-right: 10px;
    color: var(--accent);
    opacity: 0.5;
}

.sidebar-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.led {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}
.led.online { background: #00ff00; box-shadow: 0 0 5px #00ff00; }

/* Main Content Styling */
.main-content {
    margin-left: 260px; /* Sidebar width */
    flex-grow: 1;
    padding: 0;
}

/* Top Bar */
.top-bar {
    height: 60px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    font-family: var(--font-head);
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Hero Block */
.hero-block {
    padding: 60px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(20,20,20,1) 0%, rgba(10,10,10,1) 100%);
}

.hero-text h1 {
    font-family: var(--font-head);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.highlight { color: var(--accent); }

.hero-text p {
    max-width: 500px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--accent);
    color: #000;
}
.btn-primary:hover { background: #ff8533; }

.btn-outline {
    border-color: var(--text-muted);
    color: var(--text-main);
    margin-left: 15px;
}
.btn-outline:hover { border-color: #fff; color: #fff; }

.hero-stat {
    display: flex;
    gap: 30px;
}

.stat-card {
    text-align: right;
}
.stat-label { display: block; font-size: 0.8rem; color: var(--text-muted); }
.stat-num { display: block; font-size: 3rem; font-family: var(--font-head); color: #fff; line-height: 1; }

/* Grid Cards */
.grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px; /* Gap for borders */
    background: var(--border); /* Creates grid lines */
    border-bottom: 1px solid var(--border);
}

.card {
    background: var(--bg-body);
    padding: 40px;
    transition: 0.2s;
}

.card:hover { background: var(--bg-card); }

.card h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.orange-bar {
    display: block;
    width: 4px;
    height: 20px;
    background: var(--accent);
}

.card p { color: var(--text-muted); font-size: 0.95rem; }

/* Info Block */
.info-block {
    padding: 60px 40px;
}

.info-block h2 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
    display: inline-block;
}

.text-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    color: var(--text-main);
}

.main-footer {
    padding: 40px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.8rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .sidebar { display: none; } /* Add JS toggle later */
    .main-content { margin-left: 0; }
    .hero-block { flex-direction: column; align-items: flex-start; gap: 40px; }
    .hero-text h1 { font-size: 2.5rem; }
    .text-columns { grid-template-columns: 1fr; }
}
/* --- Access Page Specifics --- */

/* Page Headers */
.page-header {
    padding: 40px;
    border-bottom: 1px solid var(--border);
}
.page-header h1 {
    font-family: var(--font-head);
    font-size: 3rem;
    margin-bottom: 10px;
}
.page-header p { color: var(--text-muted); max-width: 600px; }

/* Panels */
.content-panel {
    margin: 40px;
    border: 1px solid var(--border);
    background: var(--bg-body);
}

.panel-head {
    background: var(--bg-sidebar);
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-head h3 {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-main);
    text-transform: uppercase;
}

/* Data Table */
.table-responsive { overflow-x: auto; }

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
}

.data-table th {
    text-align: left;
    padding: 15px 20px;
    background: rgba(255,255,255,0.02);
    color: var(--text-muted);
    font-weight: 400;
    border-bottom: 1px solid var(--border);
}

.data-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--text-main);
}

.data-table tr:hover td {
    background: rgba(255,107,0,0.03);
}

.mono { font-family: 'Space Mono', monospace; }
.onion-url { color: var(--accent); letter-spacing: 1px; }

/* Status Indicators */
.status-text.online { color: #00ff00; }
.status-text.warning { color: #ffcc00; }
.status-text.offline { color: #ff3333; }

.signal {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #333;
    margin-right: 5px;
}
.signal.high { background: #00ff00; box-shadow: 0 0 5px #00ff00; }
.signal.med { background: #ffcc00; }
.signal.low { background: #ff3333; }

/* Buttons in Table */
.btn-sm {
    display: inline-block;
    padding: 5px 15px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: bold;
}
.btn-sm:hover {
    background: var(--accent);
    color: #000;
}
.locked { color: var(--text-muted); font-size: 0.7rem; }

/* Badges */
.badge {
    padding: 3px 8px;
    font-size: 0.7rem;
    font-weight: bold;
    color: #000;
}
.badge.success { background: #00ff00; }

/* Terminal Box (PGP) */
.terminal-box {
    background: #0d0d0d;
    padding: 20px;
    overflow-x: auto;
}

.terminal-box pre {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

.panel-footer-actions {
    padding: 20px;
    border-top: 1px solid var(--border);
    background: var(--bg-sidebar);
}
/* --- Manual / Guide Page Specifics --- */

/* Quick Nav */
.manual-nav {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.manual-nav a {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    border: 1px solid var(--border);
}
.manual-nav a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Step Layout (The core visual of this page) */
.manual-step {
    display: flex;
    border-bottom: 1px solid var(--border);
    background: var(--bg-body);
}

.step-sidebar {
    width: 150px;
    background: var(--bg-sidebar);
    padding: 40px 20px;
    border-right: 1px solid var(--border);
    text-align: right;
    flex-shrink: 0;
}

.step-num {
    display: block;
    font-family: var(--font-head);
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.2;
    line-height: 1;
}

.step-title {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
    text-transform: uppercase;
}

.step-content {
    padding: 40px;
    flex-grow: 1;
}

.step-content h2 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
}

.step-content h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-main);
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

/* Lists */
.check-list, .num-list {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
}
.check-list li, .num-list li {
    margin-bottom: 10px;
    padding-left: 10px;
}
.check-list li strong, .num-list li strong {
    color: #fff;
}

/* Alert Box */
.alert-box {
    padding: 20px;
    margin-top: 20px;
    border: 1px solid;
    font-size: 0.9rem;
    display: flex;
    gap: 15px;
    align-items: center;
}

.alert-box.warning {
    background: rgba(255, 95, 86, 0.1);
    border-color: #ff5f56;
    color: #ffcccb;
}

/* Code Block for Manual */
.code-block {
    background: #0d0d0d;
    border: 1px solid var(--border);
    margin: 20px 0;
}
.code-header {
    background: #1a1a1a;
    padding: 5px 15px;
    font-size: 0.7rem;
    color: #888;
    border-bottom: 1px solid var(--border);
    font-family: 'Space Mono', monospace;
}
.code-block pre {
    padding: 15px;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    color: var(--accent);
    overflow-x: auto;
}

/* Responsive adjustment for steps */
@media (max-width: 768px) {
    .manual-step { flex-direction: column; }
    .step-sidebar { 
        width: 100%; 
        text-align: left; 
        padding: 20px; 
        display: flex; 
        align-items: center; 
        gap: 20px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .step-num { font-size: 2rem; }
    .step-title br { display: none; }
    .step-content { padding: 20px; }
}
/* --- OpSec Page Specifics --- */

/* Threat Grid */
.grid-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.threat-card {
    background: #0d0d0d;
    border: 1px solid var(--border);
    padding: 25px;
    position: relative;
    transition: transform 0.2s;
}
.threat-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.card-icon {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    display: inline-block;
}

.threat-card h4 {
    color: #fff;
    font-family: var(--font-head);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.threat-card p {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Threat Meter Bar */
.meter {
    height: 4px;
    background: #333;
    width: 100%;
    margin-top: auto;
}
.meter .fill {
    height: 100%;
    background: #00ff00; /* Low threat */
    box-shadow: 0 0 5px #00ff00;
}
.meter .fill.warning { background: #ffcc00; box-shadow: 0 0 5px #ffcc00; }
.meter .fill.alert { background: #ff3333; box-shadow: 0 0 5px #ff3333; }

/* Do / Don't Comparison Table */
.comparison-table {
    display: flex;
    gap: 0;
    margin-top: 20px;
    border: 1px solid var(--border);
}

.comp-col {
    flex: 1;
    padding: 20px;
}

.comp-col.do {
    background: rgba(0, 255, 0, 0.05);
    border-right: 1px solid var(--border);
}
.comp-col.dont {
    background: rgba(255, 51, 51, 0.05);
}

.comp-col h4 {
    font-family: var(--font-head);
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.comp-col.do h4 { color: #00ff00; }
.comp-col.dont h4 { color: #ff3333; }

.comp-col ul {
    list-style: none;
    padding: 0;
}
.comp-col ul li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-main);
}
.comp-col.do ul li::before {
    content: "+";
    position: absolute;
    left: 0;
    color: #00ff00;
}
.comp-col.dont ul li::before {
    content: "x";
    position: absolute;
    left: 0;
    color: #ff3333;
}

/* OpSec Focus Step Override */
.opsec-focus .step-sidebar {
    background: repeating-linear-gradient(
        45deg,
        #111,
        #111 10px,
        #151515 10px,
        #151515 20px
    );
}
/* --- Intel / Dossier Page Specifics --- */

/* Specs Table */
.specs-container {
    background: #0d0d0d;
    padding: 20px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
}

.specs-table tr {
    border-bottom: 1px solid #222;
}
.specs-table tr:last-child {
    border-bottom: none;
}

.spec-label {
    padding: 15px;
    color: var(--text-muted);
    width: 40%;
    border-right: 1px solid #222;
}

.spec-value {
    padding: 15px;
    color: var(--accent);
}
.spec-value strong {
    color: #fff;
    font-weight: 700;
}

/* Intel Grid (Text Blocks) */
.intel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.intel-card {
    background: var(--bg-body);
    border-left: 2px solid var(--border); /* Left border accent only */
    padding: 0 0 0 20px;
}

.intel-card h2 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.intel-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Hover effect for specs */
.specs-table tr:hover {
    background: rgba(255, 165, 0, 0.02);
}

@media (max-width: 768px) {
    .intel-grid { grid-template-columns: 1fr; }
    .spec-label { width: 50%; }
}
/* --- Status Page Specifics --- */

/* Status Grid */
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.status-item {
    background: #111;
    border: 1px solid #333;
    padding: 15px;
    border-radius: 4px;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.status-name {
    font-size: 0.8rem;
    color: #888;
    font-weight: 700;
}

.status-led {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}
.status-led.online {
    background: #00ff00;
    box-shadow: 0 0 8px #00ff00;
}
.status-led.warning {
    background: #ffcc00;
    box-shadow: 0 0 8px #ffcc00;
}
.status-led.offline {
    background: #ff0000;
    box-shadow: 0 0 8px #ff0000;
}

.status-detail {
    font-family: 'Space Mono', monospace;
    color: #fff;
    font-size: 1rem;
}

/* FAQ Accordion */
.faq-section {
    margin-top: 40px;
    padding-bottom: 40px;
}
.faq-section h2 {
    font-family: var(--font-head);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.acc-item {
    margin-bottom: 10px;
    border: 1px solid #333;
}

.acc-btn {
    background: #111;
    color: var(--text-main);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.3s;
    font-family: 'Space Mono', monospace;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.acc-btn:hover, .acc-btn.active {
    background: #1a1a1a;
    border-left: 4px solid var(--accent);
}

.log-prefix {
    color: var(--accent);
    margin-right: 15px;
    font-size: 0.85rem;
}

.acc-content {
    padding: 0 18px;
    background: #0d0d0d;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.acc-content p {
    margin: 15px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #999;
}
.acc-content strong {
    color: #fff;
}
