.plan-card {
  background: #fff;
  border: 1px solid #757575;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  max-width: 370px;
  width: 100%;
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
}
.plan-card--highlight {
  border-color: #2563eb;
}
.plan-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #222;
}
.plan-card .plan-card-pricing {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}
.plan-card .plan-price-currency {
  font-size: 32px;
  font-weight: 700;
  margin-right: 2px;
  color: #222;
  margin-top: 8px;
}
.plan-card .plan-yearly-currency {
  font-size: 18px;
  font-weight: 600;
  margin-right: 2px;
  color: #333333;
}
.plan-card .plan-price-desc {
  font-size: 16px;
  color: #888;
  margin-top: 8px;
  margin-left: 0;
}
.plan-card .plan-price {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-right: 8px;
}
.plan-card .plan-yearly {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
}
.plan-card .plan-badge {
  background: #dff6dd;
  color: #078900;
  font-size: 14px;
  font-weight: 500;
  border-radius: 14px;
  padding: 8px 10px;
  margin-left: 14px;
  display: inline-flex;
  align-items: center;
}
.plan-card .plan-desc {
  color: #444;
  font-size: 16px;
  margin-bottom: 24px;
  margin-top: 20px;
  height: 64px;
}
.plan-card .plan-btn {
  border-radius: 20px;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 0;
  margin-bottom: 24px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
  width: 100%;
  outline: none;
}
.plan-btn-filled {
  background: #0b459c;
  color: #fff;
  border: none;
}
.plan-btn-filled:hover {
  background: #174bbd;
}
.plan-btn-outline {
  background: #fff;
  color: #0b459c;
  border: 2px solid #0b459c;
}
.plan-btn-outline:hover {
  background: #e6f0fa;
  color: #0b459c;
  border: 2px solid #174bbd;
}
.plan-card .section-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 18px;
  color: #222;
}
.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
}
.plan-card ul li {
  font-size: 16px;
  color: #222;
  margin-bottom: 16px;
}
.plan-card ul.plan-list {
  list-style: disc;
  padding-left: 1.5em;
}
.plan-card ul.features-list {
  list-style: none;
  padding-left: 0;
}
.plan-card ul.features-list li {
  color: #222;
  display: flex;
  align-items: flex-start;
}
.plan-card ul.features-list li .checkmark {
  color: #2563eb;
  font-size: 18px;
  margin-right: 6px;
  font-weight: bold;
}
.plan-card hr {
  border: none;
  border-top: 1.5px solid #e0e7ef;
  margin: 1.2rem 0;
}
.plan-card-section {
  /* removed extra margin */
}
.plan-card .or-divider {
  font-size: 16px;
  color: #333333;
  margin: 8px 0;
}
.plan-card .yearly-price-container {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
@media (max-width: 500px) {
  .plan-card {
    padding: 18px 6px 18px 6px;
    max-width: 98vw;
  }
  .subscribe-section {
    padding: 10px 0;
  }
}
