* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 20px;
    background-color: #f4f4f4;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-size: 2.5rem;
    color: #333;
}

p {
    font-size: 1.1rem;
    color: #555;
}

section {
    margin-bottom: 50px;
}

.product-overview {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content:space-around;
    margin-bottom: 40px;
}
.product-image
{
    width: 22%;
}
.product-image img {
    max-width: 100%;
    border-radius: 8px;
}

.product-description {
    width: 72%;
    margin-left: 20px;
}

.product-details {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.specs, .product-video {
    margin-right: 20px;
}

.product-video video {
    width: 100%;
    max-width:100%;
    height: 300px;
    border-radius: 8px;
}

.image-gallery {
    text-align: center;
}

.image-gallery .gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.image-gallery img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.image-gallery img:hover {
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .product-overview, .product-details {
        flex-direction: column;
    }
    .product-image
    {
        width: 100%;
    }
    .product-description {
        margin-left: 0;
    }
ul{
    margin:10px;
}
    .specs, .product-video {
        margin-right: 0;
    }
}
