/* =====================================================================
   pers_data_policy_styles.css
   ctobishkek.kg — Privacy Policy page styles (RU/KG)
   ===================================================================== */

/* Page base */
body{
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: #111;
    background: #fff;
}

/* Layout */
.doc-wrap{
    max-width: 980px;
    margin: 0 auto;
    padding: 18px 14px 40px;
}

/* Top bar */
.doc-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

/* Back button */
.doc-back button{
    background: #fff;
    border: 1px solid rgba(13,82,105,.25);
    border-radius: 10px;
    padding: 6px 10px;
    color: #0d5269;
    font-size: 14px;
    cursor: pointer;
}

.doc-back button:hover{
    background: rgba(13,82,105,.08);
}

/* Language switch */
.lang-switch{
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-switch a{
    text-decoration: none;
    padding: 6px 10px;
    border: 1px solid rgba(13,82,105,.25);
    border-radius: 10px;
    color: #0d5269;
    font-size: 14px;
}

.lang-switch a.is-active{
    background: rgba(13,82,105,.10);
    font-weight: 600;
}

/* Card */
.doc-card{
    border: 1px solid rgba(13,82,105,.14);
    border-radius: 14px;
    padding: 16px;
}

/* Typography */
h1{
    font-size: 24px;
    margin: 10px 0 14px;
    color: rgb(4,48,63);
    line-height: 1.15;
}

h1 small{
    display: block;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(19,19,20,.75);
}

h2{
    font-size: 16px;
    margin: 18px 0 8px;
    color: rgb(4,48,63);
}

p{
    margin: 8px 0;
    line-height: 1.5;
}

ul{
    margin: 8px 0 8px 18px;
}

li{
    margin: 6px 0;
}

a{
    color: #0d5269;
}