
body {
  font-family: "Segoe UI", sans-serif;
  background-color: #111;
  color: #eee;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
.hero-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1e3c52, #142433);
}
.cta-button {
  display: inline-block;
  margin-top: 20px;
  background: #00b894;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.cta-button:hover {
  transform: scale(1.05);
}
.blog-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}
.blog-section h2, h3 {
  color: #00cec9;
}
ul {
  list-style: none;
  padding: 0;
}
ul li::before {
  content: "✅ ";
}
.footer {
  text-align: center;
  padding: 30px;
  background-color: #1e272e;
  color: #ccc;
}

.testimonials {
  margin-top: 30px;
  padding: 20px;
  background: #1c1c1c;
  border-radius: 10px;
}
.testimonials blockquote {
  border-left: 4px solid #00cec9;
  padding: 10px 20px;
  margin: 20px 0;
  font-style: italic;
  color: #ccc;
}
.testimonials footer {
  margin-top: 10px;
  color: #999;
  font-size: 0.9em;
}
