*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px; /* Базовый размер для rem */
    scroll-behavior: smooth; /* Плавная прокрутка */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333; /* Базовый цвет текста */
    -webkit-font-smoothing: antialiased; /* Сглаживание шрифтов */
    -moz-osx-font-smoothing: grayscale;
    overflow-y: auto;
}

/* Отключаем стандартные стили для медиа */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Наследование шрифтов для форм */
input, button, textarea, select {
    font: inherit;
}

/* Убираем стандартные стили кнопок */
button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

/* Ссылки */
a {
    color: inherit;
    text-decoration: none;
}

/* Запрет на переполнение текста */
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

/* Убираем отступы у заголовков и параграфов */
h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

/* Списки */
ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}