* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.container {
    text-align: center;
    padding: 20px;
}

h1 {
    margin-bottom: 20px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    width: 200px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    height: auto;
}

.product-card h2 {
    padding: 15px;
    font-size: 18px;
}

a {
    text-decoration: none;
    color: black;
}

/* Responsive layout */
@media (max-width: 600px) {
    .product-grid {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        width: 80%;
    }
}

header {
    margin: 0;
    padding: 0;
    width: 100%;
}

.offer_section {
    width: 100%;
    padding: 20px;
    text-align: center;
    background-color: #67000f;
    margin: 0; /* Убираем лишние отступы */
    position: fixed; /* Закрепляем хедер */
    top: 0;
    left: 0;
    z-index: 1000;
}

.offer_section .main_title {
    color: white;
    font-size: 28px;
    font-weight: bold;
}

.container {
    margin-top: 80px; /* Добавляем отступ, чтобы контент не пересекался с фиксированным хедером */
}
