h1 {
    color: #333;
}

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

.product-image {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    margin-top: 10px;
}

img {
    display: block;
    margin: 0 auto;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    text-align: center;
}

.form-container {
    background: white;
    padding: 20px;
    width: 300px;
    margin: 50px auto;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

input, select, button {
    width: 100%;
    margin-top: 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}
