/* Файл: privacy.css */
.privacy-policy {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background-color: #f4f4f4;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.privacy-policy h1 {
    color: green;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.privacy-policy h2 {
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 22px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.privacy-policy p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.privacy-policy ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.privacy-policy li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.privacy-policy a {
    color: green;
    text-decoration: none;
}

.privacy-policy a:hover {
    text-decoration: underline;
}

.privacy-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.privacy-button {
    padding: 10px 20px;
    background-color: green;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.privacy-button:hover {
    background-color: darkgreen;
}

.privacy-button.reject {
    background-color: #ccc;
    color: #333;
}

.privacy-button.reject:hover {
    background-color: #999;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 20px;
        margin: 20px;
    }
    
    .privacy-buttons {
        flex-direction: column;
    }
}