/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #f5f5f5;
    font-size: 16px;
    line-height: 1.6;
}

.app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Стили для заголовка */
.header {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo img {
    height: 40px;
}

.nav__list {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav__list a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.nav__list a:hover {
    color: #007bff;
}

/* Стили для секций */
.section {
    padding: 40px;
    background-color: #fff;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section__title h1,
.section__title h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section__subtitle p {
    font-size: 1.2rem;
    color: #666;
}

/* Стили для сетки продуктов */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card__info {
    padding: 20px;
}

.product-card__info h3 {
    margin-bottom: 10px;
}

/* Стили для футера */
.footer {
    background-color: #f5f5f5;
    padding: 20px 0;
    text-align: center;
}

.footer__content {
    max-width: 1200px;
    margin: auto;
}

.footer__social {
    margin-top: 20px;
}

.footer__social a {
    display: inline-block;
    margin: 0 10px;
    color: #333;
    transition: color 0.3s;
}

.footer__social a:hover {
    color: #007bff;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
    }

    .nav__list {
        margin-top: 20px;
        flex-direction: column;
    }

    .product-grid {
        grid-template-columns: 100%;
    }
}

@media (max-width: 480px) {
    .section__title h1 {
        font-size: