{# Main container styling #}
.c-price-mod .price-con {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
}

{# Utility class for column-based flex layout #}
.flex-col {
  display: flex;
  flex-direction: column;
  padding: 15px;
}

{# Grid wrapper for pricing columns #}
.price-table-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

{# Inner card styling #}
.c-price-inner {
  position: relative;
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; {# 'top' is not valid; using 'flex-start' #}
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
transition: transform .2s ease, box-shadow .2s ease;
}

{# "Best value" badge or highlight ribbon #}
.highlight-package {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: -moz-fit-content;     {# Firefox support #}
  width: -webkit-fit-content;  {# Safari support #}
  width: fit-content;
  display: flex;
}

{# CTA column spacing #}
.col-cta {
  margin-bottom: 30px;
margin-top: auto;
}

{# Features column and list reset #}
.col-features {
  width: 100%;
flex-grow: 1;
margin-bottom: 20px;
}

.col-features ul {
  padding-left: 0;
  margin: 0;
}

.col-features li {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-start;
}

{# Feature icon container #}
.feature-icon {
  display: flex;
}

.feature-icon svg {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.c-price-inner {
  align-items: center;
}

.col-desc,
.col-features {
  width: 100%;
  text-align: left;
}

.col-desc ul,
.col-features ul {
  text-align: left;
  margin: 0 auto;
  padding-left: 0;
  max-width: 360px;
}

.col-desc li,
.col-features li {
  text-align: left;
}
