/* --- Переменные --- */
:root {
    --primary-color: #007BFF; /* Синий */
    --success-color: #28A745; /* Зеленый */
    --danger-color: #DC3545;  /* Красный */
    --background-color: #FFFFFF;
    --text-color: #212529;
    --font-family: 'Inter', 'Manrope', sans-serif;
}

/* --- Сброс стилей --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- Базовые стили --- */
body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Анимации --- */
.animated-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animated-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Footer --- */
.site-footer {
    padding: 2rem 0;
    background-color: #f8f9fa;
    text-align: center;
    border-top: 1px solid #e7e7e7;
}

.site-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-footer p {
    margin: 0;
}

.footer-nav a {
    margin-left: 1.5rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-color);
}
