/*
 * OracleErpGuide.com Homepage Styles
 * Color Scheme:
 * - Primary: #204F70 (Deep blue)
 * - Secondary: #E2EEFF (Light blue)
 * - Accent: #FA4457 (Red)
 * - Black: #1C1C1E
 * - White: #FFFFFF
 */

/* Font Face */
@font-face {
  font-family: 'OEG-Sans';
  src: url('https://www.oracleerpguide.com/wp-content/uploads/2021/02/OEG-Sans.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'OEG-Sans-Bold';
  src: url('https://www.oracleerpguide.com/wp-content/uploads/2021/02/OEG-Sans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

/* CSS Reset & Base Styles */
.oeg-homepage * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fix SVG alignment globally */
.oeg-homepage svg {
  vertical-align: middle;
  flex-shrink: 0;
}

/* Specific adjustments for different icon sizes */
.oeg-homepage .hero-tab svg {
  transform: translateY(-1.5px);
}

.oeg-homepage .category-tab svg,
.oeg-homepage .book-tab svg {
  transform: translateY(-1px);
}

.oeg-homepage .faq-question svg {
  transform: translateY(-1.5px);
}

.oeg-homepage {
  font-family: 'OEG-Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #1C1C1E;
  line-height: 1.6;
  overflow-x: hidden;
  --cta-font-size: 16px;
  --cta-line-height: 1.2;
  --cta-padding-block: 16px;
  --cta-padding-inline: 28px;
  --cta-min-height: 56px;
  --cta-radius: 10px;
  --cta-gap: 10px;
}

.oeg-homepage section {
  padding: 80px 20px;
}

.oeg-homepage h1,
.oeg-homepage h2,
.oeg-homepage h3,
.oeg-homepage h4 {
  line-height: 1.2;
  margin-bottom: 16px;
}

.oeg-homepage h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 0.3em;
}

.oeg-homepage h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2em;
}

.oeg-homepage h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2em;
}

.oeg-homepage h4 {
  font-size: 18px;
  font-weight: 600;
}

.oeg-homepage strong,
.oeg-homepage b {
  font-weight: 700;
  color: inherit;
}

.oeg-homepage h1 strong,
.oeg-homepage h1 b {
  font-weight: 700;
}

.oeg-homepage h2 strong,
.oeg-homepage h2 b {
  font-weight: 700;
}

.oeg-homepage h3 strong,
.oeg-homepage h3 b {
  font-weight: 700;
}

.oeg-homepage p {
  font-size: 16px;
  line-height: 1.6;
}

/* Buttons */
.oeg-homepage .btn,
.oeg-homepage .btn-primary:not(.btn),
.oeg-homepage .btn-secondary:not(.btn),
.oeg-homepage .btn-accent:not(.btn),
.oeg-homepage .btn-outline:not(.btn) {
  display: inline-flex;
  align-items: center;
  gap: var(--cta-gap);
  padding: var(--cta-padding-block) var(--cta-padding-inline);
  font-size: var(--cta-font-size);
  font-weight: 600;
  font-family: 'OEG-Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  border: 2px solid transparent;
  border-radius: var(--cta-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: var(--cta-line-height) !important;
  height: auto;
  min-height: var(--cta-min-height);
}

.oeg-homepage .btn-primary {
  background: #204F70;
  color: #FFFFFF;
  border-color: #204F70;
}

.oeg-homepage .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(32, 79, 112, 0.3);
}

.oeg-homepage .btn-accent {
  background: #FA4457;
  color: #FFFFFF;
  border-color: #FA4457;
}

.oeg-homepage .btn-accent:hover {
  background: #e83347;
  border-color: #e83347;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(250, 68, 87, 0.3);
}

.oeg-homepage .btn-secondary {
  background: #FFFFFF;
  color: #204F70;
  border-color: #204F70;
}

.oeg-homepage .btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(32, 79, 112, 0.3);
}

.oeg-homepage .btn-outline {
  background: transparent;
  color: #204F70;
  border-color: #204F70;
}

.oeg-homepage .btn-outline:hover {
  background: #204F70;
  color: #FFFFFF;
}

.oeg-homepage .btn-outline-white {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.oeg-homepage .btn-outline-white:hover {
  background: #FFFFFF;
  color: #204F70;
}

/* Standard CTA Button - consistent across all sections */
.oeg-homepage .btn-cta {
  font-family: 'OEG-Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  text-decoration: none;
}

.oeg-homepage .btn svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

/* Section Headers */
.oeg-homepage .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.oeg-homepage .section-header h2 {
  color: #1C1C1E;
  margin-bottom: 16px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.oeg-homepage .section-header p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

/* Hero Section */
.oeg-homepage .hero-section {
  background: #F7F7F7;
  color: #1C1C1E;
  padding: 16px 20px 40px;
  position: relative;
  overflow: hidden;
}

/* ========== DESIGN SWITCHER STYLES - START ========== */
/* Dropdown selector for switching hero background designs */
/* To remove: Delete this entire section between START/END comments */
.oeg-homepage .design-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  background: #FFFFFF;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'OEG-Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  border: 1px solid #E0E0E0;
}

.oeg-homepage .design-switcher label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #204F70;
  margin: 0;
}

.oeg-homepage .design-switcher label svg {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.oeg-homepage .design-switcher select {
  font-family: 'OEG-Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  padding: 8px 12px;
  border: 1px solid #E0E0E0;
  border-radius: 6px;
  background: #F7F7F7;
  color: #1C1C1E;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.oeg-homepage .design-switcher select:hover {
  border-color: #204F70;
  background: #FFFFFF;
}

.oeg-homepage .design-switcher select:focus {
  outline: none;
  border-color: #204F70;
  box-shadow: 0 0 0 3px rgba(32, 79, 112, 0.1);
}

/* ========== DESIGN SWITCHER STYLES - END ========== */

/* ========== HERO BACKGROUND DESIGN OPTIONS - START ========== */
/* Multiple static background design variations for hero section */
/* To remove: Delete this entire section and restore original ::before/::after */

/* DESIGN 1: Original Circles (Default) */
.oeg-homepage .hero-section.hero-bg-circles::before {
  content: '';
  position: absolute;
  top: 50px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(250, 68, 87, 0.25) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 0;
}

.oeg-homepage .hero-section.hero-bg-circles::after {
  content: '';
  position: absolute;
  bottom: 0px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(32, 79, 112, 0.3) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 0;
}

/* DESIGN 2: Grid Pattern */
.oeg-homepage .hero-section.hero-bg-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(0deg, rgba(32, 79, 112, 0.03) 0px, rgba(32, 79, 112, 0.03) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(32, 79, 112, 0.03) 0px, rgba(32, 79, 112, 0.03) 1px, transparent 1px, transparent 40px);
  z-index: 0;
}

.oeg-homepage .hero-section.hero-bg-grid::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(250, 68, 87, 0.08) 0%, transparent 70%);
  z-index: 0;
}

/* DESIGN 3: Diagonal Waves */
.oeg-homepage .hero-section.hero-bg-diagonal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, transparent 0%, transparent 48%, rgba(32, 79, 112, 0.05) 48%, rgba(32, 79, 112, 0.05) 52%, transparent 52%, transparent 100%),
    linear-gradient(135deg, transparent 0%, transparent 18%, rgba(250, 68, 87, 0.04) 18%, rgba(250, 68, 87, 0.04) 22%, transparent 22%, transparent 100%),
    linear-gradient(135deg, transparent 0%, transparent 68%, rgba(226, 238, 255, 0.2) 68%, rgba(226, 238, 255, 0.2) 72%, transparent 72%, transparent 100%);
  background-size: 600px 600px;
  z-index: 0;
}

/* DESIGN 4: Organic Blobs - Multiple bold blobs throughout */
.oeg-homepage .hero-section.hero-bg-blobs {
  background-image:
    radial-gradient(ellipse 550px 450px at 10% 15%, rgba(226, 238, 255, 0.65) 0%, transparent 60%),
    radial-gradient(ellipse 480px 420px at 88% 80%, rgba(250, 68, 87, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 350px 300px at 70% 25%, rgba(32, 79, 112, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 280px 320px at 30% 75%, rgba(226, 238, 255, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 200px 180px at 85% 15%, rgba(250, 68, 87, 0.2) 0%, transparent 70%);
  background-position: 0% 0%;
}

.oeg-homepage .hero-section.hero-bg-blobs::before {
  content: '';
  position: absolute;
  top: 5%;
  left: -10%;
  width: 550px;
  height: 550px;
  background: transparent;
  border-radius: 63% 37% 54% 46% / 42% 60% 40% 58%;
  z-index: 0;
}

.oeg-homepage .hero-section.hero-bg-blobs::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 480px;
  height: 480px;
  background: transparent;
  border-radius: 42% 58% 70% 30% / 45% 50% 50% 55%;
  z-index: 0;
}

/* DESIGN 5: Isometric Cubes */
.oeg-homepage .hero-section.hero-bg-isometric::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(30deg, transparent 73%, rgba(32, 79, 112, 0.04) 73%, rgba(32, 79, 112, 0.04) 75%, transparent 75%),
    linear-gradient(-30deg, transparent 73%, rgba(32, 79, 112, 0.04) 73%, rgba(32, 79, 112, 0.04) 75%, transparent 75%),
    linear-gradient(30deg, transparent 27%, rgba(250, 68, 87, 0.03) 27%, rgba(250, 68, 87, 0.03) 29%, transparent 29%),
    linear-gradient(-30deg, transparent 27%, rgba(250, 68, 87, 0.03) 27%, rgba(250, 68, 87, 0.03) 29%, transparent 29%);
  background-size: 100px 173px;
  z-index: 0;
}

.oeg-homepage .hero-section.hero-bg-isometric::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(226, 238, 255, 0.3) 0%, transparent 60%);
  z-index: 0;
}

/* DESIGN 6: Dot Pattern */
.oeg-homepage .hero-section.hero-bg-dots::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle, rgba(32, 79, 112, 0.12) 2px, transparent 2px),
    radial-gradient(circle, rgba(250, 68, 87, 0.12) 2px, transparent 2px);
  background-size: 50px 50px, 50px 50px;
  background-position: 0 0, 25px 25px;
  z-index: 0;
}

.oeg-homepage .hero-section.hero-bg-dots::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(226, 238, 255, 0.25) 0%, transparent 65%);
  z-index: 0;
}

/* ========== HERO BACKGROUND DESIGN OPTIONS - END ========== */

.oeg-homepage .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Centered Header */
.oeg-homepage .hero-header-centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
  background: transparent;
}

.oeg-homepage .hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E2EEFF;
  color: #204F70;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.oeg-homepage .hero-pill.black-friday-pill,
.ebs-books-page .hero-pill.black-friday-pill {
  background: #ffffff;
  color: #AD8A2D;
  padding: 10px 22px;
  border: 2px solid #D9C29E;
}

.oeg-homepage .hero-pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.oeg-homepage .hero-pill.black-friday-pill .hero-pill-icon i,
.ebs-books-page .hero-pill.black-friday-pill .hero-pill-icon i {
  color: #AD8A2D;
}

.oeg-homepage .hero-pill-icon i {
  width: 18px;
  height: 18px;
  color: #204F70;
}

.oeg-homepage .hero-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: var(--cta-gap);
  border-radius: var(--cta-radius) !important;
  white-space: nowrap;
  padding: var(--cta-padding-block) var(--cta-padding-inline);
  min-height: var(--cta-min-height);
  height: auto;
  line-height: var(--cta-line-height);
}

.oeg-homepage .floating-subscribe-btn {
  border-radius: var(--cta-radius) !important;
  background: #204F70;
  border: 2px solid #E2EEFF !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: var(--cta-gap);
  padding: var(--cta-padding-block) var(--cta-padding-inline);
  min-height: var(--cta-min-height);
  line-height: var(--cta-line-height) !important;
  font-size: var(--cta-font-size);
}

@media (max-width: 768px) {
  #sticky-nav {
    display: none !important;
  }

  /* Center OEG One final CTA buttons on mobile */
  .oeg-one-showcase .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.oeg-homepage .hero-title {
  font-size: 48px;
  margin-bottom: 12px;
  color: #1C1C1E;
  line-height: 1.2;
}

.oeg-homepage .hero-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

/* Benefit Cards Grid */
.oeg-homepage .hero-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.oeg-homepage .hero-benefit-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.oeg-homepage .hero-benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.oeg-homepage .benefit-card-icon {
  width: 48px;
  height: 48px;
  background: #E2EEFF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.oeg-homepage .benefit-card-icon svg {
  width: 24px;
  height: 24px;
  color: #204F70;
  vertical-align: middle;
}

.oeg-homepage .benefit-card-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1C1C1E;
  margin-bottom: 4px;
}

.oeg-homepage .benefit-card-text p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Hero CTA Buttons */
.oeg-homepage .hero-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* Hero Trust Bar */
.oeg-homepage .hero-trust-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 16px 0;
  border-top: 1px solid rgba(224, 224, 224, 0.3);
  border-bottom: 1px solid rgba(224, 224, 224, 0.3);
  margin-bottom: 20px;
  flex-wrap: wrap;
  background: transparent;
}

.oeg-homepage .hero-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.oeg-homepage .hero-trust-item svg {
  width: 24px;
  height: 24px;
  color: #204F70;
  vertical-align: -0.125em;
}

.oeg-homepage .hero-trust-item strong {
  font-size: 24px;
  font-weight: 900;
  color: #204F70;
  margin-bottom: 2px;
}

.oeg-homepage .hero-trust-item span {
  font-size: 12px;
  color: #666;
}

/* Product Explorer Section */
.oeg-homepage .hero-explorer-section {
  max-width: 800px;
  margin: 0 auto;
  background: transparent;
}

.oeg-homepage .explorer-title {
  font-size: 24px;
  font-weight: 700;
  color: #1C1C1E;
  text-align: center;
  margin-bottom: 24px;
}

.oeg-homepage .hero-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.oeg-homepage .hero-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #E2EEFF;
  border: 2px solid #E2EEFF;
  border-radius: 8px;
  color: #1C1C1E;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
  font-weight: 600;
  font-family: 'OEG-Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1;
}

.oeg-homepage .hero-tab:hover {
  background: #E2EEFF;
  border-color: #E2EEFF;
  color: #1C1C1E;
}

.oeg-homepage .hero-tab.active {
  background: #204F70;
  border-color: #204F70;
  color: #FFFFFF;
}

.oeg-homepage .hero-tab svg {
  width: 18px;
  height: 18px;
  vertical-align: -0.125em;
}

.oeg-homepage .hero-tab-content {
  background: transparent;
  border-radius: 0;
  padding: 0;
  min-height: auto;
  display: block;
  max-width: 1000px;
  margin: 0 auto;
}

.oeg-homepage .tab-pane {
  background: #E2EEFF;
  border-radius: 12px;
  padding: 32px;
  display: none;
  flex-direction: column;
}

.oeg-homepage .tab-pane.active {
  display: flex !important;
  flex-direction: column;
  animation: fadeIn 0.3s ease;
}

.oeg-homepage .tab-pane h3 {
  font-size: 20px;
  width: 100%;
  margin-bottom: 0;
  color: #1C1C1E;
}

.oeg-homepage .tab-pane-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.oeg-homepage .tab-pane-content {
  display: flex;
  flex-direction: column;
}

.oeg-homepage .tab-pane-image {
  text-align: center;
}

.oeg-homepage .tab-pane-image img {
  max-width: 100%;
  height: auto;
  max-height: 240px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.oeg-homepage .benefit-list {
  list-style: none;
  margin-bottom: 24px;
}

.oeg-homepage .benefit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #1C1C1E;
}

.oeg-homepage .benefit-list svg {
  width: 20px;
  height: 20px;
  color: #204F70;
  flex-shrink: 0;
  vertical-align: middle;
}

.oeg-homepage .hero-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: var(--cta-gap);
  flex-wrap: nowrap;
  padding: var(--cta-padding-block) var(--cta-padding-inline);
  min-height: var(--cta-min-height);
  height: auto;
  line-height: var(--cta-line-height);
  border-radius: var(--cta-radius) !important;
  text-decoration: none;
}

.oeg-homepage .hero-cta i {
  width: 22px;
  height: 22px;
}

.oeg-homepage .hero-cta span {
  display: inline-block;
  white-space: nowrap;
}

/* Value Proposition Bar */
.oeg-homepage .value-prop-bar {
  display: none;
  background: #E2EEFF;
  padding: 40px 20px;
}

.oeg-homepage .value-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.oeg-homepage .value-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.oeg-homepage .value-item svg {
  width: 48px;
  height: 48px;
  color: #204F70;
  flex-shrink: 0;
  vertical-align: middle;
}

.oeg-homepage .value-text h4 {
  font-size: 20px;
  color: #1C1C1E;
  margin-bottom: 4px;
}

.oeg-homepage .value-text p {
  font-size: 14px;
  color: #666;
}

/* Live Training Banner */
.oeg-homepage .live-training-banner {
  background: #F7F7F7;
  color: #1C1C1E;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #E0E0E0;
}

.oeg-homepage .live-training-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
  pointer-events: none;
}

.oeg-homepage .banner-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.oeg-homepage .banner-header {
  text-align: center;
  margin-bottom: 50px;
}

.oeg-homepage .live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(250, 68, 87, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #FA4457;
}

.oeg-homepage .pulse-dot {
  width: 10px;
  height: 10px;
  background: #FA4457;
  border-radius: 50%;
  animation: pulse 2s infinite;
  transform: translateY(-2.5px);
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.oeg-homepage .banner-header h2 {
  font-size: 42px;
  color: #1C1C1E;
  margin-bottom: 12px;
}

.oeg-homepage .banner-header p {
  font-size: 18px;
  color: #666;
}

.oeg-homepage .training-sessions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.oeg-homepage .training-card {
  background: #FFFFFF;
  color: #1C1C1E;
  padding: 20px;
  border-radius: 12px;
  position: relative;
  border: 1px solid rgba(32, 79, 112, 0.12);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
}

.oeg-homepage .training-card:hover {
  background: #FFFFFF;
  border-color: #204F70;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.oeg-homepage .training-card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.oeg-homepage .training-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.oeg-homepage .training-card-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #204F70;
  flex: 1 1 220px;
}

.oeg-homepage .training-card-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.oeg-homepage .training-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.oeg-homepage .training-card-footer .training-meta-box {
  flex: 1 1 100%;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(32, 79, 112, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 1px 3px rgba(32, 79, 112, 0.06);
  border-radius: 12px;
  padding: 14px 18px;
  text-align: left;
}

.oeg-homepage .training-card-footer .training-meta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  text-align: left;
}

.oeg-homepage .training-card .training-badge {
  margin-bottom: 0;
}

.oeg-homepage .training-badge {
  position: static;
  background: #E2EEFF;
  color: #204F70;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  display: inline-block;
  width: fit-content;
  margin-bottom: 12px;
  margin-right: 8px;
}

.oeg-homepage .training-badge.ongoing {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
}

.oeg-homepage .training-badge.upcoming {
  background: rgba(33, 150, 243, 0.1);
  color: #2196F3;
}

.oeg-homepage .training-badge.live {
  background: #204F70;
  color: #FFFFFF;
}

.oeg-homepage .training-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  margin-top: 0;
  color: #1C1C1E;
  font-weight: 600;
}

.oeg-homepage .training-card h3.training-card-title {
  font-size: 20px;
  margin: 0;
  color: #204F70;
  font-weight: 600;
}

.oeg-homepage .training-card-subtitle {
  font-size: 13px;
  color: #204F70;
  font-weight: 600;
  margin: 8px 0 0;
}

.oeg-homepage .training-meta {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  font-size: 15px;
  color: #204F70;
}

.oeg-homepage .training-meta .meta-entry {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.oeg-homepage .training-meta .meta-entry svg {
  width: 16px;
  height: 16px;
  color: #204F70;
  flex-shrink: 0;
  transform: translateY(-2px);
}

.oeg-homepage .training-card .btn {
  font-family: 'OEG-Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.1 !important;
}

.oeg-homepage .training-card-btn {
  background: #204F70;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--cta-gap);
  padding: var(--cta-padding-block) var(--cta-padding-inline);
  border-radius: var(--cta-radius);
  font-size: var(--cta-font-size);
  line-height: var(--cta-line-height);
  min-width: 220px;
  min-height: var(--cta-min-height);
  height: auto;
  flex: 0 0 auto;
  align-self: center;
}

.oeg-homepage .training-card-btn span {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.24);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.2;
}

.oeg-homepage .training-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.oeg-homepage .banner-cta {
  text-align: center;
}

/* Full Calendar Styles */
.oeg-homepage .calendar-wrapper {
  margin-top: 48px;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid #E0E0E0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.4s ease;
}

.oeg-homepage .calendar-wrapper.show {
  max-height: 1200px;
  opacity: 1;
  margin-bottom: 32px;
}

.oeg-homepage .calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #E0E0E0;
}

.oeg-homepage .calendar-month-year {
  font-size: 24px;
  font-weight: 700;
  color: #1C1C1E;
  margin: 0;
}

.oeg-homepage .calendar-nav-btn {
  background: #F7F7F7;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #204F70;
}

.oeg-homepage .calendar-nav-btn:hover {
  background: #204F70;
  color: #FFFFFF;
  border-color: #204F70;
}

.oeg-homepage .calendar-nav-btn svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.oeg-homepage .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
}

.oeg-homepage .calendar-day-header {
  text-align: center;
  padding: 16px 8px;
  font-size: 14px;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #F7F7F7;
  border: 1px solid #E0E0E0;
}

.oeg-homepage #calendarDates {
  display: contents;
}

.oeg-homepage .calendar-date-cell {
  min-height: 120px;
  padding: 8px;
  border: 1px solid #E0E0E0;
  background: #FFFFFF;
  position: relative;
  transition: all 0.2s ease;
}

.oeg-homepage .calendar-date-cell:hover {
  background: #F7F7F7;
}

.oeg-homepage .calendar-date-cell.other-month {
  background: #FAFAFA;
  opacity: 0.5;
}

.oeg-homepage .calendar-date-cell.today {
  background: #E2EEFF;
  border-color: #204F70;
}

.oeg-homepage .calendar-date-number {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1C1C1E;
  margin-bottom: 8px;
  text-align: right;
}

.oeg-homepage .calendar-date-cell.today .calendar-date-number {
  color: #204F70;
  background: #204F70;
  color: #FFFFFF;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-bottom: 8px;
}

.oeg-homepage .calendar-events {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.oeg-homepage .calendar-event {
  background: #D9F6FF;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #1C1C1E;
  cursor: pointer;
  transition: all 0.2s ease;
  border-left: 3px solid #204F70;
  line-height: 1.3;
}

.oeg-homepage .calendar-event:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.oeg-homepage .calendar-event.event-blue {
  background: #D9F6FF;
  border-left-color: #2196F3;
}

.oeg-homepage .calendar-event.event-green {
  background: #F3FADC;
  border-left-color: #4CAF50;
}

.oeg-homepage .calendar-event.event-orange {
  background: #FFEED9;
  border-left-color: #FF9800;
}

.oeg-homepage .calendar-event-time {
  display: block;
  font-size: 10px;
  color: #666;
  margin-top: 2px;
}

/* Session Detail Modal */
.oeg-homepage .session-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.oeg-homepage .session-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.oeg-homepage .session-modal-content {
  position: relative;
  background: #FFFFFF;
  border-radius: 12px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
  z-index: 1;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.oeg-homepage .session-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F7F7F7;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
}

.oeg-homepage .session-modal-close:hover {
  background: #204F70;
  color: #FFFFFF;
  border-color: #204F70;
}

.oeg-homepage .session-modal-close svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.oeg-homepage .modal-session-header {
  margin-bottom: 24px;
}

.oeg-homepage .modal-session-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.oeg-homepage .modal-session-title {
  font-size: 28px;
  font-weight: 700;
  color: #1C1C1E;
  margin-bottom: 16px;
  line-height: 1.2;
}

.oeg-homepage .modal-session-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
}

.oeg-homepage .modal-session-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: #F7F7F7;
  border-radius: 8px;
  margin-bottom: 24px;
}

.oeg-homepage .modal-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #1C1C1E;
}

.oeg-homepage .modal-meta-item svg {
  width: 18px;
  height: 18px;
  color: #204F70;
  flex-shrink: 0;
  vertical-align: middle;
}

.oeg-homepage .modal-learning-section {
  margin-top: 24px;
}

.oeg-homepage .modal-learning-title {
  font-size: 18px;
  font-weight: 700;
  color: #1C1C1E;
  margin-bottom: 16px;
}

.oeg-homepage .modal-learning-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.oeg-homepage .modal-learning-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.oeg-homepage .modal-learning-list svg {
  width: 16px;
  height: 16px;
  color: #4CAF50;
  flex-shrink: 0;
  margin-top: 2px;
  vertical-align: middle;
}

.oeg-homepage .modal-cta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #E0E0E0;
}

.oeg-homepage .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.oeg-homepage .link-arrow:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.oeg-homepage .link-arrow svg {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

/* Brochure Form Styles */
.oeg-homepage .brochure-form {
  margin-top: 24px;
}

.oeg-homepage .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}

.oeg-homepage .form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.oeg-homepage .form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1C1C1E;
  margin-bottom: 8px;
  width: 100%;
}

.oeg-homepage .required-indicator {
  color: #FA4457;
  font-weight: 700;
}

.oeg-homepage .form-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: 'OEG-Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #1C1C1E;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  transition: all 0.2s ease;
  outline: none;
  box-sizing: border-box;
}

.oeg-homepage .form-input:focus {
  border-color: #204F70;
  box-shadow: 0 0 0 3px rgba(32, 79, 112, 0.1);
}

.oeg-homepage .form-input:hover {
  border-color: #204F70;
}

.oeg-homepage .form-input::placeholder {
  color: #999;
}

.oeg-homepage .form-input.error {
  border-color: #FA4457;
  background: rgba(250, 68, 87, 0.05);
}

.oeg-homepage .form-input.error:focus {
  box-shadow: 0 0 0 3px rgba(250, 68, 87, 0.1);
}

.oeg-homepage .form-error {
  display: block;
  font-size: 13px;
  color: #FA4457;
  margin-top: 6px;
  min-height: 18px;
  line-height: 1.4;
}

.oeg-homepage .phone-input-group {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
}

.oeg-homepage .phone-country-code {
  font-weight: 600;
}

/* Form select styling */
.oeg-homepage select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

.oeg-homepage select.form-input:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23204F70' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

/* Brochure modal compact layout */
.oeg-homepage #brochureModal .session-modal-content {
  padding: 28px 32px 32px;
  max-height: 85vh;
}

.oeg-homepage #brochureModal .modal-session-header {
  margin-bottom: 16px;
}

.oeg-homepage #brochureModal .modal-session-title {
  margin-bottom: 8px;
}

.oeg-homepage #brochureModal .modal-session-description {
  margin-bottom: 12px;
}

.oeg-homepage #brochureModal .brochure-form {
  margin-top: 12px;
}

.oeg-homepage #brochureModal .form-row {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 12px;
}

.oeg-homepage #brochureModal .form-group {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

.oeg-homepage #brochureModal .form-error {
  margin-top: 4px;
  min-height: 14px;
}

.oeg-homepage #brochureModal .phone-input-group {
  gap: 8px;
}

.oeg-homepage #brochureModal .phone-input-group select,
.oeg-homepage #brochureModal .phone-input-group .phone-number {
  width: 100%;
}

.oeg-homepage #brochureModal .modal-cta {
  margin-top: 16px;
  padding-top: 12px;
}

/* Responsive form layout */
@media (max-width: 640px) {
  .oeg-homepage .form-row {
    grid-template-columns: 1fr;
  }

  .oeg-homepage .phone-input-group {
    grid-template-columns: 110px 1fr;
  }

  .oeg-homepage #brochureModal .form-row {
    grid-template-columns: 1fr;
  }
}

/* OEG One Showcase */
.oeg-homepage .oeg-one-showcase {
  background: #F7F7F7;
  border-bottom: 1px solid #E0E0E0;
}

.oeg-homepage .showcase-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.oeg-homepage .showcase-header h2 {
  color: #1C1C1E;
  margin-bottom: 16px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.oeg-homepage .showcase-header p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

.oeg-homepage .showcase-container {
  max-width: 1200px;
  margin: 0 auto;
}

.oeg-homepage .showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.oeg-homepage .showcase-item {
  text-align: center;
  padding: 32px 24px;
  background: #204F70;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.oeg-homepage .showcase-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.oeg-homepage .showcase-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.oeg-homepage .showcase-icon svg {
  width: 32px;
  height: 32px;
  color: #FFFFFF;
  vertical-align: middle;
}

.oeg-homepage .showcase-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.oeg-homepage .showcase-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.oeg-homepage .showcase-pricing {
  max-width: 600px;
  margin: 0 auto;
}

.oeg-homepage .pricing-card {
  background: #FFFFFF;
  border: 3px solid #204F70;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(32, 79, 112, 0.15);
}

.oeg-homepage .pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #FA4457;
  color: #FFFFFF;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
}

.oeg-homepage .pricing-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: 8px;
}

.oeg-homepage .pricing-amount {
  margin-bottom: 8px;
}

.oeg-homepage .amount-large {
  font-size: 56px;
  font-weight: 700;
  color: #204F70;
}

.oeg-homepage .amount-period {
  font-size: 20px;
  color: #666;
}

.oeg-homepage .pricing-alt {
  font-size: 16px;
  color: #666;
  margin-bottom: 32px;
}

.oeg-homepage .pricing-card .best-value-badge {
  top: 0 !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  border-radius: 999px;
  padding: 10px 18px !important;
}

.oeg-homepage .pricing-card .card-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px !important;
  padding-bottom: 28px !important;
  border-bottom: 2px solid #ccd5e0 !important;
  min-height: 180px !important;
}

.oeg-homepage .pricing-card .card-price .regular-price {
  display: block;
  color: #999;
  text-decoration: line-through;
  font-size: 0.95rem;
  margin-top: 6px;
  line-height: 1.4;
}

.oeg-homepage .pricing-card .card-footer a {
  border-radius: 10px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--cta-padding-block) var(--cta-padding-inline);
  min-height: var(--cta-min-height);
  font-size: var(--cta-font-size);
  line-height: var(--cta-line-height);
}

/* Ensure secondary CTAs in pricing use primary border just like hero */
.oeg-homepage .pricing-card .card-footer .btn-secondary {
  border: 2px solid #204F70;
  color: #204F70;
  background: #FFFFFF;
}

.oeg-homepage .pricing-card .card-footer .btn-primary,
.oeg-homepage .pricing-card .card-footer .btn-secondary {
  border-radius: var(--cta-radius) !important;
  gap: var(--cta-gap);
  justify-content: center;
  text-align: center;
}

/* Pricing CTA band buttons */
.oeg-homepage .pricing-cta .btn-primary,
.oeg-homepage .pricing-cta .btn-secondary {
  justify-content: center;
  text-align: center;
}

.oeg-homepage .pricing-cta .btn-secondary {
  border: 2px solid #204F70;
  color: #204F70;
  background: #FFFFFF;
}

.oeg-homepage .pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.oeg-homepage .pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
}

.oeg-homepage .pricing-features svg {
  width: 20px;
  height: 20px;
  color: #204F70;
  flex-shrink: 0;
  vertical-align: middle;
}

.oeg-homepage .pricing-note {
  font-size: 14px;
  color: #666;
  margin-top: 16px;
}

/* Courses Section */
.oeg-homepage .courses-section {
  background: #F7F7F7;
  border-bottom: 1px solid #E0E0E0;
}

.oeg-homepage .courses-container {
  max-width: 1200px;
  margin: 0 auto;
}

.oeg-homepage .category-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.oeg-homepage .category-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: #E2EEFF;
  border: 2px solid transparent;
  border-radius: 8px;
  color: #1C1C1E;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 600;
  font-family: 'OEG-Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1;
}

.oeg-homepage .category-tab:hover {
  background: #E2EEFF;
  color: #1C1C1E;
}

.oeg-homepage .category-tab.active {
  background: #204F70;
  color: #FFFFFF;
  border-color: #204F70;
}

.oeg-homepage .category-tab svg {
  width: 20px;
  height: 20px;
  vertical-align: -0.125em;
}

.oeg-homepage .new-badge {
  background: #FA4457;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.oeg-homepage .category-pane {
  display: none;
  background: #E2EEFF;
  padding: 32px;
  border-radius: 12px;
}

.oeg-homepage .category-pane.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.oeg-homepage .course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 0;
}

.oeg-homepage .course-card {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.oeg-homepage .course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #E2EEFF;
}

.oeg-homepage .course-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #E2EEFF;
  color: #204F70;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.oeg-homepage .course-icon {
  width: 48px;
  height: 48px;
  background: #204F70;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px auto 16px;
}

.oeg-homepage .course-icon svg {
  width: 24px;
  height: 24px;
  color: #FFFFFF;
  vertical-align: middle;
}

.oeg-homepage .course-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1C1C1E;
}

/* Fixes: keep meta info and CTA on one row on desktop and ensure lucide icons visible */
@media (min-width: 900px) {
  .oeg-homepage .training-card-footer {
    flex-wrap: nowrap;
    align-items: center;
  }

  .oeg-homepage .training-card-footer .training-meta-box {
    flex: 1 1 auto;
    max-width: calc(100% - 260px);
    /* leave room for CTA */
  }

  .oeg-homepage .training-card-footer .training-meta {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .oeg-homepage .training-card-btn {
    flex: 0 0 auto;
    margin-left: 16px;
    align-self: center;
    width: 330px;
  }
}

/* Make meta entries appear on a single row on wider screens */
@media (min-width: 900px) {
  .oeg-homepage .training-meta .meta-entry {
    width: auto;
  }

  .oeg-homepage .training-meta .meta-text {
    white-space: nowrap;
  }
}

/* Ensure lucide icons (and i[data-lucide]) remain visible after hydration */
.oeg-homepage i[data-lucide],
.oeg-homepage .lucide,
.oeg-homepage svg.lucide {
  display: inline-block !important;
  vertical-align: middle !important;
  /* Allow component-level rules to control color/size — avoid forcing width/height or color globally */
  stroke: currentColor !important;
}

.oeg-homepage .training-meta .meta-text {
  color: #204F70;
}

.oeg-homepage .course-duration {
  font-size: 14px;
  color: #666;
}

/* Learn More link under each course card and course/book names */
.oeg-homepage .learn-more-link {
  display: inline-block;
  color: #204F70;
  font-weight: 600;
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.oeg-homepage .learn-more-link:hover {
  text-decoration: underline !important;
}

.oeg-homepage h3 .learn-more-link,
.oeg-homepage h4 .learn-more-link {
  margin-top: 0;
}

.oeg-homepage .view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #204F70;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.oeg-homepage .view-all-link:hover {
  gap: 12px;
}

.oeg-homepage .view-all-link svg {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

/* Books Section */
.oeg-homepage .books-section {
  background: #F7F7F7;
  border-bottom: 1px solid #E0E0E0;
}

.oeg-homepage .books-container {
  max-width: 1200px;
  margin: 0 auto;
}

.oeg-homepage .book-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.oeg-homepage .book-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: #FFFFFF;
  border: 2px solid transparent;
  border-radius: 8px;
  color: #1C1C1E;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 600;
  font-family: 'OEG-Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1;
}

.oeg-homepage .book-tab:hover {
  background: #E2EEFF;
  color: #204F70;
}

.oeg-homepage .book-tab.active {
  background: #204F70;
  color: #FFFFFF;
  border-color: #204F70;
}

.oeg-homepage .book-tab svg {
  width: 20px;
  height: 20px;
  vertical-align: -0.125em;
}

.oeg-homepage .book-pane {
  display: none;
  animation: fadeIn 0.3s ease;
}

.oeg-homepage .book-pane.active {
  display: block;
}

.oeg-homepage .book-content {
  position: relative;
}

.oeg-homepage .books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.oeg-homepage .book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.oeg-homepage .book-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

/* Two-tone featured book card (top white, bottom primary) */
.oeg-homepage .book-card.two-tone {
  padding: 0;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.oeg-homepage .book-card.two-tone .book-card-bottom {
  background: #204F70;
  color: #FFFFFF;
  padding: 24px 24px 28px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  margin-top: auto;
}

.oeg-homepage .book-card.two-tone .book-card-bottom h3,
.oeg-homepage .book-card.two-tone .book-card-bottom .course-duration,
.oeg-homepage .book-card.two-tone .book-card-bottom .learn-more-link {
  color: #FFFFFF;
}

.oeg-homepage .book-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.oeg-homepage .book-visual {
  text-align: center;
}

.oeg-homepage .book-visual img {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 12px;
}

.oeg-homepage .book-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #1C1C1E;
  margin-top: auto;
}

.oeg-homepage .book-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.oeg-homepage .meta-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #E2EEFF;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: #204F70;
  font-weight: 600;
}

.oeg-homepage .meta-badge svg {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

.oeg-homepage .book-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.oeg-homepage .book-features {
  list-style: none;
  margin-bottom: 24px;
}

.oeg-homepage .book-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #1C1C1E;
}

.oeg-homepage .book-features svg {
  width: 18px;
  height: 18px;
  color: #204F70;
  flex-shrink: 0;
  vertical-align: middle;
}

/* EBS Books Tab Specific Adjustments */
.oeg-homepage #ebs-books .book-card h3 {
  margin-top: auto !important;
}

/* Specific margins for each EBS book card h3 */
.oeg-homepage #ebs-books .book-card:nth-child(1) h3 {
  margin-top: 0px !important;
}

.oeg-homepage #ebs-books .book-card:nth-child(2) h3 {
  margin-top: 27.8125px !important;
  /* 77.8125px - 50px */
}

.oeg-homepage #ebs-books .book-card:nth-child(3) h3 {
  margin-top: 6.2109px !important;
  /* 56.2109px - 50px */
}

.oeg-homepage #ebs-books .book-card:nth-child(4) h3 {
  margin-top: 6.2109px !important;
  /* 56.2109px - 50px */
}

.oeg-homepage #ebs-books .book-card:nth-child(5) h3 {
  margin-top: 6.2109px !important;
  /* 56.2109px - 50px */
}

.oeg-homepage #ebs-books .book-card:nth-child(6) h3 {
  margin-top: 27.8125px !important;
  /* 77.8125px - 50px */
}

/* Remove top margin from first card's book-card-bottom */
.oeg-homepage #ebs-books .book-card:first-child .book-card-bottom {
  margin-top: 0 !important;
}

/* Instances Section */
.oeg-homepage .instances-section {
  background: #F7F7F7;
  border-bottom: 1px solid #E0E0E0;
}

.oeg-homepage .instances-container {
  max-width: 1200px;
  margin: 0 auto;
}

.oeg-homepage .instances-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
}

.oeg-homepage .instance-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 16px;
  position: relative;
  border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.oeg-homepage .instance-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #204F70;
}

.oeg-homepage .instance-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #E2EEFF;
  color: #204F70;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.oeg-homepage .instance-visual {
  margin-bottom: 24px;
  text-align: center;
}

.oeg-homepage .instance-visual img {
  max-width: 100%;
  height: auto;
  max-height: 180px;
}

.oeg-homepage .instance-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1C1C1E;
}

.oeg-homepage .instance-details {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.oeg-homepage .detail-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #1C1C1E;
  font-weight: 500;
}

.oeg-homepage .detail-row:last-child {
  margin-bottom: 0;
}

.oeg-homepage .detail-row svg {
  width: 18px;
  height: 18px;
  color: #204F70;
  flex-shrink: 0;
  vertical-align: middle;
}

.oeg-homepage .instance-description {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.oeg-homepage .instance-features {
  list-style: none;
  margin-bottom: 24px;
}

.oeg-homepage .instance-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #1C1C1E;
}

.oeg-homepage .instance-features svg {
  width: 18px;
  height: 18px;
  color: #204F70;
  flex-shrink: 0;
  vertical-align: middle;
}

.oeg-homepage .instance-card .btn {
  width: 100%;
  justify-content: center;
  font-family: 'OEG-Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
}

/* Certification Section */
.oeg-homepage .certification-section {
  background: #F7F7F7;
  border-bottom: 1px solid #E0E0E0;
}

.oeg-homepage .certification-container {
  max-width: 1200px;
  margin: 0 auto;
}

.oeg-homepage .certification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.oeg-homepage .cert-path-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.oeg-homepage .cert-path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.oeg-homepage .cert-icon {
  width: 64px;
  height: 64px;
  background: #E2EEFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.oeg-homepage .cert-icon svg {
  width: 32px;
  height: 32px;
  color: #204F70;
  vertical-align: middle;
}

.oeg-homepage .cert-path-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #1C1C1E;
}

.oeg-homepage .cert-code {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  font-family: 'Courier New', monospace;
}

.oeg-homepage .cert-progress {
  margin-bottom: 20px;
}

.oeg-homepage .progress-bar {
  width: 100%;
  height: 8px;
  background: #E0E0E0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.oeg-homepage .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #204F70 0%, #2d6b94 100%);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.oeg-homepage .progress-text {
  font-size: 13px;
  color: #666;
}

.oeg-homepage .cert-steps {
  list-style: none;
  margin-bottom: 24px;
}

.oeg-homepage .cert-steps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #1C1C1E;
}

.oeg-homepage .cert-steps svg {
  width: 18px;
  height: 18px;
  color: #204F70;
  flex-shrink: 0;
  margin-top: 2px;
  vertical-align: middle;
}

.oeg-homepage .cert-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.oeg-homepage .stat-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.oeg-homepage .stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #204F70;
  margin-bottom: 8px;
}

.oeg-homepage .stat-label {
  font-size: 16px;
  color: #666;
}

/* Testimonials Section */
.oeg-homepage .testimonials-section {
  background: #F7F7F7;
  border-bottom: 1px solid #E0E0E0;
}

.oeg-homepage .testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
}

.oeg-homepage .testimonials-carousel {
  position: relative;
  padding: 0 60px;
  margin-bottom: 32px;
}

.oeg-homepage .testimonials-track {
  position: relative;
  min-height: 320px;
}

.oeg-homepage .testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.oeg-homepage .testimonial-card.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.oeg-homepage .testimonial-quote {
  margin-bottom: 20px;
}

.oeg-homepage .testimonial-quote svg {
  width: 32px;
  height: 32px;
  color: #204F70;
  opacity: 0.3;
  vertical-align: middle;
}

.oeg-homepage .testimonial-text {
  font-size: 18px;
  line-height: 1.7;
  color: #1C1C1E;
  margin-bottom: 24px;
  font-style: italic;
}

.oeg-homepage .testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.oeg-homepage .author-avatar {
  width: 56px;
  height: 56px;
  background: #204F70;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.oeg-homepage .author-info h4 {
  font-size: 16px;
  color: #1C1C1E;
  margin-bottom: 4px;
}

.oeg-homepage .author-info p {
  font-size: 14px;
  color: #666;
}

.oeg-homepage .testimonial-rating {
  display: flex;
  gap: 4px;
}

.oeg-homepage .testimonial-rating svg {
  width: 18px;
  height: 18px;
  color: #FFD700;
  fill: #FFD700;
  vertical-align: middle;
}

.oeg-homepage .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #204F70;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.oeg-homepage .carousel-btn:hover {
  background: #183d56;
  transform: translateY(-50%) scale(1.1);
}

.oeg-homepage .carousel-btn svg {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.oeg-homepage .carousel-btn.prev {
  left: 0;
}

.oeg-homepage .carousel-btn.next {
  right: 0;
}

.oeg-homepage .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.oeg-homepage .dot {
  width: 12px;
  height: 12px;
  background: #D0D0D0;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.oeg-homepage .dot.active {
  background: #204F70;
  width: 32px;
  border-radius: 6px;
}

/* Comparison Section */
.oeg-homepage .comparison-section {
  background: #F7F7F7;
}

.oeg-homepage .comparison-container {
  max-width: 1000px;
  margin: 0 auto;
}

.oeg-homepage .comparison-table-wrapper {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  margin-bottom: 40px;
  max-width: 900px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-top: 20px;
}

.oeg-homepage .comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.oeg-homepage .comparison-table thead {
  background: #204F70;
  color: #FFFFFF;
  position: relative;
  overflow: visible;
}

/* Round the table corners by rounding header and footer cells so the table visually appears rounded
   while keeping wrapper overflow visible for floating badges/dropdowns. */
.oeg-homepage .comparison-table {
  border-radius: 12px;
}

.oeg-homepage .comparison-table thead th:first-child {
  border-top-left-radius: 12px;
}

.oeg-homepage .comparison-table thead th:last-child {
  border-top-right-radius: 12px;
}

.oeg-homepage .comparison-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}

.oeg-homepage .comparison-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}

.oeg-homepage .comparison-table th {
  padding: 24px 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.oeg-homepage .comparison-table th.feature-col {
  text-align: left;
  padding-right: 10px;
  width: 30%;
}

.oeg-homepage .comparison-table th.individual-col,
.oeg-homepage .comparison-table th.bundle-col {
  text-align: center;
  width: 35%;
  overflow: visible;
  position: relative;
}

.oeg-homepage .comparison-table .bundle-col {
  background: #183d56;
  position: relative;
}

.oeg-homepage .best-value-badge {
  position: absolute;
  /* float half above the table edge */
  top: -14px;
  left: 75%;
  transform: translateX(-50%);
  background: #FA4457;
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  z-index: 4;
  box-shadow: 0 6px 18px rgba(32, 79, 112, 0.15);
}

.oeg-homepage .best-value-badge.black-friday {
  background: #ffffff;
  color: #AD8A2D;
  border: 2px solid #D9C29E;
}

/* Desktop: align badge to center of bundle column (bundle column ~35% width, center at 82.5%) */
@media (min-width: 769px) {
  .oeg-homepage .best-value-badge {
    left: 82.5% !important;
    transform: translateX(-50%) !important;
  }
}

/* Keep mobile behavior (centered over column stacking) intact */
@media (max-width: 768px) {
  .oeg-homepage .best-value-badge {
    left: 65% !important;
    transform: translateX(-50%) !important;
    top: -12px;
    padding: 8px 14px;
  }
}

.oeg-homepage .comparison-table tbody tr:last-child {
  border-bottom: none;
}

.oeg-homepage .comparison-table td {
  padding: 20px;
  font-size: 15px;
}

.oeg-homepage .feature-name {
  font-weight: 600;
  color: #1C1C1E;
  text-align: left;
  padding-left: 10px;
  background: #FFFFFF;
}

.oeg-homepage .individual-cell,
.oeg-homepage .bundle-cell {
  text-align: center;
}

.oeg-homepage .individual-cell {
  background: #FFFFFF;
}

.oeg-homepage .bundle-cell {
  background: #E2EEFF;
}

.oeg-homepage .price-text {
  color: #666;
}

.oeg-homepage .check-green {
  color: #28A745;
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.oeg-homepage .x-red {
  color: #DC3545;
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.oeg-homepage .alert-yellow {
  color: #FFC107;
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.oeg-homepage .total-row {
  font-size: 18px;
}

.oeg-homepage .total-row td {
  padding: 24px 20px;
}

.oeg-homepage .total-row .feature-name {
  background: #E8E8E8;
}

.oeg-homepage .total-row .individual-cell {
  background: #E8E8E8;
}

.oeg-homepage .total-row .bundle-cell {
  background: #204F70;
  color: #FFFFFF;
}

.oeg-homepage .price-large {
  font-size: 28px;
  color: #204F70;
}

.oeg-homepage .total-row .bundle-cell .price-large {
  color: #FFFFFF;
}

.oeg-homepage .comparison-cta {
  text-align: center;
}

.oeg-homepage .savings-text {
  font-size: 20px;
  color: #28A745;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Mobile Toggle Switch for Comparison Table */
.oeg-homepage .comparison-toggle-container {
  display: none;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  padding: 16px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.oeg-homepage .comparison-toggle-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #1C1C1E;
  cursor: pointer;
}

.oeg-homepage .toggle-switch {
  position: relative;
  width: 60px;
  height: 32px;
  background: #E0E0E0;
  border-radius: 16px;
  transition: background-color 0.3s ease;
  overflow: hidden;
}

.oeg-homepage .toggle-switch-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 26px;
  height: 26px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.oeg-homepage .toggle-switch.active {
  background: #204F70;
}

.oeg-homepage .toggle-switch.active .toggle-switch-slider {
  transform: translateX(calc(60px - 26px - 6px));
}

.oeg-homepage .toggle-label-text {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  min-width: 100px;
  text-align: center;
}

.oeg-homepage .toggle-label-text.active {
  color: #204F70;
}

/* Mobile-specific styles for comparison table */
@media (max-width: 768px) {

  /* Show toggle switch only on mobile */
  .oeg-homepage .comparison-toggle-container {
    display: flex;
  }

  /* Force fixed table layout to ensure consistent column widths */
  .oeg-homepage .comparison-table {
    table-layout: fixed;
    width: 100%;
  }

  /* Hide individual column by default on mobile */
  .oeg-homepage .comparison-table .individual-col {
    display: none !important;
  }

  .oeg-homepage .comparison-table .individual-cell {
    display: none !important;
  }

  /* Enforce consistent column widths and padding */
  .oeg-homepage .comparison-table .feature-col {
    /* give feature column a bit more room so long labels (e.g. "Certification") don't wrap */
    width: 34% !important;
    padding: 12px 8px !important;
  }

  /* Adjust bundle column width on mobile */
  .oeg-homepage .comparison-table .bundle-col {
    /* slightly reduce right-side column width and padding so left column has more space */
    width: 66% !important;
    max-width: 66%;
    padding: 8px !important;
    padding-top: 36px !important;
    box-sizing: border-box;
    overflow: hidden;
  }

  .oeg-homepage .comparison-table .bundle-cell {
    padding: 8px !important;
    box-sizing: border-box;
    overflow: hidden;
  }

  /* Adjust best value badge position for mobile - nudge to align with slightly narrower bundle column */
  .oeg-homepage .best-value-badge {
    left: 62%;
  }

  /* Prevent feature text clipping on small screens: allow wrapping and more padding */
  .oeg-homepage .comparison-table .feature-col,
  .oeg-homepage .comparison-table .feature-name,
  .oeg-homepage .comparison-table th.feature-col {
    /* reduce left padding slightly so more horizontal space is available for feature names */
    padding-left: 12px !important;
    padding-right: 10px !important;
    white-space: normal !important;
    word-break: break-word !important;
  }

  .oeg-homepage .comparison-table td,
  .oeg-homepage .comparison-table th {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Show individual column when toggle is off */
  .oeg-homepage .comparison-table.show-individual .individual-col {
    display: table-cell !important;
    width: 70% !important;
    max-width: 70%;
    padding: 12px !important;
    box-sizing: border-box;
    overflow: visible;
  }

  .oeg-homepage .comparison-table.show-individual .individual-cell {
    display: table-cell !important;
    padding: 12px !important;
    box-sizing: border-box;
    overflow: visible;
  }

  .oeg-homepage .comparison-table.show-individual .bundle-col {
    display: none !important;
  }

  .oeg-homepage .comparison-table.show-individual .bundle-cell {
    display: none !important;
  }

  /* Hide the 'View Full Training Calendar' toggle/button on mobile; show on desktop */
  .oeg-homepage .banner-cta #toggleCalendar {
    display: none !important;
  }
}

/* FAQ Section */
.oeg-homepage .faq-section {
  background: #F7F7F7;
  border-bottom: 1px solid #E0E0E0;
}

.oeg-homepage .faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.oeg-homepage .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.oeg-homepage .faq-item {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.oeg-homepage .faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.oeg-homepage button.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px !important;
  background: #E2EEFF !important;
  border: none !important;
  text-align: left;
  cursor: pointer !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #1C1C1E !important;
  transition: none;
  /* disabled background transition for instant change */
  font-family: 'OEG-Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1;
}

.oeg-homepage button.faq-question:hover {
  background: #204F70 !important;
  color: #FFFFFF !important;
}

.oeg-homepage button.faq-question:hover svg {
  color: #FFFFFF !important;
}

.oeg-homepage .faq-item.active button.faq-question {
  background: #204F70 !important;
  color: #FFFFFF !important;
}

.oeg-homepage .faq-item.active button.faq-question svg {
  color: #FFFFFF !important;
}

.oeg-homepage button.faq-question span {
  flex: 1;
}

.oeg-homepage button.faq-question svg {
  width: 24px !important;
  height: 24px !important;
  color: #204F70 !important;
  transition: none;
  /* disabled rotation/color animation for instant toggle */
  flex-shrink: 0;
  vertical-align: -0.125em;
}

.oeg-homepage .faq-item.active button.faq-question svg {
  transform: rotate(180deg);
}

.oeg-homepage .faq-answer {
  display: none;
  transition: none;
}

.oeg-homepage .faq-item.active .faq-answer {
  display: block;
  padding: 0 24px 24px;
}

.oeg-homepage .faq-answer p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  padding-top: 24px;
}

/* Final CTA Section */
.oeg-homepage .final-cta-section {
  background: #E2EEFF;
  color: #1C1C1E;
  padding: 100px 20px;
}

.oeg-homepage .final-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.oeg-homepage .cta-content {
  max-width: 600px;
}

.oeg-homepage .cta-content h2 {
  font-size: 42px;
  color: #1C1C1E;
  margin-bottom: 16px;
}

.oeg-homepage .cta-content>p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #666;
}

.oeg-homepage .cta-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.oeg-homepage .cta-trust-signals {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.oeg-homepage .trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #666;
}

.oeg-homepage .trust-item svg {
  width: 20px;
  height: 20px;
  color: #204F70;
}

.oeg-homepage .cta-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.oeg-homepage .cta-visual img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Responsive Design */
@media (max-width: 1024px) {
  .oeg-homepage .hero-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .oeg-homepage .final-cta-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .oeg-homepage .cta-visual {
    order: -1;
  }

  .oeg-homepage .instances-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .oeg-homepage section {
    padding: 60px 20px;
  }

  .oeg-homepage h1 {
    font-size: 36px;
  }

  .oeg-homepage h2 {
    font-size: 28px;
  }

  .oeg-homepage .hero-title {
    font-size: 36px;
  }

  .oeg-homepage .hero-benefits-grid {
    grid-template-columns: 1fr;
  }

  .oeg-homepage .hero-cta-buttons {
    flex-direction: column;
  }

  .oeg-homepage .hero-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .oeg-homepage .floating-subscribe-btn {
    width: calc(100% - 40px);
    max-width: 420px;
    left: 50% !important;
    right: auto;
    transform: translateX(-50%) !important;
  }

  .oeg-homepage .hero-trust-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    row-gap: 20px;
  }

  .oeg-homepage .hero-trust-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .oeg-homepage .hero-trust-item svg {
    width: 20px;
    height: 20px;
  }

  .oeg-homepage .hero-trust-item strong {
    font-size: 20px;
  }

  .oeg-homepage .hero-trust-item span {
    font-size: 11px;
    line-height: 1.2;
  }

  /* Hero tab pane adjustments for mobile */
  .oeg-homepage .tab-pane-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .oeg-homepage .tab-pane-image {
    display: none;
  }

  .oeg-homepage .tab-pane-content {
    align-items: center;
    text-align: center;
  }

  .oeg-homepage .benefit-list {
    text-align: left;
  }

  .oeg-homepage .hero-cta {
    justify-content: center;
  }

  .oeg-homepage .cta-content h2 {
    font-size: 32px;
  }

  .oeg-homepage .value-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .oeg-homepage .training-sessions {
    gap: 20px;
    margin-bottom: 32px;
  }

  .oeg-homepage .training-sessions .training-card {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    padding: 20px !important;
    text-align: left;
    align-items: stretch !important;
  }

  .oeg-homepage .training-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .oeg-homepage .training-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .oeg-homepage .training-card-badges {
    order: -1;
    justify-content: flex-start;
  }

  .oeg-homepage .training-card-title {
    flex: initial;
    width: 100%;
  }

  .oeg-homepage .training-meta {
    gap: 10px;
    margin-bottom: 12px;
  }

  .oeg-homepage .training-meta .meta-entry {
    font-size: 14px;
  }

  .oeg-homepage .training-card-btn {
    width: 100%;
    justify-content: center;
    padding: calc(var(--cta-padding-block) - 2px) calc(var(--cta-padding-inline) - 6px);
    font-size: 15px;
    min-height: var(--cta-min-height);
    line-height: var(--cta-line-height);
    gap: var(--cta-gap);
  }

  .oeg-homepage .training-card-footer {
    flex-direction: column;
  }

  .oeg-homepage .training-card-footer .training-meta-box {
    width: 100%;
    flex: none;
    padding: 14px 16px;
  }

  .oeg-homepage .training-card-footer .btn {
    width: 100%;
    min-width: 0;
  }

  .oeg-homepage .books-grid,
  .oeg-homepage .instances-grid {
    grid-template-columns: 1fr;
  }

  .oeg-homepage .certification-grid {
    grid-template-columns: 1fr;
  }

  .oeg-homepage .testimonials-carousel {
    padding: 0 50px;
  }

  .oeg-homepage .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .oeg-homepage .cta-buttons {
    flex-direction: column;
  }

  .oeg-homepage .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Calendar mobile optimizations */
  .oeg-homepage .calendar-wrapper {
    padding: 20px;
    margin-top: 32px;
  }

  .oeg-homepage .calendar-header {
    flex-direction: row;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .oeg-homepage .calendar-month-year {
    font-size: 18px;
    flex: 1;
    text-align: center;
  }

  .oeg-homepage .calendar-nav-btn {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .oeg-homepage .calendar-nav-btn svg {
    width: 18px;
    height: 18px;
  }

  .oeg-homepage .calendar-day-header {
    padding: 12px 4px;
    font-size: 12px;
  }

  .oeg-homepage .calendar-date-cell {
    min-height: 80px;
    padding: 4px;
  }

  .oeg-homepage .calendar-date-number {
    font-size: 12px;
  }

  .oeg-homepage .calendar-event {
    font-size: 10px;
    padding: 4px 6px;
    line-height: 1.2;
  }

  .oeg-homepage .calendar-event-time {
    font-size: 9px;
  }

  /* Session modal mobile */
  .oeg-homepage .session-modal-content {
    padding: 24px;
    margin: 10px;
    max-height: 95vh;
  }

  .oeg-homepage .modal-session-title {
    font-size: 22px;
  }

  .oeg-homepage .modal-learning-list {
    grid-template-columns: 1fr;
  }

  .oeg-homepage .comparison-table {
    font-size: 14px;
  }

  .oeg-homepage .comparison-table th,
  .oeg-homepage .comparison-table td {
    padding: 12px 8px;
  }

  /* Value comparison mobile styles */
  .oeg-homepage .value-comparison {
    padding: 24px !important;
  }

  .oeg-homepage .comparison-cards {
    grid-template-columns: minmax(280px, 1fr) !important;
    gap: 24px !important;
  }

  .oeg-homepage .comparison-card {
    padding: 24px !important;
  }

  .oeg-homepage .comparison-card h4 {
    font-size: 1.3rem !important;
  }

  .oeg-homepage .comparison-card .total {
    font-size: 1.1rem !important;
  }

  .oeg-homepage .comparison-card .total-price {
    font-size: 1.5rem !important;
  }
}

@media (max-width: 480px) {
  .oeg-homepage .hero-tabs {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .oeg-homepage .hero-tab {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    justify-content: center;
  }

  .oeg-homepage .category-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .oeg-homepage .category-tab {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    justify-content: center;
    padding: 10px 16px;
    font-size: 14px;
  }

  .oeg-homepage .category-tab svg {
    width: 16px;
    height: 16px;
  }

  .oeg-homepage .course-grid {
    grid-template-columns: 1fr;
  }

  /* Additional mobile optimizations for training sessions */
  .oeg-homepage .training-card {
    padding: 16px;
  }

  .oeg-homepage .training-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .oeg-homepage .training-meta {
    gap: 8px;
    margin-bottom: 10px;
  }

  .oeg-homepage .training-meta .meta-entry {
    font-size: 13px;
  }

  .oeg-homepage .training-badge {
    font-size: 10px;
    padding: 3px 8px;
    margin-bottom: 8px;
  }

  /* Hero section mobile improvements */
  .oeg-homepage .hero-trust-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    row-gap: 16px;
  }

  .oeg-homepage .hero-trust-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .oeg-homepage .hero-trust-item svg {
    width: 18px;
    height: 18px;
  }

  .oeg-homepage .hero-trust-item strong {
    font-size: 18px;
  }

  .oeg-homepage .hero-trust-item span {
    font-size: 10px;
    line-height: 1.2;
    max-width: 90px;
  }

  /* Hero tabs - maintain 2 rows layout */
  .oeg-homepage .hero-tabs {
    gap: 8px;
  }

  .oeg-homepage .hero-tab {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    padding: 10px 16px;
    font-size: 14px;
    justify-content: center;
  }

  .oeg-homepage .hero-tab svg {
    width: 16px;
    height: 16px;
  }

  .oeg-homepage .trust-item {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  .oeg-homepage .trust-item strong {
    font-size: 18px;
  }

  .oeg-homepage .trust-item span {
    font-size: 12px;
  }

  /* Books grid mobile improvements */
  .oeg-homepage .book-grid {
    gap: 16px;
  }

  .oeg-homepage .book-card {
    min-height: 280px;
  }

  /* Design switcher mobile */
  .oeg-homepage .design-switcher {
    top: 10px;
    right: 10px;
    padding: 8px 12px;
    flex-direction: column;
    gap: 8px;
  }

  .oeg-homepage .design-switcher select {
    width: 100%;
  }

  /* Books grid mobile improvements */
  .oeg-homepage .book-grid {
    gap: 16px;
  }

  .oeg-homepage .stat-card {
    padding: 24px;
  }

  .oeg-homepage .stat-number {
    font-size: 36px;
  }

  /* OEG One Job Assistance Flowchart - Mobile vertical layout */
  #job-assistance-section div[style*="display: flex"][style*="justify-content: space-between"] {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
  }

  #job-assistance-section div[style*="display: flex"][style*="justify-content: space-between"]>div[style*="flex: 1"] {
    flex: none !important;
    min-width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 0 !important;
  }

  #job-assistance-section div[style*="display: flex"][style*="justify-content: space-between"]>div[style*="padding-top: 36px"] {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    transform: rotate(90deg) !important;
    margin: 8px 0 !important;
  }

  #job-assistance-section div[style*="display: flex"][style*="justify-content: space-between"]>div[style*="padding-top: 36px"] svg {
    width: 24px !important;
    height: 40px !important;
  }

  /* Final CTA section mobile optimization */
  .final-cta-section>div[style*="grid-template-columns: 1fr 1fr"] {
    gap: 8px !important;
  }

  .oeg-homepage .comparison-card .total-price {
    font-size: 1.4rem !important;
  }

  .oeg-homepage .savings-badge {
    position: static !important;
    display: inline-block !important;
    margin-bottom: 12px !important;
    font-size: 0.8rem !important;
    padding: 6px 16px !important;
  }

  .oeg-homepage .comparison-card .savings {
    padding: 12px !important;
  }

  .oeg-homepage .comparison-card .savings-amount {
    font-size: 1.3rem !important;
  }
}

.oeg-homepage .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #1C1C1E;
  line-height: 1.4;
}

.oeg-homepage .meta-item svg {
  width: 16px;
  height: 16px;
  color: #204F70;
  flex-shrink: 0;
}

/* Additional styles moved from content/homepage/homepage.html to avoid inline duplication */
/* Course selector and dropdown styles */
.course-selector-wrapper {
  margin-top: 16px;
  text-align: left;
}

.custom-dropdown {
  position: relative;
  width: 100%;
}

.dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 8px 12px;
  background: white;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dropdown-header:hover {
  border-color: #204F70;
}

.dropdown-header.open {
  border-color: #204F70;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.dropdown-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
  min-height: 24px;
  align-items: center;
}

.dropdown-chevron {
  width: 20px;
  height: 20px;
  color: #666;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.dropdown-header.open .dropdown-chevron {
  transform: rotate(180deg);
}

.dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #204F70;
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
  animation: dropdownSlideDown 0.2s ease;
}

.dropdown-panel.open {
  display: block;
}

/* =======================
   Override fixes (specific, high-specificity rules)
   - Ensure table corner radius and remove unwanted borders
   - Left-align dropdown panel contents inside table header
   - Harmonize FAQ button and answer corner radii
   These rules are intentionally specific to .oeg-homepage to avoid global leakage
   ======================= */

.oeg-homepage .comparison-table-wrapper {
  border-radius: 12px;
  /* allow dropdowns and other popouts to escape the table area */
  overflow: visible !important;
  /* remove extra white gap at the top (was padding-top:20px in original rules) */
  padding-top: 0 !important;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.oeg-homepage .comparison-table {
  /* use separate so border-radius on wrapper works reliably */
  border-collapse: separate !important;
  border-spacing: 0;
  background: transparent;
}

.oeg-homepage .comparison-table th,
.oeg-homepage .comparison-table td {
  border: none !important;
  /* remove theme/UA borders */
  vertical-align: middle;
}

/* Top-corners on the header cells (visual radius provided by wrapper) */
.oeg-homepage .comparison-table thead th:first-child {
  text-align: left;
  padding-left: 20px;
}

.oeg-homepage .comparison-table thead th:last-child {
  text-align: center;
}

.oeg-homepage .comparison-table tbody td {
  /* subtle separators between rows without external cell borders */
  border-bottom: 1px solid rgba(224, 224, 224, 0.6);
  padding: 16px 20px;
}

.oeg-homepage .comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* Make the feature column left-aligned for readability */
.oeg-homepage .comparison-table .feature-name,
.oeg-homepage .comparison-table tbody td:first-child {
  text-align: left;
  padding-left: 20px;
}

/* Dropdown panel inside the table header sometimes inherits centered text; force left alignment */
.oeg-homepage .dropdown-panel,
.oeg-homepage .dropdown-panel .dropdown-category,
.oeg-homepage .dropdown-panel .checkbox-item,
.oeg-homepage .dropdown-panel .checkbox-item span,
.oeg-homepage .dropdown-panel .category-label {
  text-align: left !important;
}

/* Ensure checkbox rows don't appear centered inside flex containers */
.oeg-homepage .dropdown-panel .checkbox-item {
  justify-content: flex-start;
}

/* Make dropdown escape and appear above the table instead of being clipped */
.oeg-homepage .dropdown-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: auto;
  z-index: 9999 !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 2px solid #204F70;
}

/* FAQ: make header and content share the same rounded corners (button header top, answer bottom) */
.oeg-homepage .faq-item {
  background: transparent;
}

/* Ensure the question button is vertically centered and the toggle icon is pushed to the far right */
.oeg-homepage button.faq-question {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 22px 28px !important;
  min-height: 64px !important;
  border-radius: 12px !important;
}

.oeg-homepage button.faq-question span {
  flex: 1 1 auto;
  display: inline-block;
}

/* Move the icon to the far right and keep it vertically centered */
.oeg-homepage button.faq-question svg,
.oeg-homepage button.faq-question i[data-lucide] {
  margin-left: 12px !important;
  margin-right: 0 !important;
  flex-shrink: 0;
}

.oeg-homepage .faq-item:not(.active) button.faq-question {
  /* when collapsed, keep button a single rounded bar */
  border-bottom-left-radius: 12px !important;
  border-bottom-right-radius: 12px !important;
}

.oeg-homepage .faq-item.active button.faq-question {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.oeg-homepage .faq-item .faq-answer {
  background: #FFFFFF !important;
  border-radius: 0 0 12px 12px !important;
  margin-top: 0 !important;
  padding: 0 24px 24px !important;
}

.oeg-homepage .faq-answer {
  display: none;
}

.oeg-homepage .faq-item.active .faq-answer {
  display: block;
}


@keyframes dropdownSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-category {
  padding: 12px 16px;
  border-bottom: 1px solid #F0F0F0;
}

.dropdown-category:last-child {
  border-bottom: none;
}

.category-label {
  font-size: 13px;
  font-weight: 600;
  color: #204F70;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-radius: 4px;
  user-select: none;
}

.checkbox-item:hover {
  background-color: #F8F9FA;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #204F70;
  flex-shrink: 0;
}

.checkbox-item span {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

.submodule-item {
  font-size: 13px;
  color: #555;
  padding: 4px 0 4px 28px;
}

.course-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #204F70 0%, #2d6a94 100%);
  color: white;
  padding: 4px 6px 4px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(32, 79, 112, 0.15);
  transition: all 0.2s ease;
  animation: tagFadeIn 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 180px;
}

@keyframes tagFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.course-tag:hover {
  box-shadow: 0 3px 6px rgba(32, 79, 112, 0.25);
  transform: translateY(-1px);
}

.course-tag-text {
  line-height: 1.4;
}

.course-selector-wrapper .course-tag-remove {
  background: rgba(255, 255, 255, 0.2) !important;
  border: none !important;
  border-radius: 3px !important;
  padding: 2px !important;
  cursor: pointer !important;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease;
  color: white !important;
}

.course-selector-wrapper .course-tag-remove:hover {
  background: rgba(255, 255, 255, 0.35) !important;
  transform: scale(1.1);
}

.course-selector-wrapper .course-tag-remove:active {
  transform: scale(0.95);
}

@media (max-width: 768px) {
  .course-selector-wrapper {
    margin-top: 12px;
  }

  .dropdown-header {
    min-height: 40px;
    padding: 6px 10px;
  }

  .dropdown-panel {
    max-height: 300px;
  }

  .course-tag {
    font-size: 11px;
    padding: 3px 5px 3px 8px;
  }

  .course-tag {
    max-width: 140px;
  }

  .checkbox-item {
    padding: 6px 4px;
  }

  .checkbox-item span {
    font-size: 13px;
  }
}

/* Responsive grids for corporate sections */
.talent-grid {
  grid-template-columns: repeat(4, minmax(200px, 1fr));
}

.job-tools-grid {
  grid-template-columns: repeat(4, minmax(200px, 1fr));
}

.training-programs-grid {
  grid-template-columns: repeat(3, minmax(250px, 1fr));
}

@media (max-width: 1024px) {

  .talent-grid,
  .job-tools-grid {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }

  .training-programs-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 640px) {

  .talent-grid,
  .job-tools-grid,
  .training-programs-grid {
    grid-template-columns: 1fr;
  }
}

/* End moved styles */

/* Placement Flowchart Styles */
.oeg-homepage .placement-flowchart {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.oeg-homepage .arrow-container {
  flex: 0 0 auto;
  padding-top: 36px;
  display: flex;
  align-items: center;
}

.oeg-homepage .arrow-container svg {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .oeg-homepage .placement-flowchart {
    flex-direction: column;
    align-items: center;
  }

  .oeg-homepage .arrow-container {
    padding-top: 0;
    padding: 16px 0;
    transform: rotate(90deg);
  }

  /* Ensure floating CTA doesn't take full width on mobile */
  .oeg-homepage .floating-subscribe-btn {
    width: auto !important;
    max-width: 90% !important;
    white-space: nowrap;
  }
}
