body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 80%;
    max-width: 600px;
}

h1 {
    color: #333;
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

.benefits {
    list-style: none;
    padding: 0;
}

.benefits li {
    background: #e0e0e0;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    color: #333;
    font-size: 14px;
}

.price {
    color: #ff5722;
    font-size: 24px;
    font-weight: bold;
}