/* Глобальные стили и базовые настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #F7F7F7;
    color: #1A1A1A;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

/* Принудительно применяем IBM Plex Serif ко всем заголовкам */
h1, h2, h3, h4, h5, h6 {
    font-family: 'IBM Plex Serif', 'Times New Roman', Times, serif !important;
}

h2 {
    margin-bottom: 24px;
}

/* Основной контейнер */
.container {
    display: flex;
    min-height: 100vh;
}

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

