

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background: #35424a;
    color: #ffffff;
    padding: 10px 0;
    text-align: center;
}

.showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.product {
    margin: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background: white;
    text-align: center;
    padding: 10px;
}

.product img {
    width: 300px;
    height: 200px;
    display: block;
}

.testimonials {
    margin: 20px;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 5px;
    border: 1px solid #ddd;
    text-align: center;
}

.testimonial {
    margin: 10px 0;
    font-style: italic;
}

footer {
    text-align: center;
    padding: 15px;
    background: #35424a;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}

