/* ==========================================================================
   СТИЛИ ДЛЯ СТРАНИЦЫ ПОЛИТИКИ КОНФИДЕНЦИАЛЬНОСТИ (privacy-style.css)
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f5f7;
    color: #333333;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Шапка страницы */
.privacy-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e4e8;
    padding: 20px 0;
    margin-bottom: 40px;
}

.privacy-header .privacy-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.privacy-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.privacy-logo span {
    color: #a31d24;
}

.privacy-header-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    border-left: 2px solid #e1e4e8;
    padding-left: 15px;
}

/* Карточка с текстом */
.privacy-card {
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    margin-bottom: 60px;
}

h1 {
    font-size: 2.2rem;
    color: #222222;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.privacy-meta {
    display: flex;
    gap: 30px;
    font-size: 0.9rem;
    color: #777777;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
}

.privacy-lead {
    font-size: 1.1rem;
    color: #444444;
    margin-bottom: 30px;
    font-weight: 400;
}

.privacy-section {
    margin-bottom: 35px;
}

h2 {
    font-size: 1.35rem;
    color: #222222;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

p {
    margin-bottom: 15px;
    color: #4a4a4a;
}

ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: #4a4a4a;
}

ul li::before {
    content: "•";
    color: #a31d24;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

code {
    font-family: monospace;
    background-color: #f0f2f5;
    padding: 2px 6px;
    border-radius: 4px;
    color: #a31d24;
    font-size: 0.95em;
}

a {
    color: #a31d24;
    text-decoration: none;
    transition: color 0.1s ease-in-out;
}

a:hover {
    text-decoration: underline;
}

/* Кнопка закрытия */
.privacy-footer-btn {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eeeeee;
}

.btn-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3.2rem;
    width: 14rem;
    background-color: #a31d24;
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-close:hover {
    background-color: #821419;
    text-decoration: none;
}

/* Адаптивность */
@media (max-width: 768px) {
    .privacy-card {
        padding: 30px 25px;
    }
    h1 {
        font-size: 1.75rem;
    }
    .privacy-meta {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 25px;
    }
    h2 {
        font-size: 1.15rem;
    }
}