/* ==========================================================================
   Content Pages Stylesheet
   Dr Sultan Linjawi — drsultanlinjawi.com
   ========================================================================== */

/* --- type-2-diabetes-information.html --- */

/* ==========================================
   DIABETES INFO PAGE STYLES
   ========================================== */

.sl-info {
  font-family: 'Source Sans 3', -apple-system, sans-serif;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.sl-info-hero {
  background: linear-gradient(165deg, #052d44 0%, #074a73 50%, #0a5c8f 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.sl-info-hero::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");
  pointer-events: none;
}

.sl-info-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.sl-info-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.sl-info-hero-badge svg {
  width: 16px;
  height: 16px;
  color: #c9a962;
}

.sl-info-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 20px 0;
}

.sl-info-hero-title em {
  font-style: italic;
  color: #c9a962;
}

.sl-info-hero-subtitle {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 32px;
}

.sl-info-hero-author {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 60px;
  padding: 8px 24px 8px 8px;
}

.sl-info-hero-author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.sl-info-hero-author-text {
  text-align: left;
}

.sl-info-hero-author-name {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.sl-info-hero-author-title {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   TABLE OF CONTENTS
   ========================================== */
.sl-info-toc {
  background: #ffffff;
  padding: 60px 0;
  border-bottom: 1px solid #e8f4fa;
}

.sl-info-toc-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.sl-info-toc-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  color: #052d44;
  margin: 0 0 24px 0;
  text-align: center;
}

.sl-info-toc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sl-info-toc-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #f8fafc;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.sl-info-toc-link:hover {
  background: #e8f4fa;
  border-color: #0a5c8f;
  transform: translateY(-2px);
}

.sl-info-toc-link-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, #0a5c8f 0%, #074a73 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sl-info-toc-link-icon svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
}

.sl-info-toc-link-text {
  font-size: 15px;
  font-weight: 600;
  color: #052d44;
}

/* ==========================================
   MAIN CONTENT
   ========================================== */
.sl-info-content {
  background: #ffffff;
  padding: 80px 0;
}

.sl-info-content-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.sl-info-section {
  margin-bottom: 64px;
  scroll-margin-top: 100px;
}

.sl-info-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e8f4fa;
}

.sl-info-section-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, #0a5c8f 0%, #074a73 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sl-info-section-icon svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.sl-info-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  color: #052d44;
  margin: 0;
}

.sl-info-text {
  font-size: 17px;
  line-height: 1.8;
  color: #4a5e6a;
  margin-bottom: 20px;
}

.sl-info-text:last-child {
  margin-bottom: 0;
}

.sl-info-text strong {
  color: #052d44;
  font-weight: 600;
}

/* Key Points Box */
.sl-info-keypoints {
  background: linear-gradient(135deg, #e8f4fa 0%, #d8ecf8 100%);
  border-radius: 16px;
  padding: 28px;
  margin: 28px 0;
}

.sl-info-keypoints-title {
  font-size: 16px;
  font-weight: 700;
  color: #052d44;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sl-info-keypoints-title svg {
  width: 20px;
  height: 20px;
  color: #0a5c8f;
}

.sl-info-keypoints-list {
  list-style: none;
}

.sl-info-keypoints-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #052d44;
  line-height: 1.5;
}

.sl-info-keypoints-item:last-child {
  margin-bottom: 0;
}

.sl-info-keypoints-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: #0a5c8f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.sl-info-keypoints-check svg {
  width: 12px;
  height: 12px;
  color: #ffffff;
}

/* Warning Box */
.sl-info-warning {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-left: 4px solid #e53e3e;
  border-radius: 0 12px 12px 0;
  padding: 24px;
  margin: 28px 0;
}

.sl-info-warning-title {
  font-size: 16px;
  font-weight: 700;
  color: #c53030;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sl-info-warning-title svg {
  width: 20px;
  height: 20px;
}

.sl-info-warning-text {
  font-size: 15px;
  line-height: 1.6;
  color: #742a2a;
}

/* Good News Box */
.sl-info-goodnews {
  background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
  border-left: 4px solid #38a169;
  border-radius: 0 12px 12px 0;
  padding: 24px;
  margin: 28px 0;
}

.sl-info-goodnews-title {
  font-size: 16px;
  font-weight: 700;
  color: #276749;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sl-info-goodnews-title svg {
  width: 20px;
  height: 20px;
}

.sl-info-goodnews-text {
  font-size: 15px;
  line-height: 1.6;
  color: #22543d;
}

/* Stats Grid */
.sl-info-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0;
}

.sl-info-stat {
  background: #f8fafc;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  border: 1px solid #e8f4fa;
}

.sl-info-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  color: #0a5c8f;
  margin-bottom: 4px;
}

.sl-info-stat-label {
  font-size: 14px;
  color: #5a7a8a;
}

/* ==========================================
   MHE RESOURCE LINKS
   ========================================== */
.sl-info-resources {
  background: #f8fafc;
  border-radius: 16px;
  padding: 32px;
  margin: 32px 0;
}

.sl-info-resources-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: #052d44;
  margin-bottom: 20px;
}

.sl-info-resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.sl-info-resource-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid #e8f4fa;
  transition: all 0.3s ease;
}

.sl-info-resource-link:hover {
  border-color: #c9a962;
  box-shadow: 0 4px 12px rgba(201, 169, 98, 0.15);
  transform: translateY(-2px);
}

.sl-info-resource-link svg {
  width: 18px;
  height: 18px;
  color: #0a5c8f;
  flex-shrink: 0;
}

.sl-info-resource-link span {
  font-size: 15px;
  font-weight: 500;
  color: #052d44;
}

.sl-info-resource-link .arrow {
  margin-left: auto;
  color: #c9a962;
}

/* ==========================================
   WEBINAR CTA
   ========================================== */
.sl-info-webinar-cta {
  background: linear-gradient(135deg, #074a73 0%, #0a5c8f 100%);
  border-radius: 20px;
  padding: 48px;
  margin: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sl-info-webinar-cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.sl-info-webinar-badge {
  display: inline-block;
  background: #c9a962;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sl-info-webinar-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.sl-info-webinar-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.sl-info-webinar-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #c9a962 0%, #b8954f 100%);
  color: #052d44;
  padding: 18px 36px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.3);
  position: relative;
  z-index: 1;
}

.sl-info-webinar-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201, 169, 98, 0.4);
}

.sl-info-webinar-btn svg {
  width: 20px;
  height: 20px;
}

/* ==========================================
   APPROACH CARDS
   ========================================== */
.sl-info-approach {
  background: #f8fafc;
  padding: 80px 0;
}

.sl-info-approach-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.sl-info-approach-header {
  text-align: center;
  margin-bottom: 48px;
}

.sl-info-approach-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 500;
  color: #052d44;
  margin: 0 0 16px 0;
}

.sl-info-approach-subtitle {
  font-size: 18px;
  color: #5a7a8a;
  max-width: 600px;
  margin: 0 auto;
}

.sl-info-approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sl-info-approach-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(5, 45, 68, 0.06);
  border: 1px solid #e8f4fa;
  transition: all 0.3s ease;
}

.sl-info-approach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(5, 45, 68, 0.12);
  border-color: #c9a962;
}

.sl-info-approach-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #e8f4fa 0%, #d8ecf8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sl-info-approach-icon svg {
  width: 28px;
  height: 28px;
  color: #0a5c8f;
}

.sl-info-approach-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #052d44;
  margin-bottom: 10px;
}

.sl-info-approach-card-text {
  font-size: 15px;
  line-height: 1.6;
  color: #5a7a8a;
}

/* ==========================================
   BOOKING CTA
   ========================================== */
.sl-info-booking {
  background: #ffffff;
  padding: 80px 0;
}

.sl-info-booking-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.sl-info-booking-box {
  background: linear-gradient(135deg, #0a5c8f 0%, #074a73 100%);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
}

.sl-info-booking-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.sl-info-booking-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.sl-info-booking-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.sl-info-booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #c9a962 0%, #b8954f 100%);
  color: #052d44;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(201, 169, 98, 0.3);
}

.sl-info-booking-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 169, 98, 0.4);
}

.sl-info-booking-btn svg {
  width: 18px;
  height: 18px;
}

.sl-info-booking-btn--secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.sl-info-booking-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
}

.sl-info-booking-locations {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.sl-info-booking-locations strong {
  color: #ffffff;
}

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */
@media (max-width: 768px) {
  .sl-info-hero {
    padding: 60px 0 80px;
  }

  .sl-info-toc-grid {
    grid-template-columns: 1fr;
  }

  .sl-info-stats {
    grid-template-columns: 1fr;
  }

  .sl-info-resources-grid {
    grid-template-columns: 1fr;
  }

  .sl-info-approach-grid {
    grid-template-columns: 1fr;
  }

  .sl-info-webinar-cta {
    padding: 32px 24px;
  }

  .sl-info-booking-buttons {
    flex-direction: column;
    align-items: center;
  }

  .sl-info-booking-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}


/* --- type-1-diabetes-information.html --- */

/* ==========================================
   DIABETES INFO PAGE STYLES
   ========================================== */

.sl-info {
  font-family: 'Source Sans 3', -apple-system, sans-serif;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.sl-info-hero {
  background: linear-gradient(165deg, #052d44 0%, #074a73 50%, #0a5c8f 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.sl-info-hero::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");
  pointer-events: none;
}

.sl-info-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.sl-info-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.sl-info-hero-badge svg {
  width: 16px;
  height: 16px;
  color: #c9a962;
}

.sl-info-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 20px 0;
}

.sl-info-hero-title em {
  font-style: italic;
  color: #c9a962;
}

.sl-info-hero-subtitle {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 32px;
}

.sl-info-hero-author {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 60px;
  padding: 8px 24px 8px 8px;
}

.sl-info-hero-author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.sl-info-hero-author-text {
  text-align: left;
}

.sl-info-hero-author-name {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.sl-info-hero-author-title {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   TABLE OF CONTENTS
   ========================================== */
.sl-info-toc {
  background: #ffffff;
  padding: 60px 0;
  border-bottom: 1px solid #e8f4fa;
}

.sl-info-toc-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.sl-info-toc-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  color: #052d44;
  margin: 0 0 24px 0;
  text-align: center;
}

.sl-info-toc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sl-info-toc-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #f8fafc;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.sl-info-toc-link:hover {
  background: #e8f4fa;
  border-color: #0a5c8f;
  transform: translateY(-2px);
}

.sl-info-toc-link-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, #0a5c8f 0%, #074a73 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sl-info-toc-link-icon svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
}

.sl-info-toc-link-text {
  font-size: 15px;
  font-weight: 600;
  color: #052d44;
}

/* ==========================================
   MAIN CONTENT
   ========================================== */
.sl-info-content {
  background: #ffffff;
  padding: 80px 0;
}

.sl-info-content-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.sl-info-section {
  margin-bottom: 64px;
  scroll-margin-top: 100px;
}

.sl-info-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e8f4fa;
}

.sl-info-section-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, #0a5c8f 0%, #074a73 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sl-info-section-icon svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.sl-info-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  color: #052d44;
  margin: 0;
}

.sl-info-text {
  font-size: 17px;
  line-height: 1.8;
  color: #4a5e6a;
  margin-bottom: 20px;
}

.sl-info-text:last-child {
  margin-bottom: 0;
}

.sl-info-text strong {
  color: #052d44;
  font-weight: 600;
}

/* Key Points Box */
.sl-info-keypoints {
  background: linear-gradient(135deg, #e8f4fa 0%, #d8ecf8 100%);
  border-radius: 16px;
  padding: 28px;
  margin: 28px 0;
}

.sl-info-keypoints-title {
  font-size: 16px;
  font-weight: 700;
  color: #052d44;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sl-info-keypoints-title svg {
  width: 20px;
  height: 20px;
  color: #0a5c8f;
}

.sl-info-keypoints-list {
  list-style: none;
}

.sl-info-keypoints-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #052d44;
  line-height: 1.5;
}

.sl-info-keypoints-item:last-child {
  margin-bottom: 0;
}

.sl-info-keypoints-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: #0a5c8f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.sl-info-keypoints-check svg {
  width: 12px;
  height: 12px;
  color: #ffffff;
}

/* Warning Box */
.sl-info-warning {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-left: 4px solid #e53e3e;
  border-radius: 0 12px 12px 0;
  padding: 24px;
  margin: 28px 0;
}

.sl-info-warning-title {
  font-size: 16px;
  font-weight: 700;
  color: #c53030;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sl-info-warning-title svg {
  width: 20px;
  height: 20px;
}

.sl-info-warning-text {
  font-size: 15px;
  line-height: 1.6;
  color: #742a2a;
}

/* Stats Grid */
.sl-info-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0;
}

.sl-info-stat {
  background: #f8fafc;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  border: 1px solid #e8f4fa;
}

.sl-info-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  color: #0a5c8f;
  margin-bottom: 4px;
}

.sl-info-stat-label {
  font-size: 14px;
  color: #5a7a8a;
}

/* ==========================================
   MHE RESOURCE LINKS
   ========================================== */
.sl-info-resources {
  background: #f8fafc;
  border-radius: 16px;
  padding: 32px;
  margin: 32px 0;
}

.sl-info-resources-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: #052d44;
  margin-bottom: 20px;
}

.sl-info-resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.sl-info-resource-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid #e8f4fa;
  transition: all 0.3s ease;
}

.sl-info-resource-link:hover {
  border-color: #c9a962;
  box-shadow: 0 4px 12px rgba(201, 169, 98, 0.15);
  transform: translateY(-2px);
}

.sl-info-resource-link svg {
  width: 18px;
  height: 18px;
  color: #0a5c8f;
  flex-shrink: 0;
}

.sl-info-resource-link span {
  font-size: 15px;
  font-weight: 500;
  color: #052d44;
}

.sl-info-resource-link .arrow {
  margin-left: auto;
  color: #c9a962;
}

/* ==========================================
   WEBINAR CTA
   ========================================== */
.sl-info-webinar-cta {
  background: linear-gradient(135deg, #074a73 0%, #0a5c8f 100%);
  border-radius: 20px;
  padding: 48px;
  margin: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sl-info-webinar-cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.sl-info-webinar-badge {
  display: inline-block;
  background: #c9a962;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sl-info-webinar-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.sl-info-webinar-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.sl-info-webinar-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #c9a962 0%, #b8954f 100%);
  color: #052d44;
  padding: 18px 36px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.3);
  position: relative;
  z-index: 1;
}

.sl-info-webinar-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201, 169, 98, 0.4);
}

.sl-info-webinar-btn svg {
  width: 20px;
  height: 20px;
}

/* ==========================================
   APPROACH CARDS
   ========================================== */
.sl-info-approach {
  background: #f8fafc;
  padding: 80px 0;
}

.sl-info-approach-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.sl-info-approach-header {
  text-align: center;
  margin-bottom: 48px;
}

.sl-info-approach-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 500;
  color: #052d44;
  margin: 0 0 16px 0;
}

.sl-info-approach-subtitle {
  font-size: 18px;
  color: #5a7a8a;
  max-width: 600px;
  margin: 0 auto;
}

.sl-info-approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sl-info-approach-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(5, 45, 68, 0.06);
  border: 1px solid #e8f4fa;
  transition: all 0.3s ease;
}

.sl-info-approach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(5, 45, 68, 0.12);
  border-color: #c9a962;
}

.sl-info-approach-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #e8f4fa 0%, #d8ecf8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sl-info-approach-icon svg {
  width: 28px;
  height: 28px;
  color: #0a5c8f;
}

.sl-info-approach-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #052d44;
  margin-bottom: 10px;
}

.sl-info-approach-card-text {
  font-size: 15px;
  line-height: 1.6;
  color: #5a7a8a;
}

/* ==========================================
   BOOKING CTA
   ========================================== */
.sl-info-booking {
  background: #ffffff;
  padding: 80px 0;
}

.sl-info-booking-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.sl-info-booking-box {
  background: linear-gradient(135deg, #0a5c8f 0%, #074a73 100%);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
}

.sl-info-booking-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.sl-info-booking-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.sl-info-booking-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.sl-info-booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #c9a962 0%, #b8954f 100%);
  color: #052d44;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(201, 169, 98, 0.3);
}

.sl-info-booking-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 169, 98, 0.4);
}

.sl-info-booking-btn svg {
  width: 18px;
  height: 18px;
}

.sl-info-booking-btn--secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.sl-info-booking-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
}

.sl-info-booking-locations {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.sl-info-booking-locations strong {
  color: #ffffff;
}

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */
@media (max-width: 768px) {
  .sl-info-hero {
    padding: 60px 0 80px;
  }

  .sl-info-toc-grid {
    grid-template-columns: 1fr;
  }

  .sl-info-stats {
    grid-template-columns: 1fr;
  }

  .sl-info-resources-grid {
    grid-template-columns: 1fr;
  }

  .sl-info-approach-grid {
    grid-template-columns: 1fr;
  }

  .sl-info-webinar-cta {
    padding: 32px 24px;
  }

  .sl-info-booking-buttons {
    flex-direction: column;
    align-items: center;
  }

  .sl-info-booking-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}


/* --- prediabetes-information.html --- */

/* ==========================================
   DIABETES INFO PAGE STYLES
   ========================================== */

.sl-info {
  font-family: 'Source Sans 3', -apple-system, sans-serif;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.sl-info-hero {
  background: linear-gradient(165deg, #052d44 0%, #074a73 50%, #0a5c8f 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.sl-info-hero::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");
  pointer-events: none;
}

.sl-info-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.sl-info-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.sl-info-hero-badge svg {
  width: 16px;
  height: 16px;
  color: #c9a962;
}

.sl-info-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 20px 0;
}

.sl-info-hero-title em {
  font-style: italic;
  color: #c9a962;
}

.sl-info-hero-subtitle {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 32px;
}

.sl-info-hero-author {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 60px;
  padding: 8px 24px 8px 8px;
}

.sl-info-hero-author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.sl-info-hero-author-text {
  text-align: left;
}

.sl-info-hero-author-name {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.sl-info-hero-author-title {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   TABLE OF CONTENTS
   ========================================== */
.sl-info-toc {
  background: #ffffff;
  padding: 60px 0;
  border-bottom: 1px solid #e8f4fa;
}

.sl-info-toc-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.sl-info-toc-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  color: #052d44;
  margin: 0 0 24px 0;
  text-align: center;
}

.sl-info-toc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sl-info-toc-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #f8fafc;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.sl-info-toc-link:hover {
  background: #e8f4fa;
  border-color: #0a5c8f;
  transform: translateY(-2px);
}

.sl-info-toc-link-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, #0a5c8f 0%, #074a73 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sl-info-toc-link-icon svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
}

.sl-info-toc-link-text {
  font-size: 15px;
  font-weight: 600;
  color: #052d44;
}

/* ==========================================
   MAIN CONTENT
   ========================================== */
.sl-info-content {
  background: #ffffff;
  padding: 80px 0;
}

.sl-info-content-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.sl-info-section {
  margin-bottom: 64px;
  scroll-margin-top: 100px;
}

.sl-info-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e8f4fa;
}

.sl-info-section-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, #0a5c8f 0%, #074a73 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sl-info-section-icon svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.sl-info-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  color: #052d44;
  margin: 0;
}

.sl-info-text {
  font-size: 17px;
  line-height: 1.8;
  color: #4a5e6a;
  margin-bottom: 20px;
}

.sl-info-text:last-child {
  margin-bottom: 0;
}

.sl-info-text strong {
  color: #052d44;
  font-weight: 600;
}

/* Key Points Box */
.sl-info-keypoints {
  background: linear-gradient(135deg, #e8f4fa 0%, #d8ecf8 100%);
  border-radius: 16px;
  padding: 28px;
  margin: 28px 0;
}

.sl-info-keypoints-title {
  font-size: 16px;
  font-weight: 700;
  color: #052d44;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sl-info-keypoints-title svg {
  width: 20px;
  height: 20px;
  color: #0a5c8f;
}

.sl-info-keypoints-list {
  list-style: none;
}

.sl-info-keypoints-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #052d44;
  line-height: 1.5;
}

.sl-info-keypoints-item:last-child {
  margin-bottom: 0;
}

.sl-info-keypoints-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: #0a5c8f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.sl-info-keypoints-check svg {
  width: 12px;
  height: 12px;
  color: #ffffff;
}

/* Warning Box */
.sl-info-warning {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-left: 4px solid #d97706;
  border-radius: 0 12px 12px 0;
  padding: 24px;
  margin: 28px 0;
}

.sl-info-warning-title {
  font-size: 16px;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sl-info-warning-title svg {
  width: 20px;
  height: 20px;
}

.sl-info-warning-text {
  font-size: 15px;
  line-height: 1.6;
  color: #78350f;
}

/* Good News Box */
.sl-info-goodnews {
  background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
  border-left: 4px solid #38a169;
  border-radius: 0 12px 12px 0;
  padding: 24px;
  margin: 28px 0;
}

.sl-info-goodnews-title {
  font-size: 16px;
  font-weight: 700;
  color: #276749;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sl-info-goodnews-title svg {
  width: 20px;
  height: 20px;
}

.sl-info-goodnews-text {
  font-size: 15px;
  line-height: 1.6;
  color: #22543d;
}

/* Opportunity Box */
.sl-info-opportunity {
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  border-left: 4px solid #6366f1;
  border-radius: 0 12px 12px 0;
  padding: 24px;
  margin: 28px 0;
}

.sl-info-opportunity-title {
  font-size: 16px;
  font-weight: 700;
  color: #3730a3;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sl-info-opportunity-title svg {
  width: 20px;
  height: 20px;
}

.sl-info-opportunity-text {
  font-size: 15px;
  line-height: 1.6;
  color: #312e81;
}

/* Stats Grid */
.sl-info-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0;
}

.sl-info-stat {
  background: #f8fafc;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  border: 1px solid #e8f4fa;
}

.sl-info-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  color: #0a5c8f;
  margin-bottom: 4px;
}

.sl-info-stat-label {
  font-size: 14px;
  color: #5a7a8a;
}

/* Diagnosis Table */
.sl-info-diagnosis-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(5, 45, 68, 0.06);
}

.sl-info-diagnosis-table th,
.sl-info-diagnosis-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid #e8f4fa;
}

.sl-info-diagnosis-table th {
  background: linear-gradient(135deg, #0a5c8f 0%, #074a73 100%);
  color: #ffffff;
  font-weight: 600;
}

.sl-info-diagnosis-table tr:last-child td {
  border-bottom: none;
}

.sl-info-diagnosis-table tr:nth-child(even) td {
  background: #f8fafc;
}

.sl-info-diagnosis-table td {
  color: #052d44;
}

.sl-info-diagnosis-table .highlight {
  background: #fffbeb;
  font-weight: 600;
}

/* ==========================================
   MHE RESOURCE LINKS
   ========================================== */
.sl-info-resources {
  background: #f8fafc;
  border-radius: 16px;
  padding: 32px;
  margin: 32px 0;
}

.sl-info-resources-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: #052d44;
  margin-bottom: 20px;
}

.sl-info-resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.sl-info-resource-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid #e8f4fa;
  transition: all 0.3s ease;
}

.sl-info-resource-link:hover {
  border-color: #c9a962;
  box-shadow: 0 4px 12px rgba(201, 169, 98, 0.15);
  transform: translateY(-2px);
}

.sl-info-resource-link svg {
  width: 18px;
  height: 18px;
  color: #0a5c8f;
  flex-shrink: 0;
}

.sl-info-resource-link span {
  font-size: 15px;
  font-weight: 500;
  color: #052d44;
}

.sl-info-resource-link .arrow {
  margin-left: auto;
  color: #c9a962;
}

/* ==========================================
   WEBINAR CTA
   ========================================== */
.sl-info-webinar-cta {
  background: linear-gradient(135deg, #074a73 0%, #0a5c8f 100%);
  border-radius: 20px;
  padding: 48px;
  margin: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sl-info-webinar-cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.sl-info-webinar-badge {
  display: inline-block;
  background: #c9a962;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sl-info-webinar-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.sl-info-webinar-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.sl-info-webinar-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #c9a962 0%, #b8954f 100%);
  color: #052d44;
  padding: 18px 36px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.3);
  position: relative;
  z-index: 1;
}

.sl-info-webinar-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201, 169, 98, 0.4);
}

.sl-info-webinar-btn svg {
  width: 20px;
  height: 20px;
}

/* ==========================================
   APPROACH CARDS
   ========================================== */
.sl-info-approach {
  background: #f8fafc;
  padding: 80px 0;
}

.sl-info-approach-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.sl-info-approach-header {
  text-align: center;
  margin-bottom: 48px;
}

.sl-info-approach-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 500;
  color: #052d44;
  margin: 0 0 16px 0;
}

.sl-info-approach-subtitle {
  font-size: 18px;
  color: #5a7a8a;
  max-width: 600px;
  margin: 0 auto;
}

.sl-info-approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sl-info-approach-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(5, 45, 68, 0.06);
  border: 1px solid #e8f4fa;
  transition: all 0.3s ease;
}

.sl-info-approach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(5, 45, 68, 0.12);
  border-color: #c9a962;
}

.sl-info-approach-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #e8f4fa 0%, #d8ecf8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sl-info-approach-icon svg {
  width: 28px;
  height: 28px;
  color: #0a5c8f;
}

.sl-info-approach-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #052d44;
  margin-bottom: 10px;
}

.sl-info-approach-card-text {
  font-size: 15px;
  line-height: 1.6;
  color: #5a7a8a;
}

/* ==========================================
   BOOKING CTA
   ========================================== */
.sl-info-booking {
  background: #ffffff;
  padding: 80px 0;
}

.sl-info-booking-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.sl-info-booking-box {
  background: linear-gradient(135deg, #0a5c8f 0%, #074a73 100%);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
}

.sl-info-booking-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.sl-info-booking-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.sl-info-booking-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.sl-info-booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #c9a962 0%, #b8954f 100%);
  color: #052d44;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(201, 169, 98, 0.3);
}

.sl-info-booking-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 169, 98, 0.4);
}

.sl-info-booking-btn svg {
  width: 18px;
  height: 18px;
}

.sl-info-booking-btn--secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.sl-info-booking-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
}

.sl-info-booking-locations {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.sl-info-booking-locations strong {
  color: #ffffff;
}

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */
@media (max-width: 768px) {
  .sl-info-hero {
    padding: 60px 0 80px;
  }

  .sl-info-toc-grid {
    grid-template-columns: 1fr;
  }

  .sl-info-stats {
    grid-template-columns: 1fr;
  }

  .sl-info-resources-grid {
    grid-template-columns: 1fr;
  }

  .sl-info-approach-grid {
    grid-template-columns: 1fr;
  }

  .sl-info-webinar-cta {
    padding: 32px 24px;
  }

  .sl-info-booking-buttons {
    flex-direction: column;
    align-items: center;
  }

  .sl-info-booking-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .sl-info-diagnosis-table {
    font-size: 13px;
  }

  .sl-info-diagnosis-table th,
  .sl-info-diagnosis-table td {
    padding: 12px 14px;
  }
}


/* --- diabetes-driving-medicals.html --- */

/* ==========================================
   DRIVING MEDICALS PAGE STYLES
   ========================================== */

/* ==========================================
   SECTION 1: HERO
   ========================================== */
.sl-dm-hero {
  background: linear-gradient(165deg, #052d44 0%, #074a73 50%, #0a5c8f 100%);
  padding: 80px 0 100px;
  font-family: 'Source Sans 3', -apple-system, sans-serif;
  position: relative;
  overflow: hidden;
}

.sl-dm-hero::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");
  pointer-events: none;
}

.sl-dm-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.sl-dm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 32px;
}

.sl-dm-hero-badge-icon {
  width: 24px;
  height: 24px;
  color: #c9a962;
}

.sl-dm-hero-badge-text {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.sl-dm-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.sl-dm-hero-title em {
  font-style: italic;
  color: #c9a962;
}

.sl-dm-hero-subtitle {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 20px;
}

.sl-dm-hero-empathy {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(201, 169, 98, 0.15);
  border: 1px solid rgba(201, 169, 98, 0.3);
  padding: 16px 28px;
  border-radius: 12px;
  margin: 0 auto 40px;
  max-width: 650px;
}

.sl-dm-hero-empathy-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  color: #c9a962;
}

.sl-dm-hero-empathy-text {
  font-size: 17px;
  color: #ffffff;
  text-align: left;
  line-height: 1.5;
}

.sl-dm-hero-props {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.sl-dm-hero-prop {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sl-dm-hero-prop-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sl-dm-hero-prop-icon svg {
  width: 22px;
  height: 22px;
  color: #c9a962;
}

.sl-dm-hero-prop-text {
  text-align: left;
}

.sl-dm-hero-prop-label {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  display: block;
  margin-bottom: 2px;
}

.sl-dm-hero-prop-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.sl-dm-hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.sl-dm-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #c9a962 0%, #b8954f 100%);
  color: #052d44;
  padding: 20px 36px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.3);
}

.sl-dm-hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201, 169, 98, 0.4);
}

.sl-dm-hero-btn-primary svg {
  width: 22px;
  height: 22px;
}

.sl-dm-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #ffffff;
  padding: 20px 36px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.sl-dm-hero-btn-secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.sl-dm-hero-service-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sl-dm-hero-service-area svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.6);
}

.sl-dm-hero-service-area span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.sl-dm-hero-service-area strong {
  color: #ffffff;
  font-weight: 600;
}

/* ==========================================
   SECTION 2: WHO NEEDS ASSESSMENT
   ========================================== */
.sl-dm-requirements {
  background: #ffffff;
  padding: 100px 0;
  font-family: 'Source Sans 3', -apple-system, sans-serif;
}

.sl-dm-requirements-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.sl-dm-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.sl-dm-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  color: #052d44;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.sl-dm-section-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #5a7a8a;
  max-width: 700px;
  margin: 0 auto;
}

.sl-dm-req-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.sl-dm-req-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 32px;
  border-left: 4px solid #0a5c8f;
  transition: all 0.3s ease;
}

.sl-dm-req-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(5, 45, 68, 0.1);
}

.sl-dm-req-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.sl-dm-req-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, #0a5c8f 0%, #074a73 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sl-dm-req-card-icon svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.sl-dm-req-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #052d44;
}

.sl-dm-req-card-text {
  font-size: 16px;
  line-height: 1.7;
  color: #5a7a8a;
}

.sl-dm-req-card-text strong {
  color: #052d44;
  font-weight: 600;
}

/* ==========================================
   SECTION 3: WHAT'S INCLUDED
   ========================================== */
.sl-dm-included {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 100px 0;
  font-family: 'Source Sans 3', -apple-system, sans-serif;
}

.sl-dm-included-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.sl-dm-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sl-dm-included-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(5, 45, 68, 0.06);
  border: 1px solid #e8f4fa;
  transition: all 0.3s ease;
}

.sl-dm-included-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(5, 45, 68, 0.1);
  border-color: #c9a962;
}

.sl-dm-included-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #e8f4fa 0%, #d8ecf8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sl-dm-included-icon svg {
  width: 28px;
  height: 28px;
  color: #0a5c8f;
}

.sl-dm-included-title {
  font-size: 18px;
  font-weight: 700;
  color: #052d44;
  margin-bottom: 10px;
}

.sl-dm-included-text {
  font-size: 15px;
  line-height: 1.6;
  color: #5a7a8a;
}

/* ==========================================
   SECTION 4: WHAT TO BRING
   ========================================== */
.sl-dm-bring {
  background: #ffffff;
  padding: 100px 0;
  font-family: 'Source Sans 3', -apple-system, sans-serif;
}

.sl-dm-bring-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.sl-dm-bring-box {
  background: linear-gradient(135deg, #e8f4fa 0%, #d8ecf8 100%);
  border-radius: 20px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.sl-dm-bring-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, transparent 100%);
  border-radius: 0 0 0 200px;
}

.sl-dm-bring-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.sl-dm-bring-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  line-height: 1.5;
  color: #052d44;
}

.sl-dm-bring-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: #0a5c8f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.sl-dm-bring-check svg {
  width: 14px;
  height: 14px;
  color: #ffffff;
}

/* ==========================================
   SECTION 5: WHY DR SULTAN
   ========================================== */
.sl-dm-doctor {
  background: linear-gradient(135deg, #074a73 0%, #0a5c8f 100%);
  padding: 100px 0;
  font-family: 'Source Sans 3', -apple-system, sans-serif;
}

.sl-dm-doctor-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
}

.sl-dm-doctor-image {
  width: 220px;
  height: 220px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.sl-dm-doctor-content {
  color: #ffffff;
}

.sl-dm-doctor-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.sl-dm-doctor-text {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.sl-dm-doctor-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sl-dm-doctor-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.sl-dm-doctor-badge svg {
  width: 16px;
  height: 16px;
  color: #c9a962;
}

/* ==========================================
   SECTION 6: LOCATIONS & BOOKING
   ========================================== */
.sl-dm-booking {
  background: #ffffff;
  padding: 100px 0;
  font-family: 'Source Sans 3', -apple-system, sans-serif;
}

.sl-dm-booking-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.sl-dm-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.sl-dm-location-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.sl-dm-location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(5, 45, 68, 0.1);
  border-color: #c9a962;
}

.sl-dm-location-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #0a5c8f 0%, #074a73 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sl-dm-location-icon svg {
  width: 22px;
  height: 22px;
  color: #ffffff;
}

.sl-dm-location-name {
  font-size: 18px;
  font-weight: 700;
  color: #052d44;
  margin-bottom: 6px;
}

.sl-dm-location-address {
  font-size: 14px;
  line-height: 1.6;
  color: #5a7a8a;
}

.sl-dm-booking-cta {
  background: linear-gradient(135deg, #0a5c8f 0%, #074a73 100%);
  border-radius: 20px;
  padding: 48px;
  color: #ffffff;
}

.sl-dm-booking-phone {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 12px 0;
}

.sl-dm-booking-contact {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
}

.sl-dm-booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #c9a962 0%, #b8954f 100%);
  color: #052d44;
  padding: 18px 40px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.3);
}

.sl-dm-booking-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201, 169, 98, 0.4);
}

.sl-dm-booking-btn svg {
  width: 20px;
  height: 20px;
}

.sl-dm-booking-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.sl-dm-booking-btn--email {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.sl-dm-booking-btn--email:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.sl-dm-booking-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */
@media (max-width: 768px) {
  .sl-dm-hero {
    padding: 60px 0 80px;
  }

  .sl-dm-hero-props {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .sl-dm-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .sl-dm-hero-btn-primary,
  .sl-dm-hero-btn-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .sl-dm-hero-empathy {
    flex-direction: column;
    text-align: center;
  }

  .sl-dm-hero-empathy-text {
    text-align: center;
  }

  .sl-dm-req-grid {
    grid-template-columns: 1fr;
  }

  .sl-dm-included-grid {
    grid-template-columns: 1fr;
  }

  .sl-dm-bring-list {
    grid-template-columns: 1fr;
  }

  .sl-dm-doctor-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sl-dm-doctor-image {
    margin: 0 auto;
  }

  .sl-dm-doctor-badges {
    justify-content: center;
  }

  .sl-dm-locations-grid {
    grid-template-columns: 1fr;
  }

  .sl-dm-booking-buttons {
    flex-direction: column;
    align-items: center;
  }

  .sl-dm-booking-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
