body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f5f5f5;
}

h1 {
    margin-top: 30px;
}

main {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
}

.product {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;

    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-image img {
    width: 300px;
    height: auto;
}

.product-info {
    text-align: left;
    max-width: 300px;
}

.price {
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0;
}

button {
    padding: 14px 30px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    background-color: #111;
    color: white;
    cursor: pointer;
    transition: all 0.25s ease;
}

button:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

@media (max-width: 700px) {

.product {
    flex-direction: column;
}

.product-info {
    text-align: center;
}

}

.features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.features li {
    margin-bottom: 8px;
    font-size: 14px;
}
