@charset "UTF-8";
.about-section-heading {
  /* ==========================================================================
     Shared Base Styles Across Types
     ========================================================================== */
  /* Shared Alignment Modifiers */
}
.about-section-heading .icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: auto;
  border-radius: 5px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}
.about-section-heading .icon span {
  display: inline-block;
  font-size: 1.5rem;
  vertical-align: middle;
}
.about-section-heading .heading {
  font-weight: 800;
  font-size: var(--fs-5xl);
  line-height: 1.2;
  color: var(--theme-black);
  font-family: "PLayfair Display", serif;
  letter-spacing: 1.2px;
}
.about-section-heading .heading.text-white {
  color: #ffffff;
}
.about-section-heading .heading.ff-playfair {
  font-family: "Playfair Display", serif;
}
.about-section-heading .heading.fs-4xl {
  font-size: var(--fs-4xl);
}
.about-section-heading .heading .gold-gradient-text {
  background: linear-gradient(to right, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.4;
}
.about-section-heading .tag {
  color: var(--theme-black);
  font-weight: 600;
  text-transform: uppercase;
  font-size: var(--fs-xs);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.about-section-heading .divider {
  margin-top: 20px;
  width: 45px;
  height: 2px;
  margin-bottom: 20px;
  background-color: var(--text-dark);
}
.about-section-heading .divider.purple {
  background-color: var(--text-dark);
}
.about-section-heading .divider.gold {
  background-color: var(--brand-gold);
}
.about-section-heading .section-label {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px; /* Adjust gap size here (e.g., 10px, 12px, 14px) */
  font-weight: 600;
  font-size: var(--fs-sm);
  line-height: 1.2; /* Slightly relaxed from 1 to prevent text clipping */
  margin-bottom: 20px;
  /* Target SVG explicitly for precise alignment */
}
.about-section-heading .section-label svg {
  display: block;
  margin: 0; /* Clears me-1 from HTML */
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--brand-gold);
}
.about-section-heading .section-label.purple {
  color: var(--brand-purple-deeper);
}
.about-section-heading .section-label.gold {
  color: var(--brand-gold);
}
.about-section-heading .section-label.bordered {
  border: 1px solid var(--brand-gold-light);
  border-radius: 25px;
  text-transform: uppercase;
}
.about-section-heading .section-label.bordered.purple {
  padding: 7px 15px;
}
.about-section-heading .section-label.bordered.gold {
  padding: 7px 12px;
}
.about-section-heading .section-desc {
  color: var(--brand-purple-deeper);
  font-size: var(--fs-sm); /* Fixed missing var() */
  line-height: 1.6;
  margin-bottom: 10px;
}
.about-section-heading .section-desc.min-width-560 {
  width: min(100%, 560px);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.about-section-heading.align-start {
  text-align: left;
}
.about-section-heading.align-start .tag, .about-section-heading.align-start .heading {
  text-align: left;
}
.about-section-heading.align-center {
  text-align: center;
}
.about-section-heading.align-center .tag, .about-section-heading.align-center .heading, .about-section-heading.align-center .section-desc {
  text-align: center;
}
.about-section-heading.align-center .divider {
  margin-inline: auto;
}
.about-section-heading.align-center .section-label {
  display: inline-flex; /* Ensures flex alignment stays intact when centered */
  margin-inline: auto;
}

/* Prevent flash of content before Alpine loads */
[x-cloak] {
  display: none !important;
}

/* Option A: Link Style Customization */
.read-toggle-link {
  color: var(--theme-primary);
  border: 1px solid var(--theme-primary);
  transition: all 0.25s ease-in-out;
  padding: 7px 25px;
}

.read-toggle-link:hover {
  color: var(--theme-white); /* Custom highlight color matching your theme */
  background: var(--theme-primary);
  transition: all 0.25s ease-in-out;
}

/* Icon Rotation Transition */
.transition-icon {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rotate-180 {
  transform: rotate(180deg);
}

/* Option B: Outline Badge Customization */
.read-toggle-badge {
  border-color: #353552;
  color: #353552;
  font-size: 0.85rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.read-toggle-badge:hover {
  background-color: #353552;
  border-color: #353552;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Custom CSS fallback for smooth collapse (If not using Alpine's Collapse Plugin) */
.read-more-wrapper {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-accreditations {
  /* Responsive Configuration overrides */
}
@media (max-width: 991.98px) {
  .about-accreditations .main-title {
    font-size: 2.8rem;
  }
  .about-accreditations .right-column-container {
    margin-top: 60px;
  }
}

.about-accreditations {
  padding: 60px 0;
  /* 3-Column Mini Stats Grid */
  /* Delivery Grid */
  /* Outer main container panel */
}
.about-accreditations .section-icon {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 24px;
  border: 1px solid;
  background: var(--ncvet-bg);
  border-color: rgba(26, 79, 138, 0.2);
}
.about-accreditations .body-desc {
  font-size: var(--fs-base);
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: justify;
}
.about-accreditations .section-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 20px;
}
.about-accreditations .main-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 25px;
}
.about-accreditations .main-title span {
  font-style: italic;
  color: var(--brand-gold-light);
  margin-left: 0;
}
.about-accreditations .main-title span:before {
  content: none;
  width: 0;
  height: 0;
}
.about-accreditations .gold-divider {
  width: 45px;
  height: 2px;
  background-color: var(--brand-gold);
  margin-bottom: 35px;
}
.about-accreditations p {
  font-size: var(--fs-base);
  color: #111111;
  text-align: justify;
}
.about-accreditations p.highlight {
  color: var(--brand-purple-dark);
}
.about-accreditations ul {
  padding-left: 20px;
  margin: 0;
}
.about-accreditations ul li {
  font-size: 0.95rem;
  color: #111111;
}
.about-accreditations ul li::marker {
  color: var(--brand-purple-deeper);
  font-size: 1.5rem;
}
.about-accreditations .mini-stat-card {
  border-radius: 8px;
  padding: 20px 15px;
  text-align: center;
  height: 100%;
  background: #eeeeee;
}
.about-accreditations .mini-stat-card .mini-stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 6px;
  color: var(--theme-gold);
}
.about-accreditations .mini-stat-card .mini-stat-lbl {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0;
  text-align: center;
}
.about-accreditations .delivery-box {
  border-style: solid;
  border-width: 1px;
  border-radius: 12px;
  padding: 30px;
  margin-top: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  color: var(--theme-black);
}
.about-accreditations .delivery-box .delivery-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--theme-black);
}
.about-accreditations .delivery-box .delivery-desc {
  font-size: 0.85rem;
  color: var(--theme-black);
  line-height: 1.6;
  margin: 0;
}
.about-accreditations .delivery-box.light {
  background: rgba(26, 79, 138, 0.0705882353);
  border-color: rgba(26, 79, 138, 0.15);
}
.about-accreditations .delivery-box.light .delivery-title {
  color: #ffffff;
}
.about-accreditations .delivery-box.dark {
  background: rgba(26, 79, 138, 0.0705882353);
  border-color: var(--card-border-dark);
}
.about-accreditations .delivery-box.dark .delivery-title {
  color: #111111;
}
.about-accreditations .feature-panel {
  border-radius: 20px;
  padding: 30px;
  max-width: 960px;
  margin: 20px auto 0;
  background-color: #eeeeee;
}
.about-accreditations .feature-panel .panel-heading {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #0A1629; /* Deep dark blue/black color */
  margin-bottom: 25px;
  letter-spacing: -0.3px;
}
.about-accreditations .feature-panel .feature-badge {
  background-color: #D3D9E2; /* Soft light blue/gray badge filling */
  color: #1E4670; /* Distinct dark slate-blue text color */
  font-weight: 600;
  font-size: 0.75rem;
  padding: 8px 15px;
  border: 1px solid #BCC6D4; /* Subtle darker border surrounding the pill */
  border-radius: 8px;
  display: inline-block;
  transition: all 0.2s ease-in-out;
  user-select: none;
}
.about-accreditations .feature-panel .feature-badge:hover {
  background-color: #C6CED9;
  color: #123152;
}
.about-accreditations-1 {
  background-color: var(--theme-primary);
  /* Right Side Layout - Top Ranked Box */
}
.about-accreditations-1 .main-title {
  color: #ffffff;
}
.about-accreditations-1 .mini-stat-card {
  background: #eeeeee;
}
.about-accreditations-1 .mini-stat-card .mini-stat-num {
  color: #ffffff;
}
.about-accreditations-1 .rank-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: 16px;
  padding: 25px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.about-accreditations-1 .rank-box::before {
  content: "EHL";
  position: absolute;
  bottom: -30px;
  right: -10px;
  font-family: "Playfair Display", serif;
  font-size: 10rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.015);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.about-accreditations-1 .rank-box .rank-number {
  font-family: "Playfair Display", serif;
  font-size: 6rem;
  font-weight: 700;
  color: var(--brand-gold-light);
  line-height: 1;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
.about-accreditations-1 .rank-box .rank-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--theme-black);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.about-accreditations-1 .rank-box .rank-title strong {
  color: #111111;
}
.about-accreditations-1 .rank-box .rank-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
  position: relative;
  z-index: 1;
}
.about-accreditations-1 .feature-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.about-accreditations-1 .feature-card .feature-icon {
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 2px;
}
.about-accreditations-1 .feature-card .feature-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}
.about-accreditations-1 .feature-card .feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.about-accreditations-1 .delivery-box {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}
.about-accreditations-1 .body-desc {
  color: var(--text-muted);
}
.about-accreditations-2 .main-title {
  color: #111111;
}
.about-accreditations-2 .mini-stat-card {
  background: rgba(26, 79, 138, 0.0705882353);
  border-color: rgba(26, 79, 138, 0.15);
}
.about-accreditations-2 .mini-stat-card .mini-stat-num {
  color: #ffffff;
}
.about-accreditations-2 .mini-stat-card .mini-stat-num {
  color: var(--theme-primary);
}
.about-accreditations-2 .feature-panel {
  background: rgba(26, 79, 138, 0.07);
  border-color: rgba(26, 79, 138, 0.15);
}
.about-accreditations-2 .delivery-box {
  background: rgba(26, 79, 138, 0.07);
  border-color: rgba(26, 79, 138, 0.15);
}
.about-accreditations-3 {
  background: var(--theme-primary);
}
.about-accreditations-3 .section-icon {
  border: 1px solid;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.02);
}
.about-accreditations-3 .main-title {
  color: #ffffff;
}
.about-accreditations-3 .mini-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}
.about-accreditations-3 .mini-stat-card .mini-stat-num {
  color: var(--brand-gold);
}
.about-accreditations-3 .mini-stat-card .mini-stat-lbl {
  color: #dddddd;
}
.about-accreditations-3 .feature-panel {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}
.about-accreditations-3 .feature-panel .panel-heading {
  color: #ffffff;
}
.about-accreditations-3 .delivery-box {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}
.about-accreditations-3 .delivery-box .delivery-title {
  color: #ffffff;
}
.about-accreditations-3 .delivery-box .delivery-desc {
  color: #dddddd;
  font-size: var(--fs-base);
}
.about-accreditations-3 .body-desc {
  color: #dddddd;
}
.about-accreditations-3 ul li {
  color: var(--text-muted);
}
.about-accreditations-3 ul li::marker {
  color: var(--text-muted);
}

.parent-body {
  padding: 25px;
  /* Mandate Container Box */
  /* Custom List Styling */
}
.parent-body .blockquote-text {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--theme-black);
  font-weight: 600;
  margin-bottom: 35px;
  border-left: 2px solid var(--brand-gold);
  padding-left: 20px;
}
.parent-body .body-text p {
  color: var(--theme-black);
  font-size: var(--fs-base);
  line-height: 1.65;
  margin-bottom: 24px;
  text-align: justify;
}
.parent-body .stat-card {
  background-color: #f2f2f2;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  padding: 20px 30px;
  margin-bottom: 5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.parent-body .stat-card.bg-color-light {
  background-color: #eeeeee;
}
.parent-body .stat-card:hover {
  transform: translateX(5px);
  transition: all 0.3s ease;
}
.parent-body .stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-gold);
  min-width: 150px;
}
.parent-body .stat-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.parent-body .stat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}
.parent-body .mandate-container {
  background: #f2f2f2;
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 12px;
  padding: 40px;
  margin-top: 25px;
  position: relative;
}
.parent-body .mandate-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 25px;
}
.parent-body .mandate-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.parent-body .mandate-item {
  font-size: var(--fs-base);
  color: var(--theme-black);
  line-height: 1.6;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  position: relative;
  padding-left: 20px;
}
.parent-body .mandate-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.parent-body .mandate-item::before {
  content: "■";
  color: var(--brand-gold);
  font-size: 0.6rem;
  position: absolute;
  left: 0;
  top: 2px;
}

.metrics-section {
  background-color: #353552;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  padding: 50px 0;
}

/* Large numbers styling */
.metric-number {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

/* Metric title labels */
.metric-title {
  font-size: var(--fs-sm);
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

/* Explanatory description texts */
.metric-desc {
  color: var(--text-muted-light);
  font-size: var(--fs-xs);
  line-height: 1.5;
  margin: 0;
}

/* Normal column internal wrapper padding for grid spacing balance */
.metric-card-inner {
  padding: 40px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}
.metric-card-inner:hover {
  background-color: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateY(-3px);
}

/* Responsive custom tweaks */
@media (max-width: 767.98px) {
  .metrics-section {
    padding: 40px 0;
  }
  .metric-number {
    font-size: 3.5rem;
  }
  .highlight-card, .metric-card-inner {
    padding: 20px 10px;
  }
}
.about-accred-partners {
  background-color: #ffffff;
  padding: 50px 0;
  /* List Container */
  /* Row Item */
  /* Mobile Responsiveness */
}
.about-accred-partners.bg-color-light {
  background-color: #f6f6f6;
}
.about-accred-partners .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  justify-content: center;
  align-items: center;
}
.about-accred-partners .stats-grid .stat-card {
  background: #f2f2f2;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  transition: all 0.3s ease;
}
.about-accred-partners .stats-grid .stat-card.bg-color-light {
  background: #eeeeee;
}
.about-accred-partners .stats-grid .stat-card:hover {
  transition: all 0.3s ease;
  transform: translateY(-3px);
}
.about-accred-partners .stats-grid .stat-card .stat-num {
  color: var(--brand-gold);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  font-family: "Playfair Display", serif;
}
.about-accred-partners .stats-grid .stat-card .stat-num span {
  font-size: 1rem;
  font-weight: 500;
}
.about-accred-partners .stats-grid .stat-card .stat-lbl {
  color: var(--theme-black);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0;
}
.about-accred-partners .delivery-box {
  background-color: #f2f2f2;
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  position: relative;
  transition: all 0.3s ease;
}
.about-accred-partners .delivery-box.bg-color-light {
  background-color: #eeeeee;
}
.about-accred-partners .delivery-box:hover {
  transition: all 0.3s ease;
  transform: translateY(-3px);
}
.about-accred-partners .delivery-box h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--theme-black);
  margin-bottom: 25px;
}
.about-accred-partners .delivery-box .delivery-badge {
  display: block;
}
.about-accred-partners .delivery-box .delivery-badge .badge-item {
  display: inline-block;
  border: 1px solid var(--theme-black);
  color: var(--theme-black);
  padding: 8px 16px;
  border-radius: 12px;
  font-weight: 500;
  margin-bottom: 10px;
  margin-right: 10px;
  font-size: var(--fs-xs);
}
.about-accred-partners .delivery-box .delivery-badge .badge-item.badge-white {
  color: #dddddd;
  border: 1px solid #dddddd;
}
.about-accred-partners .delivery-box .delivery-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--theme-black);
}
.about-accred-partners .delivery-box .delivery-desc {
  font-size: 0.85rem;
  color: var(--theme-black);
  line-height: 1.6;
  margin: 0;
}
.about-accred-partners .brand-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  box-sizing: border-box;
}
.about-accred-partners .brand-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border: 1px solid #eef0f3;
  border-radius: 8px;
  padding: 10px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  /* Left Brand Info */
  /* Right Tier Label */
}
.about-accred-partners .brand-item:hover {
  border-color: #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.about-accred-partners .brand-item .brand-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-accred-partners .brand-item .brand-info .brand-title {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
}
.about-accred-partners .brand-item .brand-info .brand-desc {
  font-size: var(--fs-xs);
  color: #94a3b8;
  margin: 0;
  line-height: 1.3;
  font-weight: 400;
}
.about-accred-partners .brand-item .brand-tier {
  font-size: var(--fs-sx);
  font-weight: 700;
  color: #78350f; /* Deep reddish-brown text */
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 576px) {
  .about-accred-partners .brand-item {
    padding: 16px;
  }
  .about-accred-partners .brand-item .brand-info .brand-title {
    font-size: 1rem;
  }
  .about-accred-partners .brand-item .brand-info .brand-desc {
    font-size: 0.8rem;
  }
  .about-accred-partners .brand-item .brand-tier {
    font-size: 0.7rem;
  }
}
.about-accred-partners .description p {
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--theme-black);
  margin-bottom: 10px;
  text-align: justify;
}
.about-accred-partners .description p.text-white {
  color: #dddddd;
}
.about-accred-partners .description ul {
  padding-left: 15px;
}
.about-accred-partners .description ul li {
  font-size: var(--fs-base);
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #e2e8f0;
}
.about-accred-partners .description ul li:last-child {
  border-bottom: none;
}
.about-accred-partners .description.description-1 p {
  color: #4a5568;
}
.about-accred-partners .description.description-2 p {
  color: #dddddd;
}
.about-accred-partners .rank-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: 16px;
  padding: 25px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.about-accred-partners .rank-box:hover {
  transition: all 0.3s ease;
  transform: translateY(-3px);
}
.about-accred-partners .rank-box:before {
  content: "EHL";
  position: absolute;
  bottom: -30px;
  right: -10px;
  font-family: "Playfair Display", serif;
  font-size: 10rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.015);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.about-accred-partners .rank-box .rank-number {
  font-family: "Playfair Display", serif;
  font-size: 6rem;
  font-weight: 700;
  color: var(--brand-gold);
  line-height: 1;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
.about-accred-partners .rank-box .rank-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--theme-black);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.about-accred-partners .rank-box .rank-title strong {
  color: #111111;
}
.about-accred-partners .rank-box .rank-subtitle {
  font-size: var(--fs-sm);
  color: var(--theme-muted);
  margin: 0;
  position: relative;
  z-index: 1;
}
.about-accred-partners .feature-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
}
.about-accred-partners .feature-card.bg-color-light {
  background: #eeeeee;
}
.about-accred-partners .feature-card:hover {
  transition: all 0.3s ease;
  transform: translateY(-3px);
}
.about-accred-partners .feature-card .feature-icon {
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 2px;
}
.about-accred-partners .feature-card .feature-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--theme-black);
  margin-bottom: 4px;
}
.about-accred-partners .feature-card .feature-desc {
  font-size: 0.85rem;
  color: var(--theme-black);
  margin: 0;
  line-height: 1.5;
}

.glass-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-secondary) 100%);
}
.glass-card.card-hover {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}
.glass-card.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.glass-card .stat-number {
  color: var(--brand-gold-light);
  font-family: "Playfair Display", sans-serif;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: var(--fs-6xl);
}

/*# sourceMappingURL=about.css.map */
