/* ===== SHARED POLICY STYLES ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #e0e0e0;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #3498db;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    margin-top: 32px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    background: rgba(0, 0, 0, 0.92);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header .container {
    max-width: 1260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__logo {
    width: 80px;
    height: auto;
}

.page-content {
    padding: 80px 0;
    min-height: 60vh;
}

.page-content h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 0;
}

.page-content p {
    margin-bottom: 16px;
    color: #ccc;
}

.page-content ul {
    margin-left: 20px;
    margin-bottom: 16px;
    list-style-type: disc;
    color: #ccc;
}

.page-content li {
    margin-bottom: 8px;
}

/* ===== FOOTER ===== */
.footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer .container {
    max-width: 1260px;
}

.footer p {
    color: #555;
    font-size: .8rem;
    margin-bottom: 12px;
}

.footer__links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer__links a {
    color: #888;
    font-size: .8rem;
    text-decoration: none;
    transition: color .3s;
}

.footer__links a:hover {
    color: #fff;
}