.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.privacy-header h1 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 28px;
}

.last-updated {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 20px;
}

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

.privacy-section h2 {
    color: #2c3e50;
    margin: 30px 0 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
    font-size: 22px;
}

.privacy-section h3 {
    color: #34495e;
    margin: 20px 0 10px;
    font-size: 18px;
}

.privacy-section p {
    margin-bottom: 15px;
    text-align: justify;
}

.highlight {
    background-color: #f8f9fa;
    padding: 15px;
    border-left: 4px solid #3498db;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}

.contact-info {
    background-color: #f1f8ff;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    border-left: 4px solid #2980b9;
}

.details-list {
    list-style: none;
    margin-left: 0;
}

.details-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.back-link {
    display: inline-block;
    margin-top: 15px;
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

/* Подсветка заполняемых полей */
.fill-field {
    background-color: #fffacd;
    padding: 2px 4px;
    border-radius: 3px;
    border: 1px dashed #ffcc00;
    transition: background-color 0.3s ease;
}

.fill-field:focus {
    background-color: #fff;
    outline: 2px solid #3498db;
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 20px;
    }
    
    .privacy-header h1 {
        font-size: 24px;
    }
    
    .privacy-section h2 {
        font-size: 20px;
    }
}