* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    width: 100px;
    height: auto;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2em;
}

.carousel {
    display: flex;
    overflow-x: scroll;
    white-space: nowrap;
    margin: 20px 0;
}

.carousel img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-right: 10px;
    border-radius: 8px;
}

.benefits {
    padding: 40px 20px;
    text-align: center;
}

.benefits h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.benefits p {
    font-size: 1.2em;
    line-height: 1.6;
}

.testimonials {
    padding: 40px 20px;
    text-align: center;
}

.testimonials h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.testimonial {
    display: inline-block;
    margin: 10px;
    vertical-align: top;
    text-align: center;
    width: 250px;
}

.testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.testimonial p {
    font-size: 1em;
    line-height: 1.4;
    margin-bottom: 10px;
}

.testimonial cite {
    font-style: italic;
    color: #666;
}

footer {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    text-decoration: none;
    color: #333;
    margin: 0 10px;
}