body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;

}

a {
    text-decoration: none;
    color: white;
}

header {
    background: #5EA2A8;
    color: white;
    padding: 0px 0px;
    text-align: center;
    vertical-align: middle;

}

header h1 {
    font-size: 2.5em;
    margin: 0;
}

header p {
    font-size: 1.2em;
    margin: 20px 0;
}

.cta-button {
    background: #A8645E;
    padding: 10px 10px;
    border-radius: 5px;
    font-size: 1.1em;
    display: inline-block;
}

section {
    padding: 60px 20px;
    margin: auto;
}

.features,
.benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.feature-item,
.benefit-item {
    flex: 1 1 300px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.feature-item h3,
.benefit-item h3 {
    margin-top: 0;
}

.testimonials {
    background: #e3f2fd;
}

.testimonial {
    margin-bottom: 30px;
}

footer {
    background: #333;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

form button {
    background: #5EA2A8;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}