.hero-product {
    height: 500px;
    background-image: url("");
    background-size: cover;
    background-position: center;
    align-items: center;
    position: relative;
    background-color: #292727;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

.hero-content h1{
    text-align: center;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

.products-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-name {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
}

.product-image {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}
