body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.banner {
    background-image: url('banner-image.jpg'); /* Replace with your banner image */
    background-size: cover;
    background-position: center;
    height: 300px;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner h1 {
    font-size: 3em;
}
.content {
    padding: 20px;
}
.description {
    margin: 20px 0;
    font-size: 1.2em;
    line-height: 1.6;
}
.testimonials {
    background-color: #f4f4f4;
    padding: 20px;
    margin: 20px 0;
}
.testimonials h3 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 20px;
}
.testimonial {
    background: white;
    padding: 15px;
    margin: 10px 0;
    border-left: 5px solid #007BFF;
}
.testimonial p {
    font-size: 1em;
    margin: 0;
}
.testimonial .author {
    text-align: right;
    font-style: italic;
    margin-top: 10px;
}