body { font-family: Arial, sans-serif; margin:0; background:#fff; }
.container { width:90%; max-width:1100px; margin:auto; }
.hero { background:#003566; color:#fff; padding:100px 0; text-align:center; }
.btn-primary { background:#ffb703; padding:12px 25px; color:#000; text-decoration:none; font-weight:bold; }
.features, .pricing, .faq { padding:60px 0; }
.trust { background:#f2f2f2; padding:12px; font-size:14px; text-align:center; }
.plan { border:1px solid #ddd; padding:20px; margin:10px 0; }

.bm-pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 60px auto;
}

.bm-plan {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s ease;
}

.bm-plan:hover {
  transform: translateY(-8px);
}

.bm-plan h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.bm-plan p {
  font-size: 22px;
  font-weight: bold;
  color: #2563eb;
}

.bm-plan ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.bm-plan ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

.bm-plan.popular {
  border: 2px solid #2563eb;
  transform: scale(1.05);
}

.bm-plan button,
.bm-plan a {
  display: inline-block;
  background: #2563eb;
  color: white;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.bm-plan button:hover {
  background: #1d4ed8;
}
