/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    background: #007BFF; /* Синий цвет */
    color: #fff;
    padding: 20px 0;
}

.header__logo h1 {
    font-size: 24px;
    margin-bottom: 5px;
}

.header__nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.header__nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.banner {
    background: url('images/banner.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    background-color: #007BFF; /* Фоновый цвет синий */
}

.banner h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #fff;
    color: #007BFF;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.catalog__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.catalog__item {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
}

.catalog__item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.contacts {
    text-align: center;
    padding: 50px 0;
    background-color: #f4f4f4;
}

.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}