/* Стили для страниц соглашений и политики конфиденциальности */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 2em;
    background: linear-gradient(135deg, #f9f9f9 0%, #e0e7ff 100%);
    color: #333;
}

.container {
    max-width: 800px;
    margin: 2em auto;
    background: #fff;
    padding: 2em;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    animation: fadeIn 1s ease-in-out;
}

h1 {
    color: #8a2be2;
    font-size: 2.5em;
    margin-bottom: 0.5em;
    animation: slideIn 0.8s ease-out;
}

h2 {
    color: #8a2be2;
    font-size: 1.8em;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

p {
    font-size: 1.1em;
    margin-bottom: 1em;
    opacity: 0;
    animation: fadeInText 1s ease-in-out forwards;
    animation-delay: 0.5s;
}

ul {
    margin-bottom: 1em;
    padding-left: 2em;
    opacity: 0;
    animation: fadeInText 1s ease-in-out forwards;
    animation-delay: 0.7s;
}

footer {
    margin-top: 3em;
    font-size: 0.9em;
    color: #777;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 1em;
}

footer a {
    color: #8a2be2;
    text-decoration: none;
    margin: 0 0.5em;
    transition: color 0.3s;
}

footer a:hover {
    color: #b266ff;
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInText {
    from { opacity: 0; }
    to { opacity: 1; }
}
