body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    background: #f9fafb;
    color: #222;
    margin: 0;
    padding: 0;
}

.policy-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px 50px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    line-height: 1.7;
}

h1 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 24px;
    color: #2a2a2a;
}

h2 {
    margin-top: 28px;
    font-size: 20px;
    color: #333;
    border-left: 4px solid #4a90e2;
    padding-left: 10px;
}

p, ul {
    margin-bottom: 16px;
}

ul {
    padding-left: 24px;
}

a {
    color: #4a90e2;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-container {
        padding: 20px;
        margin: 20px;
    }

    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 18px;
    }
}


/* Кнопка назад */
.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: #449fc5;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 18px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}