/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    text-align: center;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Heading */
h1 {
    font-size: 20px;
    color: black;
}

/* Features List */
ul#features {
    /* list-style: none; */
    list-style: circle; 
    padding: 0;
    text-align: left;
    margin-left: 20px;
}

ul#features li {
    /* background: #e9ecef; */
    margin: 8px 0;
    padding: 5px;
    border-radius: 5px;
}

/* Image Gallery */
.images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.images img {
    width: 100%;    
    height: auto;
    max-width: 1200px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.images img:hover {
    transform: scale(1.1);
}

/* Video */
iframe {
    width: 100%;
    max-width: 1200px;
    height: calc(1200px*315/500);
    margin-top: 20px;
    border-radius: 5px;
}

/* Description */
p#description {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 20px;
    text-indent: 2em;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        width: 90%;
        padding: 15px;
    }

    h1 {
        font-size: 24px;
    }

    iframe {
        height: 250px;
    }
}

.image-container {
    display: flex;
    justify-content: center;
    /* margin-top: 5px; */
    margin-bottom: 30px;
}

#product-image {
    width: 100%;
    height: auto;
    max-width: 1200px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease;
}

.desctription_text{
    text-align: left;
}

button {
    margin: 10px;
    padding: 10px 15px;
    background: white;
    color: gray;
    border: 1px solid;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

button:hover {
    /*background: #0056b3;*/
    color: black;
    border: 1px solid;
}

a.butto2 {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    color: gray;
    border: 1px solid;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

/* Hover effect */
a.butto2:hover {
    color: black;
    border: 1px solid;
}

.button-group {
    display: flex;
    justify-content: flex-start; /* Aligns buttons to the left */
    gap: 10px; /* Adds spacing between buttons */
}

