body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    text-align: center;
    color: #333;
}

header {
    background: #0084ff;
    color: white;
    padding: 40px 20px;
}

h1 {
    font-size: 24px;
}

p {
    font-size: 18px;
    margin: 10px 0;
}

.limited-offer {
    font-size: 20px;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    background: #ff6600;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 18px;
    margin-top: 20px;
}

.cta-button:hover {
    background: #e65c00;
}

.benefits,
.testimonials,
.form-section {
    padding: 30px 20px;
    background: white;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

li {
    font-size: 18px;
    margin: 10px 0;
}

.testimonial {
    display: flex;
    align-items: center;
    background: #f1f1f1;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    text-align: left;
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-text {
    flex: 1;
}

.testimonial p {
    margin: 5px 0;
}

form input {
    width: 90%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

form button {
    width: 95%;
    padding: 15px;
    background: #ff6600;
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
}

form button:hover {
    background: #e65c00;
}

footer {
    padding: 10px;
    background: #333;
    color: white;
    font-size: 14px;
    margin-top: 20px;
}