#section-prices-root {
  width: 100%;
  margin: 0 auto;
  font-family: "Inter", Arial, sans-serif;
}
.section-prices-toggle {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 45px;
}
.section-prices-toggle button {
  padding: 10px 32px;
  border: 1px solid #0a1531;
  background: #f5f7fa !important;
  color: #0a1531 !important;
  font-weight: 600;
  border-radius: 8px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.section-prices-toggle .active {
  background: #0a1531 !important ;
  color: #fff !important;
}
.section-prices-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.section-prices-card {
  background: #fff;
  border: 1.5px solid #dbe2ea;
  border-radius: 14px;
  padding: 32px 24px 24px 24px;
  max-width: 290px;
  min-width: 250px;
  box-shadow: 0 2px 12px #0001;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-prices-title {
  font-size: 1.25em;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0a1531;
}
.section-prices-desc {
  font-size: 0.98em;
  color: #4b5563;
  margin-bottom: 18px;
  text-align: center;
}
.section-prices-price {
  font-size: 2.2rem;
  text-align: center;
  font-weight: 700;
  color: #0a1531;
  margin-bottom: 2px;
}
.section-prices-price small {
  font-size: 0.6em;
  font-weight: 400;
  color: #4b5563;
}
.section-prices-btn {
  background: #1fab52 !important;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 12px 0;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  margin: 18px 0 18px 0;
  cursor: pointer;
}

.section-prices-btn:hover {
  background: #1fab52d9 !important;
}

.section-prices-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100%;
}
.section-prices-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.98em;
  color: #0a1531;
}
.section-prices-list li:before {
  content: "✅";
  color: #22c55e;
  font-size: 1em;
  margin-right: 4px;
}
@media (max-width: 900px) {
  .section-prices-cards {
    flex-direction: column;
    align-items: center;
  }
  .section-prices-card {
    width: 100%;
    max-width: 400px;
  }
}
