/* -----------------------------------------------------------
   FEATURE ROW LAYOUT
----------------------------------------------------------- */

.el-feature-row {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

/* -----------------------------------------------------------
   BASE CARD
----------------------------------------------------------- */

.el-card {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: flex-start;
  overflow: hidden;
}

/* -----------------------------------------------------------
   QUOTE CARDS
----------------------------------------------------------- */

.el-card.quote-card {
  background: linear-gradient(180deg, #f7f3ff 0%, #ffffff 60%);
}

.el-card.quote-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #4F2683;
  border-radius: 16px 16px 0 0;
}

.el-card.quote-card .quoteCard {
  text-align: center;
  padding: 28px 24px 26px 24px;
  flex: 1;
}

.el-card .quoteText {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 20px;
}

.quoteAttribution {
  border-top: 1px solid #e2dff0;
  padding-top: 16px;
  margin-top: 12px;
  margin-bottom: 1px;
}

.el-card .quoteAuthor {
  font-weight: 600;
  margin: 0;
  opacity: 0.95;
  color: #4F2683;
  line-height: 1.2;
}

.el-card .quoteMeta {
  margin-top: 2px;
  font-size: 0.9rem;
  color: #555;
  opacity: 0.85;
  line-height: 1.2;
}

.quoteELBar {
  background: #4F2683;
  color: #fff;
  text-align: center;
  padding: 18px 16px;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 0 0 16px 16px;
  margin: 0 -24px -24px -24px;
}

/* -----------------------------------------------------------
   STAT CARDS
----------------------------------------------------------- */

.el-card.stat-card {
  text-align: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  padding: 24px;
  flex: 1;
}

.el-card.stat-card.accent-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #4F2683;
  border-radius: 16px 16px 0 0;
}

.el-card.stat-card .statImage {
  width: 100%;
  height: 180px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 16px;
}

.statLabel {
  font-size: 1.1rem;
  font-weight: 600;
  color: #4F2683;
  margin: 0 0 8px 0;
  opacity: 0.95;
  line-height: 1.4;
  letter-spacing: 0.3px;
  position: relative;
}

.statLabel::after {
  content: "";
  display: block;
  width: 40%;
  height: 2px;
  background: #4F2683;
  margin: 6px auto 0;
  border-radius: 2px;
}

/* -----------------------------------------------------------
   TRAINING SECTIONS
----------------------------------------------------------- */

.training-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  margin-bottom: 40px;
  overflow: hidden;
  position: relative;
  padding: 24px;
}

.training-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #4F2683;
  border-radius: 16px 16px 0 0;
}

.training-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #4F2683;
  margin: 0 0 16px 0;
  position: relative;
}

.training-section h3::after {
  content: "";
  display: block;
  width: 40%;
  height: 2px;
  background: #4F2683;
  margin: 6px 0 0;
  border-radius: 2px;
}

.training-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.training-image {
  flex-shrink: 0;
}

.training-image img {
  max-width: 280px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.training-description {
  flex: 1;
}

.training-description ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-left: 20px;
}

.training-description ul li {
  margin-bottom: 8px;
}

.signup-link {
  background: #4F2683;
  color: #fff;
  text-align: center;
  padding: 16px;
  border-radius: 0 0 16px 16px;
  margin: 0 -24px -24px -24px;
}

.signup-link a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.signup-link a:hover {
  opacity: 0.8;
}

/* -----------------------------------------------------------
   TABBED PANELS
----------------------------------------------------------- */

.TabbedPanelsContainer {
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  background: #fff;
  overflow: hidden;
}

.TabbedPanelsTabGroup {
  border-radius: 16px 16px 0 0;
  background: transparent;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  display: flex;
}

.TabbedPanelsTab {
  padding: 12px 20px;
  font-weight: 600;
  color: #4F2683;
  cursor: pointer;
  border: none;
  background: #fff;
}

.TabbedPanelsTabSelected {
  background: #f7f3ff;
  color: #4F2683;
  border-bottom: 2px solid #4F2683;
}

.TabbedPanelsTab:first-child {
  border-top-left-radius: 16px;
}

.TabbedPanelsTab:last-child {
  border-top-right-radius: 16px;
}

.TabbedPanelsContentGroup {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 0;
}

.TabbedPanelsContent {
  background: #fff;
  padding: 32px;
  position: relative;
}

.TabbedPanelsContent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #4F2683;
  border-radius: 16px 16px 0 0;
}

.TabbedPanelsContent strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: #4F2683;
  margin-bottom: 16px;
  line-height: 1.4;
}

.TabbedPanelsContent strong::after {
  content: "";
  display: block;
  width: 40%;
  height: 2px;
  background: #4F2683;
  margin: 8px 0 0;
  border-radius: 2px;
}

.TabbedPanelsContent p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.TabbedPanelsContent a {
  color: #4F2683;
  font-weight: 600;
  text-decoration: none;
}

.TabbedPanelsContent a:hover {
  text-decoration: underline;
}

/* -----------------------------------------------------------
   RESPONSIVE
----------------------------------------------------------- */

@media (max-width: 768px) {
  .el-feature-row {
    flex-direction: column