
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #222;
}
header {
  background-color: #F7E9D1;
  padding: 1.5rem 1.5rem;
  text-align: center;
}
header .logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
header img {
  max-width: 60px;
  height: auto;
}
header h1 {
  font-size: 2rem;
  margin: 0;
  font-weight: 800;
}
.hero {
  text-align: center;
  padding: 2rem 1.5rem;
}
.hero h2 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.cta-button {
  background-color: #25D366;
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background-color: #1eb75d;
}
.section {
  background: #f9f9f9;
  padding: 2rem 1.5rem;
  text-align: center;
}
.section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.section ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
.section ul li {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  padding-left: 1.2rem;
  position: relative;
}
.section ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #25D366;
  font-weight: bold;
}
.testimonial {
  font-style: italic;
  color: #555;
  max-width: 600px;
  margin: 1.5rem auto;
}
footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #777;
  background: #f1f1f1;
}
.provider-cta {
  margin-top: 4rem;
  background: #f9f9f9;
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.provider-cta h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.provider-cta p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
