<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    background-color: #202020;
    color: #FFFFFF;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #202020;
}

header img {
    max-height: 50px;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin: 50px;
}

.product-image {
    flex: 1 1 50%;
    max-width: 50%;
    margin-right: -500px; /* Adjust the margin to move it more to the right */
}

.product-image img {
    width: 100%;
    max-width: 450px;
    height: 500px;
    object-fit: cover;
}

.product-details {
    flex: 1 1 40%;
    max-width: 40%;
    padding: 20px;
}

.buy-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 20px;
}

.product-description,
.key-features,
.customer-reviews,
.faqs {
    margin-top: 20px;
}

.img1 {
    height: 550px;
    width: 500px;
}

@media screen and (max-width: 768px) {
    .product-container {
        flex-direction: column;
        align-items: center;
    }

    .product-image,
    .product-details {
        flex: 1 1 100%;
        margin-right: 0;
        max-width: 100%;
    }
}</pre></body></html>