* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: calc(1.675rem + 2.7vw);
}

h2 {
  font-size: calc(1.425rem + 1.1vw);
}

h3 {
  font-size: calc(1.375rem + .8vw);
}

h4 {
  font-size: calc(1.325rem + .5vw);
}

h5 {
  font-size: 1.375rem;
}

h6 {
  font-size: 1.125rem;
}

p {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

a {
  text-decoration: none;
  display: inline-block;
  transition: color .2s ease-in-out, opacity .2s ease-in-out;
}

a:hover {
  opacity: .85;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
}

input, button, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.display-1 {
  font-size: calc(1.875rem + 5.5vw);
  font-weight: 700;
  line-height: 1.1;
}

.display-2 {
  font-size: calc(1.775rem + 4.8vw);
  font-weight: 700;
  line-height: 1.1;
}

.display-3 {
  font-size: calc(1.675rem + 4.2vw);
  font-weight: 600;
  line-height: 1.15;
}

.display-4 {
  font-size: calc(1.575rem + 3.5vw);
  font-weight: 600;
  line-height: 1.2;
}

.display-5 {
  font-size: calc(1.525rem + 2.4vw);
  font-weight: 600;
  line-height: 1.15;
}

.display-6 {
  font-size: calc(1.425rem + 1.8vw);
  font-weight: 600;
  line-height: 1.2;
}

.lead {
  font-size: 1.3125rem;
  font-weight: 400;
}

.container {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
}

.g-0 {
  margin-right: 0;
  margin-left: 0;
}

.g-0 > * {
  padding-right: 0;
  padding-left: 0;
}

.g-3 {
  margin-right: -.875rem;
  margin-left: -.875rem;
}

.g-3 > * {
  padding-right: .875rem;
  padding-left: .875rem;
}

.g-4 {
  margin-right: -1.25rem;
  margin-left: -1.25rem;
}

.g-4 > * {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}

.col {
  flex: 1 0 0%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.form-label {
  margin-bottom: .75rem;
  display: inline-block;
  font-weight: 500;
}

.form-control {
  display: block;
  width: 100%;
  padding: .875rem 1.25rem;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.4;
  background-color: transparent;
  border-radius: .625rem;
}

.form-control:focus {
  outline: 0;
}

.form-select {
  display: block;
  width: 100%;
  padding: .875rem 3.5rem .875rem 1.25rem;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.4;
  background-color: transparent;
  border-radius: .625rem;
  appearance: none;
}

.form-check {
  display: block;
  min-height: 1.75rem;
  padding-left: 0;
  margin-bottom: 0;
}

.form-check-input {
  width: 1.625rem;
  height: 1.625rem;
  margin-top: 0;
  margin-right: .75rem;
  vertical-align: top;
  background-color: transparent;
  appearance: none;
  cursor: pointer;
}

.form-check-label {
  cursor: pointer;
}

.btn {
  display: inline-block;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  user-select: none;
  border: 2px solid transparent;
  padding: .875rem 1.75rem;
  font-size: 1.0625rem;
  border-radius: .625rem;
  transition: all .25s ease-in-out;
}

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.1875rem;
  border-radius: .75rem;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.badge {
  display: inline-block;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .5rem;
}

.nav-link {
  display: block;
  padding: .625rem 1.125rem;
  transition: color .2s ease-in-out;
  font-weight: 500;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: .875rem;
  padding-bottom: .875rem;
}

.navbar > .container,
.navbar > .container-fluid {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  padding-top: .5rem;
  padding-bottom: .5rem;
  margin-right: 1.25rem;
  font-size: 1.5rem;
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: .5rem .875rem;
  font-size: 1.125rem;
  line-height: 1;
  background-color: transparent;
  border: 2px solid transparent;
  border-radius: .5rem;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.collapse:not(.show) {
  display: none;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.object-fit-cover {
  object-fit: cover;
}

.h-100 {
  height: 100% !important;
}

.w-100 {
  width: 100% !important;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-center {
  align-items: center !important;
}

.text-start {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-end {
  text-align: right !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.fst-italic {
  font-style: italic !important;
}

.fw-bold {
  font-weight: 600 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.small {
  font-size: .9375rem;
}

.border {
  border: 1px solid !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-start {
  border-left: 1px solid !important;
}

.rounded {
  border-radius: .625rem !important;
}

.rounded-2 {
  border-radius: .75rem !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-2 {
  margin-top: .75rem !important;
}

.mt-3 {
  margin-top: .875rem !important;
}

.mt-4 {
  margin-top: 1.25rem !important;
}

.mt-5 {
  margin-top: 1.5rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-2 {
  margin-bottom: .75rem !important;
}

.mb-3 {
  margin-bottom: .875rem !important;
}

.mb-4 {
  margin-bottom: 1.25rem !important;
}

.mb-5 {
  margin-bottom: 1.5rem !important;
}

.me-2 {
  margin-right: .75rem !important;
}

.me-3 {
  margin-right: .875rem !important;
}

.me-4 {
  margin-right: 1.25rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-3 {
  padding: .875rem !important;
}

.p-4 {
  padding: 1.25rem !important;
}

.p-5 {
  padding: 1.5rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-3 {
  padding-top: .875rem !important;
  padding-bottom: .875rem !important;
}

.py-4 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.py-5 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.ps-3 {
  padding-left: .875rem !important;
}

.ps-4 {
  padding-left: 1.25rem !important;
}

@media (min-width: 576px) {
  .container {
    max-width: 560px;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 740px;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 980px;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: .875rem;
    padding-left: .875rem;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .py-lg-4 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-lg-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1160px;
  }
  h1 {
    font-size: 3.5rem;
  }
  h2 {
    font-size: 2.125rem;
  }
  h3 {
    font-size: 1.875rem;
  }
  h4 {
    font-size: 1.625rem;
  }
  .display-1 {
    font-size: 5.75rem;
  }
  .display-2 {
    font-size: 5rem;
  }
  .display-3 {
    font-size: 4.75rem;
  }
  .display-4 {
    font-size: 4rem;
  }
  .display-5 {
    font-size: 3.25rem;
  }
  .display-6 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1340px;
  }
}

:root {
  --primary: #0d9488;
  --primary-dark: #0f766e;
  --secondary: #f59e0b;
  --accent: #f43f5e;
  --dark: #0f172a;
  --light: #f8fafc;
  --gray: #64748b;
  --gray-light: #cbd5e1;
  --bg-dark: #1e293b;
  --text: #1e293b;
  --text-muted: #64748b;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background-color: var(--light);
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-light {
  background-color: var(--light) !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-gray {
  background-color: #f1f5f9 !important;
}

.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.text-white {
  color: #ffffff !important;
}

.text-white-50 {
  color: rgba(255,255,255,0.65) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.border-primary {
  border-color: var(--primary) !important;
}

.border-secondary {
  border-color: var(--secondary) !important;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #ffffff;
  opacity: 1;
}

.btn-secondary {
  background-color: var(--secondary);
  color: #ffffff;
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background-color: #ea580c;
  border-color: #ea580c;
  color: #ffffff;
  opacity: 1;
}

.btn-light {
  background-color: #ffffff;
  color: var(--dark);
  border-color: #ffffff;
}

.btn-light:hover {
  background-color: var(--light);
  border-color: var(--light);
  color: var(--dark);
  opacity: 1;
}

.btn-outline-light {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline-light:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: var(--dark);
  opacity: 1;
}

.btn-dark {
  background-color: var(--dark);
  color: #ffffff;
  border-color: var(--dark);
}

.btn-dark:hover {
  background-color: var(--bg-dark);
  border-color: var(--bg-dark);
  color: #ffffff;
  opacity: 1;
}

.form-control,
.form-select {
  border: 2px solid var(--gray-light);
  background-color: #ffffff;
  color: var(--text);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(13, 148, 136, 0.15);
}

.form-check-input {
  border: 2px solid var(--gray-light);
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.navbar {
  background-color: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(10px);
}

.navbar-brand {
  color: #ffffff;
}

.navbar-brand:hover {
  color: var(--primary);
  opacity: 1;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.87);
}

.navbar-nav .nav-link:hover {
  color: var(--primary);
  opacity: 1;
}

.navbar-toggler {
  border-color: rgba(255,255,255,0.3);
  color: #ffffff;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

a {
  color: var(--primary);
}

a:hover {
  color: var(--primary-dark);
}

.badge {
  background-color: var(--secondary);
  color: #ffffff;
}

.hero-overlay {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 600px;
}

.hero-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.91) 0%, rgba(15, 23, 42, 0.89) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.section-overlay {
  position: relative;
  background-size: cover;
  background-position: center;
}

.section-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.72);
}

.gradient-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.gradient-accent {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
}

.card-hover {
  transition: transform .3s ease, box-shadow .3s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.14);
}

.icon-box {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .75rem;
  font-size: 1.75rem;
  background-color: var(--primary);
  color: #ffffff;
}

.divider-line {
  width: 75px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 2px;
  margin: 1.5rem 0;
}

@media (max-width: 991px) {
  .hero-overlay {
    min-height: 520px;
  }
  
  .py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  
  .split-section-img {
    min-height: 380px !important;
  }
  
  .pricing-card img {
    max-height: 220px;
    object-fit: cover;
    width: 100%;
  }
  
  .hero-content-wrapper {
    padding: 80px 0 70px;
  }
}

@media (max-width: 767px) {
  .stats-number {
    font-size: 2.25rem;
  }
  
  .custom-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }
}

.privacy-page {
  padding: 4rem 0 3.5rem;
  background-color: #ffffff;
}

.privacy-page h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #0f172a;
}

.privacy-page h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.privacy-page p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 1.25rem;
}

.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 2rem;
}

.thankyou-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-icon i {
  font-size: 4rem;
  color: #ffffff;
}

.thankyou-page h1 {
  font-size: 2.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.thankyou-page p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 1rem;
}

.thankyou-page .text-muted {
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.thankyou-page .btn {
  min-width: 220px;
}


.membership-plan-card {
  position: relative;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.membership-plan-card:hover {
  border-color: #0d9488;
  box-shadow: 0 16px 40px rgba(13, 148, 136, 0.12);
  transform: translateY(-8px);
}

.membership-plan-card.premium-plan {
  border: 2px solid #0d9488;
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.15);
  transform: scale(1.04);
}

.membership-plan-card.premium-plan:hover {
  transform: scale(1.04) translateY(-8px);
  box-shadow: 0 20px 48px rgba(13, 148, 136, 0.2);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b 0%, #f43f5e 100%);
  color: #ffffff;
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.popular-badge i {
  font-size: 0.75rem;
  margin-right: 0.25rem;
}

.plan-header {
  margin-bottom: 1.75rem;
}

.plan-header h4 {
  font-size: 1.625rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.plan-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 1rem;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #64748b;
  margin-right: 0.25rem;
}

.price-amount {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 1.125rem;
  color: #64748b;
  font-weight: 500;
  margin-left: 0.25rem;
}

.plan-savings {
  display: inline-block;
  background: #ecfdf5;
  color: #059669;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.premium-savings {
  background: linear-gradient(135deg, #fef3c7 0%, #fce7f3 100%);
  color: #b91c1c;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.plan-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 1rem;
  color: #475569;
  display: flex;
  align-items: center;
  line-height: 1.5;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li i {
  color: #0d9488;
  font-size: 1.25rem;
  margin-right: 0.875rem;
  flex-shrink: 0;
}

.membership-plan-card .btn {
  margin-top: auto;
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 1.0625rem;
}

@media (max-width: 991px) {
  .membership-plan-card.premium-plan {
    transform: scale(1);
  }
  
  .membership-plan-card.premium-plan:hover {
    transform: translateY(-8px);
  }
  
  .price-amount {
    font-size: 3.25rem;
  }
}

@media (max-width: 767px) {
  .membership-plan-card {
    padding: 1.75rem 1.5rem;
  }
  
  .price-amount {
    font-size: 2.75rem;
  }
  
  .plan-header h4 {
    font-size: 1.5rem;
  }
}