/* Базовые сбросы */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

/* ШАПКА - серая */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #4a4a4a;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    border-bottom: 3px solid #f7a11a;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.logo-img {
    height: 50px;
    width: auto;
    /* Убрал фильтр, который менял цвет */
}

/* Навигация */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    padding: 8px 0;
}

.nav-link:hover {
    color: #f7a11a;
}

.contact-btn {
    background-color: #f7a11a;
    color: #4a4a4a !important;
    padding: 10px 20px !important;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: 600;
}

.contact-btn:hover {
    background-color: #e09010;
    color: #4a4a4a !important;
}

/* Мобильное меню */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 3px;
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
}

/* Основной контент */
.privacy-policy-page {
    max-width: 1000px;
    margin: 100px auto 40px;
    padding: 40px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
}

.privacy-policy-page h1 {
    font-size: 2.2rem;
    color: #4a4a4a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #f7a11a;
}

.privacy-policy-page h2 {
    font-size: 1.5rem;
    color: #4a4a4a;
    margin: 30px 0 15px;
}

.privacy-policy-page p {
    margin-bottom: 15px;
    color: #444;
}

.privacy-policy-page ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-policy-page li {
    margin-bottom: 8px;
    color: #444;
}

.privacy-policy-page a {
    color: #f7a11a;
    text-decoration: none;
}

.privacy-policy-page a:hover {
    text-decoration: underline;
}

.privacy-policy-page .highlight {
    background-color: #f0f0f0;
    padding: 25px;
    border-left: 5px solid #f7a11a;
    border-radius: 8px;
    margin: 25px 0;
    font-weight: 500;
}

.privacy-policy-page .last-updated {
    color: #888;
    font-style: italic;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .header-container {
        padding: 12px 20px;
    }

    .logo-img {
        height: 40px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #4a4a4a;
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        transition: right 0.3s ease;
        z-index: 1002;
        padding: 20px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.2);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-overlay.active {
        display: block;
    }

    .nav-link {
        font-size: 18px;
    }

    .privacy-policy-page {
        margin: 90px 15px 30px;
        padding: 25px;
    }

    .privacy-policy-page h1 {
        font-size: 1.8rem;
    }

    .privacy-policy-page h2 {
        font-size: 1.3rem;
    }

    .privacy-policy-page .highlight {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-policy-page {
        padding: 20px;
    }

    .privacy-policy-page h1 {
        font-size: 1.5rem;
    }

    .privacy-policy-page h2 {
        font-size: 1.2rem;
    }
}