/* Стили для страницы политики конфиденциальности */
.policy-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    color: #333;
    line-height: 1.6;
}

.policy-page h1 {
    color: #0088cc;
    font-size: 2.2rem;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.policy-section {
    margin-bottom: 40px;
    counter-increment: section;
}

.policy-section:before {
    content: counter(section) ". ";
    color: #0088cc;
    font-weight: bold;
    font-size: 1.4rem;
}

.policy-section__title {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    display: inline;
}

.policy-section__content {
    margin-left: 30px;
}

.policy-subsection {
    margin-bottom: 25px;
    counter-increment: subsection;
}

.policy-subsection:before {
    content: counter(section) "." counter(subsection) ". ";
    color: #0088cc;
    font-weight: bold;
    margin-right: 5px;
}

.policy-subsection__title {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 15px;
    font-weight: 600;
    display: inline;
}

.policy-text {
    margin: 15px 0;
    text-align: justify;
}

.policy-list {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-list li {
    margin-bottom: 10px;
    position: relative;
}

.policy-list li:before {
    content: "•";
    color: #0088cc;
    font-weight: bold;
    position: absolute;
    left: -15px;
}

.policy-highlight {
    background-color: #f8f9fa;
    border-left: 4px solid #0088cc;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.policy-highlight p {
    margin: 0;
}

.contact-info {
    background-color: #e6f7ff;
    border: 1px solid #b3e0ff;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
}

.contact-info h3 {
    color: #006699;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-info p {
    margin: 10px 0;
}

.contact-info a {
    color: #0088cc;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.definition-list {
    margin: 20px 0;
}

.definition-term {
    font-weight: 600;
    color: #0088cc;
    margin-top: 15px;
}

.definition-description {
    margin-left: 20px;
    margin-bottom: 10px;
    padding-left: 15px;
    border-left: 2px solid #e9ecef;
}

.last-updated {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

/* Для мобильных устройств */
@media (max-width: 768px) {
    .policy-page {
        margin: 20px auto;
        padding: 0 15px;
    }

    .policy-page h1 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .policy-section__title {
        font-size: 1.2rem;
    }

    .policy-subsection__title {
        font-size: 1.1rem;
    }

    .policy-section__content {
        margin-left: 20px;
    }

    .contact-info {
        padding: 20px;
    }
}