/* Основные стили лендинга адвоката */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
    padding: 0;
}

.policy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    min-height: 100vh;
}

/* Шапка */
.policy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eaeaea;
}

.policy-header h1 {
    font-size: 28px;
    color: #1a3c6e;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

.policy-date {
    color: #777;
    font-style: italic;
    font-size: 16px;
}

/* Контент политики */
.policy-content {
    font-size: 16px;
}

.policy-section {
    margin-bottom: 35px;
}

.policy-section h2 {
    color: #1a3c6e;
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eaeaea;
}

.policy-section h3 {
    color: #2c5282;
    font-size: 18px;
    margin: 20px 0 10px;
}

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

.policy-section ul,
.policy-section ol {
    margin: 15px 0 15px 30px;
}

.policy-section li {
    margin-bottom: 8px;
}

/* Выделение важных терминов */
.term {
    font-weight: bold;
    color: #1a3c6e;
}

/* Стиль для адреса сайта */
.site-url {
    color: #2c5282;
    font-weight: 600;
    text-decoration: none;
}

.site-url:hover {
    text-decoration: underline;
}

/* Кнопка возврата */
.back-button {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 30px;
    background-color: #1a3c6e;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.back-button:hover {
    background-color: #2c5282;
}

/* Контакты в подвале */
.policy-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eaeaea;
    text-align: center;
    color: #666;
    font-size: 15px;
}

.policy-footer .contact-info {
    margin-bottom: 15px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .policy-container {
        padding: 25px 15px;
    }

    .policy-header h1 {
        font-size: 24px;
    }

    .policy-subtitle {
        font-size: 16px;
    }

    .policy-section h2 {
        font-size: 18px;
    }

    .policy-section h3 {
        font-size: 16px;
    }

    .policy-content {
        font-size: 15px;
    }
}

/* Нумерация разделов */
.section-number {
    color: #1a3c6e;
    font-weight: bold;
}

/* Маркированные списки */
.highlight-list {
    background-color: #f5f9ff;
    padding: 20px;
    border-radius: 4px;
    margin: 20px 0;
    border-left: 3px solid #1a3c6e;
}