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

.container {
    width: 80%;
    max-width: 1000px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.main-title {
    text-align: center;
    color: red;
    font-size: 1.8em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    border: 1px solid #000;
    text-align: center;
    margin-bottom: 30px;
}

.form-container .product-img {
    width: 100%;
    max-width: 200px;
    margin-bottom: 20px;
}

.form-container h2 {
    margin-bottom: 10px;
}

.form-container input {
    width: 80%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-container button {
    width: 100%;
    max-width: 250px;
    padding: 10px 20px;
    background-color: green;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.testimonial .avatar {
    width: 50px;
    height: 50px;
    /* border-radius: 50%; */
}

.testimonial-content {
    flex: 1;
}

.testimonial-content h3 {
    margin: 0;
    font-size: 1.2em;
}

.testimonial-content p {
    margin: 10px 0;
}

.testimonial-content .review-img {
    width: 100%;
    max-width: 300px;
    /* border-radius: 10px; */
    margin-top: 10px;
}

.testimonial-content .date {
    font-size: 0.8em;
    color: #777;
    margin-top: 10px;
}
