/* =========================================
   ПОЛИТИКА КОНФИДЕНЦИАЛЬНОСТИ - АВТОНОМНЫЕ СТИЛИ
   ========================================= */

/* Базовые переменные и сброс только для этой страницы */
.p-page {
    --p-color-black: #000000;
    --p-color-white: #FFFFFF;
    --p-color-gray: #666666;
    --p-color-bg: #FAFAFA;
    --p-font-heading: 'Basement Grotesque', 'Arial Black', system-ui, sans-serif;
    --p-font-body: 'Gilroy', 'Segoe UI', system-ui, sans-serif;
    
    margin: 0;
    padding: 0;
    font-family: var(--p-font-body);
    background-color: var(--p-color-bg);
    color: var(--p-color-black);
    line-height: 1.7;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
}

.p-container {
    max-width: 840px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== ШАПКА ===== */
.p-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.p-logo {
    font-family: var(--p-font-heading);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--p-color-black);
    text-decoration: none;
}

/* ===== ОСНОВНОЙ КОНТЕНТ ===== */
.p-main {
    padding-top: 160px; /* Отступ под фиксированную шапку */
    padding-bottom: 120px;
}

.p-title {
    font-family: var(--p-font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    text-transform: uppercase;
    margin: 0 0 16px 0;
    letter-spacing: 0.02em;
    line-height: 1.1;
    
}

.p-date {
    font-size: 0.9rem;
    color: var(--p-color-gray);
    margin: 0 0 64px 0;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.p-section {
    margin-bottom: 48px;
}

.p-section h2 {
    font-family: var(--p-font-heading);
    font-size: 1.4rem;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.p-section p {
    margin: 0 0 16px 0;
    color: rgba(0, 0, 0, 0.85);
}

/* ===== СПИСКИ ===== */
.p-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.p-list li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: rgba(0, 0, 0, 0.85);
}

.p-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: #819AFF;
    border-radius: 50%;
}

.p-list strong {
    color: var(--p-color-black);
    font-weight: 600;
}

/* ===== АДРЕС И ССЫЛКИ ===== */
.p-address {
    font-style: normal;
    margin-top: 16px;
    color: rgba(0, 0, 0, 0.85);
}

.p-address a {
    color: #819AFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.p-address a:hover {
    color: #EE0505;
}

/* ===== ПОДВАЛ ===== */
.p-footer {
    background-color: var(--p-color-black);
    color: rgba(255, 255, 255, 0.4);
    padding: 40px 0;
    font-size: 13px;
}

.p-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-footer a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.p-footer a:hover {
    color: var(--p-color-white);
}

/* =========================================
   АДАПТИВНОСТЬ (ПЛАНШЕТЫ И МОБИЛЬНЫЕ)
   ========================================= */

/* Планшеты (до 1024px) */
@media (max-width: 1024px) {
    .p-main {
        padding-top: 140px;
        padding-bottom: 100px;
    }
    
    .p-section {
        margin-bottom: 40px;
    }
}

/* Мобильные устройства (до 768px) */
@media (max-width: 768px) {
    .p-page {
        font-size: 16px;
        line-height: 1.6;
    }

    .p-container {
        padding: 0 20px;
    }

    .p-header {
        height: 70px;
    }

    .p-logo {
        font-size: 20px;
    }

    .p-main {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .p-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .p-date {
        font-size: 0.85rem;
        margin-bottom: 40px;
        padding-bottom: 20px;
    }

    .p-section {
        margin-bottom: 32px;
    }

    .p-section h2 {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }

    .p-section p {
        margin-bottom: 12px;
    }

    .p-list li {
        margin-bottom: 10px;
        padding-left: 20px;
    }

    .p-list li::before {
        top: 9px;
        width: 5px;
        height: 5px;
    }

    .p-footer {
        padding: 32px 0;
        font-size: 12px;
    }

    .p-footer__inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Очень маленькие экраны (до 480px) */
@media (max-width: 480px) {
    .p-container {
        padding: 0 16px;
    }

    .p-header {
        height: 60px;
    }

    .p-logo {
        font-size: 18px;
    }

    .p-main {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .p-title {
        font-size: 1.2rem;
    }

    .p-section h2 {
        font-size: 1.1rem;
    }
}