/* Общие стили */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    background-color: #f9f9f9;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Шапка */
.privacy-header {
    background: linear-gradient(135deg, #000 0%, #222 100%);
    color: #fff;
    padding: 30px 0;
    text-align: center;
    border-bottom: 3px solid #00cc44;
}

.privacy-header .logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.privacy-header .green {
    color: #00cc44;
}

.privacy-header .white {
    color: #fff;
}

.privacy-header h1 {
    margin-top: 20px;
    font-size: 28px;
}

/* Основной контент */
.privacy-container {
    padding: 40px 0;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.privacy-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #e0e0e0;
}

.privacy-section h2 {
    color: #00a336;
    font-size: 22px;
    margin-bottom: 15px;
}

.privacy-section h2 i {
    margin-right: 10px;
}

.privacy-section ul {
    padding-left: 20px;
}

.privacy-section li {
    margin-bottom: 8px;
}

.privacy-update {
    color: #777;
    font-style: italic;
    text-align: right;
}

/* Футер */
.privacy-footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.privacy-footer a {
    color: #00cc44;
    text-decoration: none;
}

.back-to-home {
    display: inline-block;
    margin-top: 15px;
    color: #00cc44 !important;
    font-weight: bold;
}

.back-to-home:hover {
    text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 768px) {
    .privacy-header h1 {
        font-size: 24px;
    }
    
    .privacy-section h2 {
        font-size: 20px;
    }
}