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

@keyframes fadeInContent {
    0% { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@font-face {
    font-family: "TT Firs Neue";
    src: url("../fonts/TT Firs Neue Trial Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

:root {
    /* Обновленная палитра в стиле личного кабинета (Navy/Slate) */
    --bg-color: #0f1522; /* Темно-синий фон */
    --card-bg: #1a2235; /* Фон карточек и панелей */
    --text-main: #f8fafc; /* Белый текст */
    --text-muted: #94a3b8; /* Приглушенный серо-синий текст */
    --accent-primary: #38bdf8; /* Неоново-голубой акцент */
    --border-color: #334155; /* Цвет рамок */
}

html {
    scroll-behavior: smooth;
}

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

body, a {
    color: var(--text-main);
}

body {
    font-family: "TT Firs Neue", sans-serif;
    background-color: var(--bg-color);
    overflow-x: hidden;
    font-size: 20px;
}

a {
    text-decoration: none;
    transition: color 0.3s;
}

.text-accent, a:hover {
    color: var(--accent-primary);
}

.container-wide {
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 4%;
}

.header, .logo {
    display: flex;
    align-items: center;
}

.header {
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
    padding: 20px 4%;
    max-width: 100%;
    margin: 0 auto;
    background: rgba(15, 21, 34, 0.85); /* Полупрозрачный фон хедера */
    backdrop-filter: blur(12px); /* Эффект матового стекла */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: opacity .3s;
}

.logo-img {
    width: 40px;
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 40px;
    font-size: 18px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-outline {
    border: 1px solid var(--border-color);
    background-color: transparent;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

.hero {
    display: flex;
    max-width: 1850px;
    margin: 0 auto;
    padding: 75px 4%;
    position: relative;
    justify-content: space-between;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    margin-top: 120px;
}

.hero h1 {
    font-size: 96px;
    line-height: 1.05;
    margin-bottom: 40px;
}

.tags {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.tag {
    background: rgba(56, 189, 248, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(56, 189, 248, 0.2);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 18px;
}

.subtitle {
    color: var(--text-muted);
    font-size: 26px;
    margin-bottom: 60px;
    line-height: 1.5;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: #000;
    padding: 22px 60px;
    border-radius: 40px;
    font-size: 22px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.3);
}

.btn-primary:hover {
    background-color: #7dd3fc;
    box-shadow: 0 6px 25px rgba(56, 189, 248, 0.5);
    transform: translateY(-2px);
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 800px;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-logo {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Карточки в стиле дэшборда */
.card-panel {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1850px;
    margin: 0 auto;
    padding: 120px 4%;
    border-top: 1px solid var(--border-color);
}

.stat-circles {
    display: flex;
    gap: 50px;
}

.stat-circle {
    width: 280px;
    height: 280px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    transition: transform 0.3s, border-color 0.3s;
}

.stat-circle:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.1);
}

.stat-circle h3 {
    margin-bottom: 15px;
    font-size: 52px;
    color: var(--text-main);
}

.stat-circle p {
    font-size: 16px;
    color: var(--text-muted);
}

.stats-text h2 {
    font-size: 64px;
    line-height: 1.2;
    max-width: 600px;
}

.proxy-section-v2 {
    max-width: 1850px;
    margin: 0 auto;
    padding: 150px 4%;
    border-top: 1px solid var(--border-color);
}

.proxy-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 120px;
}

.proxy-visual-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.proxy-polished-diagram {
    gap: 15px;
    padding: 40px;
}

.polished-connector, .polished-node, .proxy-polished-diagram {
    position: relative;
    display: flex;
    align-items: center;
}

.polished-node {
    flex-direction: column;
    gap: 15px;
    width: 160px;
    text-align: center;
    overflow: hidden;
    padding: 20px 0;
}

.polished-node img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform .3s ease;
}

.polished-node:hover img {
    transform: scale(1.05);
}

.polished-node span {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.polished-node.accent span {
    color: var(--accent-primary);
    font-weight: 700;
}

.polished-connector {
    width: 100px;
    justify-content: center;
}

.connector-line {
    width: 100%;
    height: 2px;
    background: var(--border-color);
}

.connector-line.speed {
    background: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-primary);
}

.polished-connector.arrow .connector-line::after {
    content: "";
    position: absolute;
    right: -2px;
    top: -4px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--border-color);
    border-right: 2px solid var(--border-color);
    transform: rotate(45deg);
}

.polished-connector.arrow .connector-line.speed::after {
    border-top: 2px solid var(--accent-primary);
    border-right: 2px solid var(--accent-primary);
}

.polished-label {
    position: absolute;
    font-weight: 700;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: var(--accent-primary);
    white-space: nowrap;
    text-align: center;
}

.proxy-promo-content {
    flex: 1;
    max-width: 800px;
}

.promo-title {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: none;
}

.promo-description {
    font-size: 24px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 45px;
}

.promo-steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.promo-step-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--card-bg);
    padding: 15px 25px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.step-num {
    font-size: 20px;
    color: var(--accent-primary);
    font-weight: 700;
    font-family: monospace;
}

.promo-step-item p {
    font-size: 20px;
    color: var(--text-main);
    margin: 0;
}

.promo-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
}

.btn-primary-promo, .btn-outline-promo {
    flex: 1;
    padding: 22px 0;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    border-radius: 40px;
    cursor: pointer;
    transition: all .3s ease;
    display: inline-block;
}

.btn-primary-promo {
    background-color: var(--accent-primary);
    color: #000;
    border: 0;
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.3);
}

.btn-primary-promo:hover {
    background-color: #7dd3fc;
    color: #000;
}

.btn-outline-promo {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-outline-promo:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.promo-faq-link {
    color: var(--text-muted);
    font-size: 16px;
    text-decoration: underline;
}

.features {
    padding: 120px 0;
    border-top: 1px solid var(--border-color);
}

.features-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 100px;
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 4%;
}

.features-nav, .features-content-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.features-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 40px;
}

.feature-menu {
    list-style: none;
}

.feature-menu-item {
    font-size: 36px;
    color: var(--text-muted);
    margin-bottom: 25px;
    cursor: pointer;
    transition: .3s;
    padding-left: 0;
}

.feature-menu-item:hover {
    color: var(--text-main);
}

.feature-menu-item.active {
    color: var(--text-main);
    font-weight: 700;
    padding-left: 20px;
    border-left: 4px solid var(--accent-primary);
}

.features-content-box {
    padding: 60px;
    justify-content: flex-start;
}

.feature-detail {
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    animation: fadeInContent .5s cubic-bezier(.4,0,.2,1) forwards;
}

.feature-detail.active {
    display: flex;
}

.feature-detail h3.text-accent {
    color: var(--accent-primary);
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.feature-detail p {
    font-size: 24px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 650px;
    margin-bottom: 0;
}

.feature-detail p b {
    color: var(--accent-primary);
    font-weight: 600;
}

.btn-secondary-hero {
    background: 0 0;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    padding: 22px 40px;
    border-radius: 40px;
    font-size: 22px;
    font-weight: 700;
    display: inline-block;
    transition: .3s;
    text-align: center;
}

.btn-secondary-hero:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.footer {
    max-width: 1850px;
    margin: 0 auto;
    padding: 120px 4% 60px;
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.footer::after {
    content: "usyvpn";
    position: absolute;
    bottom: -100px;
    left: 0;
    font-size: 400px;
    color: rgba(56, 189, 248, 0.03); /* Едва заметный голубой */
    z-index: -1;
    pointer-events: none;
    letter-spacing: -10px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 150px;
}

.footer-logo-block .email {
    font-size: 48px;
    margin: 30px 0;
}

.lang-links, .footer-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-columns {
    display: flex;
    gap: 120px;
}

.footer-col h4 {
    margin-bottom: 15px;
    color: var(--text-main);
    font-size: 22px;
}

.footer-bottom {
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: right;
    font-size: 16px;
}

.footer-col a, .lang-links a {
    color: var(--text-muted);
    font-size: 18px;
}

.footer-col a:hover, .lang-links a:hover {
    color: var(--accent-primary);
}

/* Модальное окно Telegram */
.tg-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 17, 32, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    padding: 0 5%;
}

.tg-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.tg-modal-content {
    padding: 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    text-align: center;
    transform: translateY(20px) scale(.95);
    transition: all .3s cubic-bezier(.4,0,.2,1);
}

.tg-modal-overlay.active .tg-modal-content {
    transform: translateY(0) scale(1);
}

.tg-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: 0 0;
    border: 0;
    color: var(--text-muted);
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    transition: color .2s;
}

.tg-modal-close:hover, .tg-modal-title {
    color: var(--text-main);
}

.tg-modal-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.tg-modal-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.tg-modal-text {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 30px;
}

.tg-modal-text strong {
    color: var(--text-main);
}

.tg-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tg-btn-main {
    width: 100%;
    padding: 20px 0;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
}

.tg-modal-btn-secondary {
    background: 0 0;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 18px 0;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 500;
    transition: .3s;
    text-align: center;
}

.tg-modal-btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* ---------------- АДАПТИВНОСТЬ ---------------- */
.burger-btn { display: none; }

@media (min-width: 993px) {
    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-grow: 1;
        margin-left: 40px;
    }
    .nav-links {
        display: flex;
        gap: 30px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    body { font-size: 16px; }
    .container-wide { padding: 0 5%; }
    .header { padding: 15px 5%; background: rgba(15, 21, 34, 0.95); }
    .logo-text { font-size: 20px; }
    .logo-img { width: 30px; }

    .burger-btn {
        display: flex;
        flex-direction: column;
        gap: 6px;
        z-index: 1002;
        cursor: pointer;
    }
    .burger-btn span {
        width: 35px;
        height: 3px;
        background: var(--text-main);
        transition: .4s ease;
        border-radius: 3px;
    }
    .burger-btn.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .burger-btn.active span:nth-child(2) { opacity: 0; }
    .burger-btn.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .nav-container {
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--bg-color);
        z-index: 1001;
        display: flex;
        justify-content: center;
        gap: 40px;
        transition: right .4s ease-in-out;
        border-left: 1px solid var(--border-color);
    }
    .nav-container.active { right: 0; box-shadow: -15px 0 30px rgba(0,0,0,.7); }
    .nav-links { flex-direction: column; gap: 30px; font-size: 22px; text-align: center; }
    
    .menu-overlay {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100vh;
        background: rgba(0,0,0,.6); z-index: 1000;
        opacity: 0; pointer-events: none; transition: .4s ease;
    }
    .menu-overlay.active { opacity: 1; pointer-events: all; }

    .hero { flex-direction: column; padding: 100px 5% 40px; }
    .hero-content { margin-top: 20px; text-align: center; }
    .hero h1 { font-size: 48px; margin-bottom: 25px; }
    .tags { justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
    .tag { font-size: 14px; padding: 8px 16px; }
    .subtitle { font-size: 18px; margin-bottom: 40px; }
    .hero-actions-main { flex-direction: column; gap: 15px; width: 100%; }
    .btn-primary, .btn-secondary-hero { font-size: 18px; padding: 18px 40px; width: 100%; }
    .hero-visual { display: none; }

    .stats { flex-direction: column-reverse; padding: 60px 0; gap: 40px; text-align: center; }
    .stats-text h2 { font-size: 38px; }
    .stat-circles { flex-direction: column; gap: 20px; align-items: center; width: 100%; }
    .stat-circle { width: 220px; height: 220px; padding: 20px; }
    .stat-circle h3 { font-size: 40px; }

    .proxy-section-v2 { padding: 60px 5%; }
    .proxy-container { flex-direction: column-reverse; gap: 60px; text-align: center; }
    .promo-title { font-size: 42px; }
    .promo-actions { flex-direction: column; }
    
    .proxy-polished-diagram {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .polished-node { flex-direction: row; align-items: center; text-align: left; width: auto; padding: 10px 0; gap: 20px; }
    .polished-connector { width: 2px; height: 40px; margin-left: 29px; display: block; }
    .polished-connector .connector-line { width: 2px; height: 100%; position: relative; }
    .polished-connector .connector-line::after, .polished-connector.arrow .connector-line::after {
        content: ""; position: absolute; bottom: -4px; left: -4px; top: auto; right: auto;
        width: 10px; height: 10px; border-bottom: 2px solid var(--border-color); border-right: 2px solid var(--border-color);
        border-top: none; border-left: none; transform: rotate(45deg);
    }
    .polished-connector .connector-line.speed::after { border-bottom-color: var(--accent-primary); border-right-color: var(--accent-primary); }
    .polished-label { top: 50%; left: 20px; transform: translateY(-50%); text-align: left; }

    .features { padding: 60px 0; border-top: none; }
    .features-container { flex-direction: column; gap: 20px; padding: 0; }
    .features-title { font-size: 38px; text-align: center; padding: 0 5%; margin-bottom: 10px; }
    .features-nav .feature-menu { display: none !important; }
    
    .features-content-box {
        display: flex !important; flex-direction: row; overflow-x: auto; scroll-snap-type: x mandatory;
        gap: 15px; padding: 10px 5% 30px; scroll-padding-left: 5%; border: 0; background: 0 0;
        box-shadow: none; -ms-overflow-style: none; scrollbar-width: none;
    }
    .features-content-box::-webkit-scrollbar { display: none; }
    
    .feature-detail {
        display: flex !important; flex-direction: column; flex: 0 0 85%; scroll-snap-align: start;
        background-color: var(--card-bg); border: 1px solid var(--border-color); border-radius: 24px;
        padding: 30px 25px; height: auto; animation: none;
    }
    .feature-detail h3.text-accent { font-size: 26px; margin-bottom: 15px; line-height: 1.2; }
    .feature-detail p { font-size: 16px; line-height: 1.5; margin: 0; max-width: 100%; }

    .footer { padding: 60px 5% 40px; }
    .footer-top { flex-direction: column; margin-bottom: 40px; gap: 40px; text-align: left; }
    .footer-columns { flex-direction: column; gap: 30px; align-items: flex-start; width: 100%; }
    .footer-logo-block .email { font-size: 22px; margin: 15px 0; }
    .footer-bottom { text-align: left; font-size: 14px; }
    .footer::after { font-size: 80px; bottom: -10px; text-align: center; letter-spacing: 0; width: 100%; }
}

/* Стили для страниц FAQ */
.faq-main-content {
    padding: 160px 4% 100px;
    max-width: 1850px;
    margin: 0 auto;
    min-height: 70vh;
}

.faq-container-narrow {
    max-width: 1000px; /* Сужаем контент для более удобного чтения текста */
    margin: 0 auto;
}

.faq-page-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-align: center;
}

.faq-page-subtitle {
    font-size: 22px;
    color: var(--text-muted);
    line-height: 1.5;
    text-align: center;
    margin-bottom: 60px;
}

.faq-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-card {
    padding: 35px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent-primary);
}

.faq-card-question {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.faq-card-answer {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-card-answer b {
    color: var(--text-main);
}

/* Активный класс для подсветки пункта меню, если мы находимся на этой странице */
.active-nav {
    color: var(--accent-primary) !important;
    font-weight: 700;
}

@media (max-width: 992px) {
    .faq-main-content {
        padding: 100px 5% 60px;
    }
    .faq-page-title {
        font-size: 36px;
    }
    .faq-page-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .faq-card {
        padding: 25px;
    }
    .faq-card-question {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .faq-card-answer {
        font-size: 15px;
    }
}

/* Стили для юридических документов (Политика, Оферта, Правила) */
.legal-main-content {
    padding: 160px 4% 100px;
    max-width: 1850px;
    margin: 0 auto;
    min-height: 70vh;
}

.legal-container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.legal-document {
    padding: 60px;
}

.date-badge {
    display: inline-block;
    background: rgba(56, 189, 248, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(56, 189, 248, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.legal-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.legal-intro {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.legal-section p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-section strong {
    color: var(--text-main);
}

.legal-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.legal-list li {
    position: relative;
    padding-left: 25px;
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.legal-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--accent-primary);
    border-radius: 50%;
}

@media (max-width: 992px) {
    .legal-main-content {
        padding: 120px 5% 60px;
    }
    .legal-document {
        padding: 30px 20px;
    }
    .legal-title {
        font-size: 32px;
    }
    .legal-intro {
        font-size: 16px;
    }
    .legal-section h2 {
        font-size: 22px;
    }
    .legal-section p, .legal-list li {
        font-size: 16px;
    }
}