
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}
header {
  text-align: center;
  padding: 60px 20px;
  background-color: #0F4C81;
  color: #fff;
}
header .logo {
  max-width: 120px;
  margin-bottom: 20px;
}
header h1 {
  font-size: 28px;
  margin-bottom: 10px;
}
header p {
  font-size: 18px;
  margin-bottom: 20px;
}
.cta-btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FF8C42;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  font-size: 18px;
}
section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
h2 {
  color: #0F4C81;
  font-size: 24px;
  margin-bottom: 15px;
  text-align: center;
}
ul, ol {
  font-size: 16px;
  margin-left: 20px;
}
.pricing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.price-card {
  background: #F8F9FA;
  padding: 20px;
  border-radius: 10px;
  width: 280px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.price-card h3 {
  color: #0F4C81;
  margin-bottom: 10px;
}
.price-card p {
  font-size: 18px;
  margin-bottom: 10px;
}
.price-card .cta-btn {
  font-size: 16px;
}
footer {
  background: #0F4C81;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
@media (max-width: 768px) {
  header h1 {
    font-size: 22px;
  }
  .pricing {
    flex-direction: column;
    align-items: center;
  }
}
