body {
    margin: 0;
    font-family: 'Montserrat', sans-serif; /* Вместо Arial */
}

.center {
    max-width: 1200px; 
    margin: 0 auto;   
    padding: 0 15px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 20px;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.3);
}

.logo-text {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-list a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.hero {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                      url('ping/Rectangle 15.jpg'); 
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
}

.hero-content {
    margin-top: 150px;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 25px;
}

.hero-link {
    color: white;
    text-decoration: underline;
    font-size: 16px;
}

.products {
    padding: 80px 0; /* Уменьшил отступ с 300px для адекватного вида */
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

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

.product-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0);
    text-align: center;
}

.product-card img {
    max-width: 100%;
    border-radius: 4px;
}

.price {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #2c3e50;
    font-size: 1.2em;
}

/* Исправленный футер под макет (светлый фон, темный текст) */
.footer {
    background-color: #dcdcdc; 
    color: #333333; 
    padding: 30px 0;
    text-align: center;
    font-size: 16px;
}