/* Стили страницы политики конфиденциальности */
.privacy-hero {
    text-align: center;
    margin-bottom: 40px;
}

.privacy-hero h1 {
    background: linear-gradient(135deg, #E53935, #FF5252);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.2em;
    font-weight: 700;
    margin-bottom: 15px;
}

.privacy-hero .update-date {
    color: #7f8c8d;
    font-style: italic;
    font-size: 1.1em;
}

.privacy-intro {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.1) 0%, rgba(244, 67, 54, 0.1) 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
    border: 1px solid rgba(229, 57, 53, 0.1);
    position: relative;
}

.privacy-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    z-index: 0;
}

.privacy-intro p {
    font-size: 1.2em;
    color: #2c3e50;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    background: linear-gradient(135deg, #E53935, #FF5252);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.privacy-section h2 i {
    margin-right: 15px;
    font-size: 0.8em;
}

.privacy-section h3 {
    color: #E53935;
    font-size: 1.5em;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.privacy-section h3 i {
    margin-right: 10px;
    font-size: 0.7em;
}

.privacy-section p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.privacy-section ul {
    margin-left: 30px;
    margin-bottom: 25px;
}

.privacy-section li {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 1.1em;
    position: relative;
    padding-left: 25px;
}

.privacy-section li::before {
    content: '▸';
    color: #E53935;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.privacy-section strong {
    color: #2c3e50;
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.05) 0%, rgba(244, 67, 54, 0.05) 100%);
    border: 1px solid rgba(229, 57, 53, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    position: relative;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #E53935, #FF5252);
    border-radius: 15px 15px 0 0;
}

.contact-section {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.1) 0%, rgba(244, 67, 54, 0.1) 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(229, 57, 53, 0.2);
    margin-top: 50px;
}

.contact-section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 2em;
}

.contact-item {
    display: inline-block;
    margin: 15px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(229, 57, 53, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.2);
}

.contact-item i {
    color: #E53935;
    font-size: 1.5em;
    margin-bottom: 10px;
    display: block;
}

.contact-item a {
    color: #E53935;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #FF5252;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229, 57, 53, 0.3), transparent);
    margin: 40px 0;
}

/* Медиа-запросы для мобильных устройств */
@media (max-width: 768px) {
    .privacy-hero h1 {
        font-size: 2.5em;
    }

    .privacy-intro {
        padding: 20px;
        margin: 20px;
    }

    .privacy-intro p {
        font-size: 1.1em;
    }

    .privacy-section h2 {
        font-size: 1.8em;
        flex-direction: column;
        align-items: flex-start;
    }

    .privacy-section h2 i {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .privacy-section h3 {
        font-size: 1.3em;
        flex-direction: column;
        align-items: flex-start;
    }

    .privacy-section h3 i {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .contact-section {
        padding: 20px;
        margin: 20px;
    }

    .contact-section h2 {
        font-size: 1.6em;
    }

    .contact-item {
        display: block;
        margin: 10px 0;
        padding: 15px 20px;
    }
}