/* ================================================
   ПОЛИТИКА КОНФИДЕНЦИАЛЬНОСТИ - ПОЛНЫЕ СТИЛИ
   ================================================ */

/* Основные стили страницы */
.privacy-page {
    padding-top: 0;
    background: var(--bg-light);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Заголовки секций */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* ================================================
   ЗАГОЛОВОЧНАЯ СЕКЦИЯ
   ================================================ */
.privacy-header {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.privacy-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.header-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.header-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.privacy-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.header-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    font-weight: 300;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.last-updated:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ================================================
   СЕКЦИЯ ВВЕДЕНИЯ
   ================================================ */
.privacy-intro {
    padding: 4rem 0;
    background: #fff;
}

.intro-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
}

.intro-icon {
    font-size: 4rem;
    color: var(--primary-color);
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(46, 139, 87, 0.2));
}

.intro-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--secondary-text-color);
}

/* ================================================
   ОГЛАВЛЕНИЕ
   ================================================ */
.privacy-toc {
    padding: 4rem 0;
    background: var(--bg-light);
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.toc-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 139, 87, 0.1), transparent);
    transition: left 0.6s ease;
}

.toc-item:hover::before {
    left: 100%;
}

.toc-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
    border-color: var(--primary-color);
}

.toc-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

.toc-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.toc-content p {
    font-size: 0.9rem;
    color: var(--secondary-text-color);
    margin: 0;
    opacity: 0.9;
}

/* ================================================
   СЕКЦИИ КОНТЕНТА
   ================================================ */
.privacy-section {
    padding: 4rem 0;
    scroll-margin-top: 100px;
}

.privacy-section.alt-bg {
    background: var(--bg-light);
}

/* ================================================
   ТИПЫ ДАННЫХ
   ================================================ */
.data-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.data-type-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.data-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.data-type-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 2rem 1rem;
    background: var(--gradient-1);
    color: white;
    position: relative;
}

.data-type-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.3), 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.3));
}

.data-type-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.data-type-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.data-type-content {
    padding: 2rem;
}

.data-type-content p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

.data-type-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.data-type-content ul li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    color: var(--secondary-text-color);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.data-type-content ul li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.data-type-content ul li i {
    color: var(--success-color);
    font-size: 0.9rem;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

/* ================================================
   ИСПОЛЬЗОВАНИЕ ДАННЫХ
   ================================================ */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.usage-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.usage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

.usage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.usage-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
    transition: all 0.3s ease;
}

.usage-card:hover .usage-icon {
    transform: scale(1.1);
}

.usage-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.usage-card ul {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
}

.usage-card ul li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: var(--secondary-text-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.usage-card ul li:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.usage-card ul li i {
    color: var(--primary-color);
    font-size: 0.8rem;
    flex-shrink: 0;
    width: 12px;
    text-align: center;
}

/* ================================================
   ПЕРЕДАЧА ДАННЫХ
   ================================================ */
.sharing-info {
    max-width: 900px;
    margin: 0 auto;
}

.sharing-principle {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
}

.principle-icon {
    font-size: 3rem;
    color: var(--primary-color);
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(46, 139, 87, 0.2));
}

.principle-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.principle-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--secondary-text-color);
}

.sharing-cases {
    display: grid;
    gap: 1.5rem;
}

.sharing-case {
    padding: 1.8rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.sharing-case:hover {
    transform: translateX(5px);
    box-shadow: var(--card-shadow);
}

.case-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.case-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
}

.case-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.sharing-case p {
    line-height: 1.6;
    color: var(--secondary-text-color);
    font-size: 1rem;
}

/* ================================================
   ЗАЩИТА ДАННЫХ
   ================================================ */
.protection-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.protection-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.protection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

.protection-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.protection-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
    transition: all 0.3s ease;
}

.protection-card:hover .protection-icon {
    transform: scale(1.1);
}

.protection-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.protection-card p {
    line-height: 1.6;
    color: var(--secondary-text-color);
    text-align: left;
    font-size: 1rem;
}

/* ================================================
   ПРАВА ПОЛЬЗОВАТЕЛЕЙ
   ================================================ */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.rights-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.rights-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.rights-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.rights-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 6px 20px rgba(46, 139, 87, 0.3);
    transition: all 0.3s ease;
}

.rights-card:hover .rights-icon {
    transform: scale(1.1);
}

.rights-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
    padding: 0 2rem;
}

.rights-card p {
    padding: 0 2rem;
    line-height: 1.6;
    color: var(--secondary-text-color);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.rights-actions {
    padding: 0 2rem 2rem;
}

.btn-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(46, 139, 87, 0.3);
}

.btn-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.4);
}

.btn-action i {
    font-size: 0.9rem;
}

/* ================================================
   КОНТАКТНАЯ ИНФОРМАЦИЯ
   ================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-details {
    text-align: left;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-text-color);
    font-size: 1rem;
}

.contact-details p i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.contact-details strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ================================================
   ОБНОВЛЕНИЯ ПОЛИТИКИ
   ================================================ */
.policy-updates {
    padding: 4rem 0;
    background: #fff;
}

.updates-card {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 3rem;
    background: var(--gradient-1);
    color: white;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.updates-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.updates-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.updates-content {
    position: relative;
    z-index: 2;
}

.updates-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.updates-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.updates-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    border-radius: 10px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.updates-actions .btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ================================================
   АНИМАЦИИ
   ================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.data-type-card,
.usage-card,
.protection-card,
.rights-card,
.contact-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.data-type-card:nth-child(1) { animation-delay: 0.1s; }
.data-type-card:nth-child(2) { animation-delay: 0.2s; }
.data-type-card:nth-child(3) { animation-delay: 0.3s; }
.data-type-card:nth-child(4) { animation-delay: 0.4s; }

.usage-card:nth-child(1) { animation-delay: 0.1s; }
.usage-card:nth-child(2) { animation-delay: 0.2s; }
.usage-card:nth-child(3) { animation-delay: 0.3s; }
.usage-card:nth-child(4) { animation-delay: 0.4s; }

.protection-card:nth-child(1) { animation-delay: 0.1s; }
.protection-card:nth-child(2) { animation-delay: 0.2s; }
.protection-card:nth-child(3) { animation-delay: 0.3s; }
.protection-card:nth-child(4) { animation-delay: 0.4s; }
.protection-card:nth-child(5) { animation-delay: 0.5s; }
.protection-card:nth-child(6) { animation-delay: 0.6s; }

.rights-card:nth-child(1) { animation-delay: 0.1s; }
.rights-card:nth-child(2) { animation-delay: 0.2s; }
.rights-card:nth-child(3) { animation-delay: 0.3s; }
.rights-card:nth-child(4) { animation-delay: 0.4s; }
.rights-card:nth-child(5) { animation-delay: 0.5s; }
.rights-card:nth-child(6) { animation-delay: 0.6s; }

/* ================================================
   АДАПТИВНОСТЬ
   ================================================ */
@media (max-width: 1200px) {
    .privacy-header h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .intro-card,
    .sharing-principle,
    .updates-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .intro-icon,
    .principle-icon,
    .updates-icon {
        font-size: 3rem;
    }
    
    .toc-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .data-types {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .privacy-header {
        padding: 4rem 0 3rem;
    }
    
    .privacy-header h1 {
        font-size: 2.5rem;
    }
    
    .header-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .data-types,
    .usage-grid,
    .protection-measures,
    .rights-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-card,
    .sharing-principle,
    .updates-card {
        padding: 2rem;
    }
    
    .data-type-content,
    .protection-card,
    .contact-card {
        padding: 2rem;
    }
    
    .rights-card h3 {
        padding: 0 1.5rem;
    }
    
    .rights-card p,
    .rights-actions {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .intro-card,
    .updates-card {
        padding: 1.5rem;
    }
    
    .data-type-content,
    .protection-card,
    .contact-card {
        padding: 1.5rem;
    }
    
    .rights-card h3 {
        padding: 0 1.2rem;
        font-size: 1.2rem;
    }
    
    .rights-card p,
    .rights-actions {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
    
    .last-updated {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .header-icon {
        font-size: 3rem;
    }
    
    .toc-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .usage-icon,
    .protection-icon,
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .rights-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* ================================================
   ДОПОЛНИТЕЛЬНЫЕ УЛУЧШЕНИЯ
   ================================================ */

/* Плавные переходы для всех интерактивных элементов */
.toc-item,
.data-type-card,
.usage-card,
.protection-card,
.rights-card,
.contact-card,
.sharing-case,
.intro-card {
    cursor: pointer;
}

/* Улучшение читаемости текста */
p, li {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.2px;
}

h1, h2, h3, h4 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: -0.3px;
}

/* Стили для скроллбара (если нужно) */
.privacy-page::-webkit-scrollbar {
    width: 8px;
}

.privacy-page::-webkit-scrollbar-track {
    background: var(--bg-light);
}

.privacy-page::-webkit-scrollbar-thumb {
    background: var(--profile-scroll-thumb);
    border-radius: 4px;
}

.privacy-page::-webkit-scrollbar-thumb:hover {
    background: var(--profile-scroll-thumb-hover);
}

/* Дополнительные состояния для кнопок */
.btn-action:active {
    transform: translateY(-1px);
}

.btn-action:focus {
    outline: 2px solid rgba(46, 139, 87, 0.3);
    outline-offset: 2px;
}

/* Улучшение контрастности для лучшей доступности */
.data-type-content ul li:focus,
.usage-card ul li:focus,
.contact-details p:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}
