body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}

header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
background-color: #f8f9fa;
}

nav ul {
list-style: none;
display: flex;
gap: 20px;
}

nav ul li a {
text-decoration: none;
color: #333;
}

#hero {
display: flex;
justify-content: center;
align-items: center;
padding: 40px;
background-color: #e9ecef;
}

.profile {
display: flex;
gap: 20px;
}

.profile img {
border-radius: 50%;
width: 150px;
height: 150px;
}

.profile .info {
display: flex;
flex-direction: column;
gap: 10px;
}

.profile .info button {
padding: 10px 20px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
}

.qr-code {
width: 100px;
height: 100px;
}

section {
padding: 40px 20px;
}

section h2 {
margin-bottom: 20px;
}

#program, #testimonials, #faq, #payment, #lead-gen {
background-color: #f8f9fa;
margin-bottom: 20px;
padding: 20px;
border-radius: 5px;
}

.faq-item {
margin-bottom: 10px;
}

footer {
background-color: #343a40;
color: white;
padding: 20px;
text-align: center;
}

footer div {
margin-bottom: 10px;
}
