/* ==========================
   ОБЩИЕ НАСТРОЙКИ
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#0f0f0f;
    color:#ffffff;
    font-family:Arial, sans-serif;
    min-height:100vh;
}

/* ==========================
   ШАПКА
========================== */

.legal-header{
    padding:40px 20px;
    text-align:center;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.legal-header h1{
    font-size:32px;
    font-weight:700;
    line-height:1.3;
}

/* ==========================
   ОСНОВНОЙ КОНТЕНТ
========================== */

.content{
    max-width:1000px;
    margin:0 auto;
    padding:40px 20px 80px;
}

/* ==========================
   КНОПКА НАЗАД
========================== */

.back-link{
    display:inline-block;
    margin-bottom:35px;
    padding:10px 18px;
    border:1px solid rgba(255,255,255,0.15);
    border-radius:10px;
    color:#ffffff;
    text-decoration:none;
    transition:0.3s;
}

.back-link:hover{
    background:rgba(255,255,255,0.08);
}

/* ==========================
   ТЕКСТ ПОЛИТИКИ
========================== */

.content h2{
    margin-top:35px;
    margin-bottom:15px;
    font-size:24px;
    color:#ffffff;
}

.content p{
    color:#d0d0d0;
    line-height:1.8;
    margin-bottom:15px;
}

.content ul{
    margin:15px 0 25px 25px;
}

.content li{
    color:#d0d0d0;
    line-height:1.8;
    margin-bottom:8px;
}

/* ==========================
   ССЫЛКИ
========================== */

.content a{
    color:#ffffff;
}

.content a:hover{
    text-decoration:none;
}

/* ==========================
   ТАБЛИЦЫ (НА БУДУЩЕЕ)
========================== */

.content table{
    width:100%;
    border-collapse:collapse;
    margin:20px 0;
}

.content th,
.content td{
    border:1px solid rgba(255,255,255,0.15);
    padding:12px;
    text-align:left;
}

.content th{
    background:rgba(255,255,255,0.05);
}

/* ==========================
   МОБИЛЬНАЯ ВЕРСИЯ
========================== */

@media (max-width:768px){

    .legal-header{
        padding:30px 15px;
    }

    .legal-header h1{
        font-size:24px;
    }

    .content{
        padding:30px 15px 60px;
    }

    .content h2{
        font-size:20px;
    }

    .content p,
    .content li{
        font-size:15px;
    }

    .back-link{
        width:100%;
        text-align:center;
    }
}