/* ============================================
   MEMBERSHIP PAGE STYLES
   Co-operative Hospital Kurunegala
   ============================================ */

   /* ===== PAGE BANNER (reuse from gallery) ===== */
.page-banner {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 40%, var(--primary-dark) 100%);
  padding: 140px 0 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  animation: heroGlow 8s infinite ease-in-out alternate;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  animation: heroGlow 10s infinite ease-in-out alternate-reverse;
}

.page-banner h1 {
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.page-banner p {
  font-size: 17px;
  opacity: 0.8;
  max-width: 550px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.breadcrumb-custom li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.breadcrumb-custom li a:hover {
  color: var(--accent-light);
}

.breadcrumb-custom li.active {
  color: var(--accent-light);
  font-size: 14px;
  font-weight: 600;
}

.breadcrumb-custom li.active::before {
  content: '›';
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  margin-right: 0;
}




/* ===== MEMBERSHIP STATS ===== */
.membership-stats {
  margin-top: -50px;
  position: relative;
  z-index: 10;
  padding-bottom: 20px;
}

.m-stat-card {
  background: var(--glass-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-soft);
}

.m-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.m-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
}

.m-stat-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.m-stat-icon.amber {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.m-stat-icon.rose {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
}

.m-stat-number {
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--navy-dark);
  margin: 0;
  line-height: 1;
}

.m-stat-label {
  color: #64748b;
  font-size: 13px;
  margin: 4px 0 0;
  font-weight: 500;
}

/* ===== CTA BANNER ===== */
.membership-cta {
  background: var(--glass-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.membership-cta:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(13, 148, 136, 0.2);
}

.membership-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.membership-cta:hover::before {
  opacity: 1;
}

.membership-cta::after {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.06), transparent 70%);
  pointer-events: none;
}

.cta-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.25);
  transition: transform 0.3s ease;
}

.membership-cta:hover .cta-icon-box {
  transform: scale(1.1);
}

.membership-cta h2 {
  font-weight: 700;
  font-size: 18px;
  color: var(--navy-dark);
  line-height: 1.65;
  margin: 0;
  position: relative;
}

/* ===== SECTION DIVIDER ===== */
.section-divider-img {
  display: block;
  margin: 0 auto 40px;
  height: 30px;
  opacity: 0.4;
}

/* ===== MEMBER CARDS ===== */
.member-card {
  background: var(--glass-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.member-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.member-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(13, 148, 136, 0.2);
}

.member-card:hover::before {
  opacity: 1;
}

/* Card Head */
.card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-head-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.member-card:hover .card-head-icon {
  transform: scale(1.1);
}

.card-head-icon.green {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.12), rgba(6, 182, 212, 0.12));
  color: var(--primary);
}

.card-head-icon.blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(99, 102, 241, 0.12));
  color: #3b82f6;
}

.card-head h3 {
  font-weight: 700;
  font-size: 20px;
  color: var(--navy-dark);
  margin: 0;
  line-height: 1.3;
}

.card-head h3 small {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #94a3b8;
  margin-top: 3px;
}



/* ===== ACTION CTA CARD FIX ===== */
.action-card {
  text-align: center;
  padding: 40px 30px;
}

.action-card h4 {
  font-weight: 700;
  color: var(--navy-dark);
}

.action-card p {
  font-size: 14px;
  color: #64748b;
  max-width: 420px;
  margin: 0 auto;
}


.action-card.soft {
  background: linear-gradient(135deg, rgba(13,148,136,0.06), rgba(6,182,212,0.04));
  border: 1px solid rgba(13,148,136,0.1);
}

/* ===== DESKTOP LAYOUT GRID ===== */
@media (min-width: 992px) {

  .membership-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    grid-template-rows: auto auto;
    gap: 30px;
    align-items: stretch;
  }

  /* LEFT SIDE */
  .layout-req {
    grid-column: 1;
    grid-row: 1;
  }

  .layout-action {
    grid-column: 1;
    grid-row: 2;
  }

  /* RIGHT SIDE */
  .layout-priv {
    grid-column: 2;
    grid-row: 1;
  }

  .layout-deta {
    grid-column: 2;
    grid-row: 2;
  }

}




/* ===== BENEFIT LIST ===== */
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  position: relative;
  padding: 14px 16px 14px 52px;
  border-radius: 12px;
  font-size: 14.5px;
  line-height: 1.65;
  color: #475569;
  transition: all 0.3s ease;
  margin-bottom: 4px;
}

.benefit-list li:hover {
  background: rgba(13, 148, 136, 0.04);
}

.benefit-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 16px;
  top: 16px;
  width: 24px;
  height: 24px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
}

.req-list li::before {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.12), rgba(6, 182, 212, 0.12));
  color: var(--primary);
}

.priv-list li::before {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(99, 102, 241, 0.12));
  color: #3b82f6;
}

/* Highlight text */
.benefit-list li .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* ===== PRIVILEGE HIGHLIGHT CARDS ===== */
.priv-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.priv-highlight-card {
  background: linear-gradient(135deg,
      rgba(59, 130, 246, 0.05),
      rgba(99, 102, 241, 0.03));
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: 16px;
  padding: 20px 12px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.priv-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
}

.priv-highlight-card .priv-value {
  font-weight: 800;
  font-size: 26px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.priv-highlight-card .priv-desc {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ===== FEE CARD ===== */
.fee-card {
  background: linear-gradient(135deg,
      rgba(13, 148, 136, 0.06),
      rgba(6, 182, 212, 0.04));
  border: 1px solid rgba(13, 148, 136, 0.1);
  border-radius: var(--radius-sm);
  padding: 28px;
  margin-top: 24px;
}

.fee-card h5 {
  font-weight: 700;
  font-size: 13px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fee-card h5::after {
  display: none;
}

.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(13, 148, 136, 0.12);
  font-size: 14px;
}

.fee-row:last-of-type:not(.fee-total) {
  border-bottom: 1px dashed rgba(13, 148, 136, 0.12);
}

.fee-row .fee-label {
  color: #64748b;
  font-weight: 500;
}

.fee-row .fee-amount {
  font-weight: 700;
  color: var(--navy-dark);
}

.fee-total {
  border-top: 2px solid var(--primary);
  border-bottom: none !important;
  margin-top: 10px;
  padding-top: 16px;
}

.fee-total .fee-label {
  font-weight: 700;
  color: var(--navy-dark);
  font-size: 15px;
}

.fee-total .fee-amount {
  font-size: 22px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== ACTION BUTTONS ===== */
.member-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.btn-member-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 50px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 6px 24px rgba(13, 148, 136, 0.25);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-member-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(13, 148, 136, 0.35);
  color: #fff;
}

.btn-member-primary i {
  transition: transform 0.3s ease;
}

.btn-member-primary:hover i {
  transform: translateY(2px);
}

.btn-member-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: transparent;
  color: var(--primary);
  border-radius: 50px;
  border: 2px solid rgba(13, 148, 136, 0.2);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-member-outline:hover {
  background: rgba(13, 148, 136, 0.06);
  border-color: var(--primary);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* ===== MEMBERSHIP NOTICE SECTION (DARK) ===== */
.member-notice-section {
  padding: 80px 0;
}

.notice-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.notice-feature:hover {
  transform: translateX(6px);
}

.notice-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent-light);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.notice-feature:hover .notice-feature-icon {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(13, 148, 136, 0.2));
  transform: scale(1.1);
}

.notice-feature h6 {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
}

.notice-feature p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.5;
}

/* ===== PORTAL CARD ===== */
.portal-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portal-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-6px);
}

.portal-card-header {
  background: rgba(255, 255, 255, 0.06);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.portal-card-header i {
  font-size: 22px;
  color: var(--accent-light);
}

.portal-card-header h5 {
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  margin: 0;
}

.portal-card-header h5::after {
  display: none;
}

.portal-card-body {
  padding: 8px 0;
}

.portal-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  gap: 12px;
  transition: background 0.3s ease;
}

.portal-info-row:last-child {
  border-bottom: none;
}

.portal-info-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.portal-info-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.portal-info-value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-align: right;
}

.portal-card-footer {
  padding: 20px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-portal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(13, 148, 136, 0.2));
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: var(--accent-light);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.btn-portal:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(13, 148, 136, 0.3);
}






     .about-section {
        background: linear-gradient(160deg, var(--navy-dark), var(--navy), var(--primary-dark));
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    .about-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .about-glass {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--radius);
        padding: 40px;
    }

    .about-feature {
        display: flex;
        gap: 16px;
        margin-bottom: 28px;
    }

    .about-feature-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(13, 148, 136, 0.2));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: var(--accent-light);
        flex-shrink: 0;
    }

    .about-feature h6 {
        font-weight: 600;
        margin-bottom: 4px;
    }

    .about-feature p {
        font-size: 14px;
        opacity: 0.7;
        margin: 0;
    }
    
    
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .priv-highlights {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}

@media (max-width: 991px) {
  .membership-stats {
    margin-top: -40px;
  }

  .membership-cta {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .membership-cta h2 {
    font-size: 16px;
  }

  .member-card {
    padding: 28px 24px;
  }

  .member-card::before {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
  }

  .priv-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .member-actions {
    justify-content: center;
  }

  .portal-info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 24px;
  }

  .portal-info-value {
    text-align: left;
  }

  .member-notice-section {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .m-stat-card {
    padding: 18px 16px;
    gap: 12px;
  }

  .m-stat-icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
    border-radius: 12px;
  }

  .m-stat-number {
    font-size: 1.4rem;
  }

  .m-stat-label {
    font-size: 11px;
  }

  .membership-cta {
    padding: 22px 18px;
  }

  .membership-cta h2 {
    font-size: 14px;
  }

  .cta-icon-box {
    width: 50px;
    height: 50px;
    font-size: 20px;
    border-radius: 14px;
  }

  .card-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .card-head-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .card-head h3 {
    font-size: 18px;
  }

  .member-card {
    padding: 24px 18px;
  }

  .benefit-list li {
    padding: 12px 12px 12px 46px;
    font-size: 13.5px;
  }

  .benefit-list li::before {
    left: 12px;
    top: 14px;
    width: 22px;
    height: 22px;
    font-size: 9px;
  }

  .fee-card {
    padding: 20px 16px;
  }

  .fee-total .fee-amount {
    font-size: 18px;
  }

  .priv-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .priv-highlight-card {
    padding: 16px 10px;
  }

  .priv-highlight-card .priv-value {
    font-size: 22px;
  }

  .priv-highlight-card .priv-desc {
    font-size: 10px;
  }

  .member-actions {
    flex-direction: column;
    margin-top: 36px;
  }

  .btn-member-primary,
  .btn-member-outline {
    justify-content: center;
    padding: 14px 28px;
    font-size: 14px;
    width: 100%;
  }

  .notice-feature {
    gap: 12px;
  }

  .notice-feature-icon {
    width: 42px;
    height: 42px;
    font-size: 16px;
    border-radius: 12px;
  }

  .notice-feature h6 {
    font-size: 14px;
  }

  .notice-feature p {
    font-size: 12px;
  }

  .portal-card-header {
    padding: 18px 20px;
  }

  .portal-card-header h5 {
    font-size: 15px;
  }

  .portal-card-body {
    padding: 4px 0;
  }

  .portal-info-row {
    padding: 10px 20px;
  }

  .portal-card-footer {
    padding: 16px 20px;
  }

  .member-notice-section {
    padding: 50px 0;
  }
}

@media (max-width: 576px) {
  .membership-stats {
    margin-top: -35px;
  }

  .m-stat-card {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .m-stat-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
    border-radius: 10px;
  }

  .m-stat-number {
    font-size: 1.2rem;
  }

  .m-stat-label {
    font-size: 10px;
  }

  .membership-cta {
    padding: 18px 14px;
    border-radius: 16px;
  }

  .membership-cta h2 {
    font-size: 13px;
    line-height: 1.6;
  }

  .cta-icon-box {
    width: 44px;
    height: 44px;
    font-size: 18px;
    border-radius: 12px;
  }

  .section-divider-img {
    height: 24px;
    margin-bottom: 30px;
  }

  .member-card {
    padding: 20px 16px;
    border-radius: 18px;
    margin-bottom: 20px;
  }

  .card-head {
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .card-head-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
    border-radius: 12px;
  }

  .card-head h3 {
    font-size: 16px;
  }

  .card-head h3 small {
    font-size: 12px;
  }

  .benefit-list li {
    padding: 10px 10px 10px 42px;
    font-size: 13px;
    border-radius: 10px;
  }

  .benefit-list li::before {
    left: 10px;
    top: 12px;
    width: 20px;
    height: 20px;
    font-size: 8px;
    border-radius: 6px;
  }

  .fee-card {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .fee-card h5 {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .fee-row {
    font-size: 13px;
    padding: 9px 0;
  }

  .fee-total .fee-label {
    font-size: 14px;
  }

  .fee-total .fee-amount {
    font-size: 17px;
  }

  .priv-highlights {
    gap: 8px;
  }

  .priv-highlight-card {
    padding: 14px 8px;
    border-radius: 12px;
  }

  .priv-highlight-card .priv-value {
    font-size: 20px;
  }

  .priv-highlight-card .priv-desc {
    font-size: 9px;
    letter-spacing: 0.2px;
  }

  .member-actions {
    margin-top: 30px;
    gap: 12px;
  }

  .btn-member-primary,
  .btn-member-outline {
    padding: 12px 24px;
    font-size: 13px;
    border-radius: 50px;
  }

  .notice-feature {
    margin-bottom: 18px;
  }

  .notice-feature-icon {
    width: 38px;
    height: 38px;
    font-size: 14px;
    border-radius: 10px;
  }

  .portal-card {
    border-radius: 18px;
  }

  .portal-card-header {
    padding: 16px 18px;
    gap: 10px;
  }

  .portal-card-header i {
    font-size: 18px;
  }

  .portal-card-header h5 {
    font-size: 14px;
  }

  .portal-info-row {
    padding: 10px 18px;
  }

  .portal-info-label {
    font-size: 12px;
  }

  .portal-info-value {
    font-size: 13px;
  }

  .portal-card-footer {
    padding: 14px 18px;
  }

  .btn-portal {
    padding: 12px;
    font-size: 13px;
    border-radius: 12px;
  }
}