/* Подключение шрифта Lato */
@font-face {
    font-family: 'Lato';
    src: url('fonts/lato/Lato-Regular.woff2') format('woff2'),
         url('fonts/lato/Lato-Regular.woff') format('woff');
    font-weight: 400;
}

@font-face {
    font-family: 'Lato';
    src: url('fonts/lato/Lato-Bold.woff2') format('woff2'),
         url('fonts/lato/Lato-Bold.woff') format('woff');
    font-weight: 700;
}

/* Стили для контейнера */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Стили для хлебных крошек */
.breadcrumb {
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    margin-bottom: 20px;
    color: #333; /* Черный цвет для текста */
}

.breadcrumb a {
    color: #333; /* Черный цвет для ссылок */
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Стили для заголовков */
h1 {
    font-size: 28px;
    font-family: 'Lato', sans-serif;
    font-weight: 700; /* Используем Lato Bold */
    margin-bottom: 20px;
    color: #333;
}

/* Стили для текста */
p {
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400; /* Используем Lato Regular */
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

ul {
    margin-bottom: 20px;
}

ul li {
    margin-bottom: 10px;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400; /* Используем Lato Regular */
}

/* Адаптивные стили для мобильных устройств */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 24px;
    }

    p, ul li {
        font-size: 14px;
    }

    .breadcrumb {
        font-size: 12px;
        margin-bottom: 15px;
    }
}
