.gmp-book__intro {
    display: grid;
    gap: 1rem;
    padding: 2rem;
    border-left: 4px solid var(--gmp-primary);
}

.gmp-book__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.gmp-book__details {
    display: grid;
    gap: 1.25rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .gmp-book__details {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

/* Font Face */


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

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

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

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

.oeg-homepage.ebs-books-page .content-accordion__button svg {
  transform: translateY(-1.5px);
}

.oeg-homepage.ebs-books-page {
  color: #1C1C1E;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

/* Buttons */
.oeg-homepage.ebs-books-page .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1.6 !important;
  height: 53.6px;
}

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

.oeg-homepage.ebs-books-page .btn-primary:hover {
  background: #183d56;
  border-color: #183d56;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(32, 79, 112, 0.3);
}

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

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

.oeg-homepage.ebs-books-page .btn-secondary {
  background: #E2EEFF;
  color: #204F70;
  border-color: #E2EEFF;
}

.oeg-homepage.ebs-books-page .btn-secondary:hover {
  background: #c9d9ff;
  border-color: #c9d9ff;
  transform: translateY(-2px);
}

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

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

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

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

/* Standard CTA Button - consistent across all sections */
.oeg-homepage.ebs-books-page .btn-cta {
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  text-decoration: none;
}

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

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

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

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

/* Hero Section */
.oeg-homepage.ebs-books-page .hero-section {
  background: #F7F7F7;
  color: #1C1C1E;
  padding: 24px 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.ebs-books-page .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;
  border: 1px solid #E0E0E0;
}

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

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

.oeg-homepage.ebs-books-page .design-switcher select {
  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.ebs-books-page .design-switcher select:hover {
  border-color: #204F70;
  background: #FFFFFF;
}

.oeg-homepage.ebs-books-page .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.ebs-books-page .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.ebs-books-page .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.ebs-books-page .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.ebs-books-page .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.ebs-books-page .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.ebs-books-page .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.ebs-books-page .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.ebs-books-page .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.ebs-books-page .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.ebs-books-page .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.ebs-books-page .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.ebs-books-page .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.ebs-books-page .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.oeg-homepage.ebs-books-page .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-top: -16px;
}

.oeg-homepage.ebs-books-page .hero-image-bg {
  background-image: url('last-section.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1196 / 647;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .oeg-homepage.ebs-books-page .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .oeg-homepage.ebs-books-page .hero-content {
    order: 2;
  }
  
  .oeg-homepage.ebs-books-page .hero-image-bg {
    order: 1;
  }
}

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

.oeg-homepage.ebs-books-page .hero-pill {
 display: inline-flex;
 align-items: center;
 gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
}

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

.oeg-homepage.ebs-books-page .hero-pill-icon i {
  width: 18px;
  height: 18px;
}

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

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

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

.oeg-homepage.ebs-books-page .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.ebs-books-page .hero-benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.oeg-homepage.ebs-books-page .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.ebs-books-page .benefit-card-icon svg {
  width: 24px;
  height: 24px;
  color: #204F70;
  vertical-align: middle;
}

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

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

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

/* Hero Trust Bar */
.oeg-homepage.ebs-books-page .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.ebs-books-page .hero-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

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

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

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

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

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

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

.oeg-homepage.ebs-books-page .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;
  line-height: 1;
}

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

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

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

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

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

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

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

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

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

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

.oeg-homepage.ebs-books-page .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.ebs-books-page .benefit-list {
  list-style: none;
  margin-bottom: 24px;
}

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

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

.oeg-homepage.ebs-books-page .hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

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

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

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

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

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

.oeg-homepage.ebs-books-page .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.ebs-books-page .banner-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.oeg-homepage.ebs-books-page .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.ebs-books-page .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.ebs-books-page .banner-header h2 {
  font-size: 42px;
  color: #1C1C1E;
  margin-bottom: 12px;
}

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

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

.oeg-homepage.ebs-books-page .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.ebs-books-page .training-card:hover {
  background: #FFFFFF;
  border-color: #204F70;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

.oeg-homepage.ebs-books-page .training-card-footer .training-meta-box {
  flex: 1 1 320px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(242, 248, 255, 0.96) 100%);
  border: 1px solid rgba(32, 79, 112, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 1px 3px rgba(32, 79, 112, 0.08);
  border-radius: 12px;
  padding: 14px 18px;
}

.oeg-homepage.ebs-books-page .training-card-footer .training-meta {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 0;
}

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

.oeg-homepage.ebs-books-page .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.ebs-books-page .training-badge.ongoing {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
}

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

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

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

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

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

.oeg-homepage.ebs-books-page .training-meta {
  margin-bottom: 0;
  display: flex;
  gap: 8px 24px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 15px;
  color: #204F70;
}

.oeg-homepage.ebs-books-page .training-meta .meta-entry {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.oeg-homepage.ebs-books-page .training-card .btn {
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.1 !important;
  height: 53.6px;
}

.oeg-homepage.ebs-books-page .training-card-btn {
  background: #204F70;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 28px;
  border-radius: 10px;
  min-width: 220px;
  min-height: 52px;
  height: auto;
  flex: 0 0 auto;
  align-self: center;
}

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

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

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

/* Full Calendar Styles */
.oeg-homepage.ebs-books-page .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.ebs-books-page .calendar-wrapper.show {
  max-height: 1200px;
  opacity: 1;
  margin-bottom: 32px;
}

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

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

.oeg-homepage.ebs-books-page .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.ebs-books-page .calendar-nav-btn:hover {
  background: #204F70;
  color: #FFFFFF;
  border-color: #204F70;
}

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

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

.oeg-homepage.ebs-books-page .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.ebs-books-page #calendarDates {
  display: contents;
}

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

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

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

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

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

.oeg-homepage.ebs-books-page .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.ebs-books-page .calendar-events {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.oeg-homepage.ebs-books-page .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.ebs-books-page .calendar-event:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

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

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

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

/* Session Detail Modal */
.oeg-homepage.ebs-books-page .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.ebs-books-page .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.ebs-books-page .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.ebs-books-page .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.ebs-books-page .session-modal-close:hover {
  background: #204F70;
  color: #FFFFFF;
  border-color: #204F70;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.oeg-homepage.ebs-books-page .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.ebs-books-page .link-arrow:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

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

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

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

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

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

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

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

.oeg-homepage.ebs-books-page .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.ebs-books-page .showcase-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.oeg-homepage.ebs-books-page .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.ebs-books-page .showcase-icon svg {
  width: 32px;
  height: 32px;
  color: #FFFFFF;
  vertical-align: middle;
}

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

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

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

.oeg-homepage.ebs-books-page .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.ebs-books-page .pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #FA4457;
  color: #FFFFFF;
  padding: 8px 36px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  white-space: nowrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

.oeg-homepage.ebs-books-page .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;
  line-height: 1;
}

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

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

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

.oeg-homepage.ebs-books-page .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.ebs-books-page .category-pane {
  display: none;
  background: #E2EEFF;
  padding: 32px;
  border-radius: 12px;
}

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

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

.oeg-homepage.ebs-books-page .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.ebs-books-page .course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #E2EEFF;
}

.oeg-homepage.ebs-books-page .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.ebs-books-page .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.ebs-books-page .course-icon svg {
  width: 24px;
  height: 24px;
  color: #FFFFFF;
  vertical-align: middle;
}

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

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

 /* Learn More link under each course card */
 .oeg-homepage.ebs-books-page .learn-more-link {
  display: inline-block;
  margin-top: 8px;
  color: #204F70;
  font-weight: 600;
  text-decoration: none;
 }
 .oeg-homepage.ebs-books-page .learn-more-link:hover {
  text-decoration: underline;
 }

.oeg-homepage.ebs-books-page .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.ebs-books-page .view-all-link:hover {
  gap: 12px;
}

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

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

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

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

.oeg-homepage.ebs-books-page .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;
  line-height: 1;
}

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

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

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

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

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

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

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

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

 .oeg-homepage.ebs-books-page .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.ebs-books-page .book-card.two-tone {
  padding: 0;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.oeg-homepage.ebs-books-page .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.ebs-books-page .book-card.two-tone .book-card-bottom h3,
.oeg-homepage.ebs-books-page .book-card.two-tone .book-card-bottom .course-duration,
.oeg-homepage.ebs-books-page .book-card.two-tone .book-card-bottom .learn-more-link {
  color: #FFFFFF;
}

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

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

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

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

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

.oeg-homepage.ebs-books-page .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.ebs-books-page .meta-badge svg {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

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

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

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

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

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

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

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

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

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

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

.oeg-homepage.ebs-books-page #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-page #ebs-books .book-card:first-child .book-card-bottom {
  margin-top: 0 !important;
}

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

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

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

.oeg-homepage.ebs-books-page .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.ebs-books-page .instance-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #204F70;
}

.oeg-homepage.ebs-books-page .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.ebs-books-page .instance-visual {
  margin-bottom: 24px;
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

.oeg-homepage.ebs-books-page .instance-card .btn {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
}

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

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

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

.oeg-homepage.ebs-books-page .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.ebs-books-page .cert-path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

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

.oeg-homepage.ebs-books-page .cert-code {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

.oeg-homepage.ebs-books-page .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.ebs-books-page .stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #204F70;
  margin-bottom: 8px;
}

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

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

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

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

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

.oeg-homepage.ebs-books-page .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.ebs-books-page .testimonial-card.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

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

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

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

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

.oeg-homepage.ebs-books-page .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.ebs-books-page .author-info h4 {
  font-size: 16px;
  color: #1C1C1E;
  margin-bottom: 4px;
}

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

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

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

.oeg-homepage.ebs-books-page .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.ebs-books-page .carousel-btn:hover {
  background: #183d56;
  transform: translateY(-50%) scale(1.1);
}

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

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

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

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

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

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

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

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

.oeg-homepage.ebs-books-page .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.ebs-books-page .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.ebs-books-page .comparison-table thead {
  background: #204F70;
  color: #FFFFFF;
  position: relative;
  overflow: visible;
}

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

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

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

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

.oeg-homepage.ebs-books-page .best-value-badge {
  position: absolute;
  top: 8px;
  left: 82.5%;
  transform: translateX(-50%);
  background: #FA4457;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  z-index: 10;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Mobile Toggle Switch for Comparison Table */
.oeg-homepage.ebs-books-page .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.ebs-books-page .comparison-toggle-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #1C1C1E;
  cursor: pointer;
}

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

.oeg-homepage.ebs-books-page .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.ebs-books-page .toggle-switch.active {
  background: #204F70;
}

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

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

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

/* Mobile-specific styles for comparison table */
@media (max-width: 768px) {
  /* Show toggle switch only on mobile */
  .oeg-homepage.ebs-books-page .comparison-toggle-container {
    display: flex;
  }

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

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

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

  /* Enforce consistent column widths and padding */
  .oeg-homepage.ebs-books-page .comparison-table .feature-col {
    width: 30% !important;
    padding: 12px 8px !important;
  }

  /* Adjust bundle column width on mobile */
  .oeg-homepage.ebs-books-page .comparison-table .bundle-col {
    width: 70% !important;
    max-width: 70%;
    padding: 12px !important;
    padding-top: 40px !important;
    box-sizing: border-box;
    overflow: hidden;
  }

  .oeg-homepage.ebs-books-page .comparison-table .bundle-cell {
    padding: 12px !important;
    box-sizing: border-box;
    overflow: hidden;
  }
  
  /* Adjust best value badge position for mobile - center on 70% column */
  .oeg-homepage.ebs-books-page .best-value-badge {
    left: 65%;
  }
  
  /* Show individual column when toggle is off */
  .oeg-homepage.ebs-books-page .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.ebs-books-page .comparison-table.show-individual .individual-cell {
    display: table-cell !important;
    padding: 12px !important;
    box-sizing: border-box;
    overflow: visible;
  }

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

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

/* FAQ Section */
.oeg-homepage.ebs-books-page #contents-section .content-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.oeg-homepage.ebs-books-page #contents-section .content-accordion__item {
  border-radius: 12px;
  background: transparent;
  border: none;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.oeg-homepage.ebs-books-page #contents-section .content-accordion__button {
  width: 100%;
  padding: 20px 24px;
  border: none;
  border-radius: 12px;
  background: #e6f0ff;
  color: #102a43;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 35px -28px rgba(16, 42, 67, 0.65);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.oeg-homepage.ebs-books-page #contents-section .content-accordion__button > :first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.oeg-homepage.ebs-books-page #contents-section .content-accordion__button:hover {
  background: #204F70;
  color: #ffffff;
}

.oeg-homepage.ebs-books-page #contents-section .content-accordion__item.active .content-accordion__button {
  background: #204F70;
  color: #ffffff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 25px 45px -30px rgba(32, 79, 112, 0.75);
}

.oeg-homepage.ebs-books-page #contents-section .content-accordion__button:hover h3,
.oeg-homepage.ebs-books-page #contents-section .content-accordion__button:hover p {
  color: #ffffff !important;
}

.oeg-homepage.ebs-books-page #contents-section .content-accordion__item.active .content-accordion__button h3,
.oeg-homepage.ebs-books-page #contents-section .content-accordion__item.active .content-accordion__button p {
  color: #ffffff !important;
}

.oeg-homepage.ebs-books-page #contents-section .content-accordion__chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.oeg-homepage.ebs-books-page #contents-section .content-accordion__chevron svg,
.oeg-homepage.ebs-books-page .content-accordion__button svg {
  width: 24px;
  height: 24px;
  color: currentColor;
  transition: transform 0.2s ease, color 0.2s ease;
}

.oeg-homepage.ebs-books-page #contents-section .content-accordion__item.active .content-accordion__chevron svg {
  transform: rotate(180deg);
}

.oeg-homepage.ebs-books-page #contents-section .content-accordion__panel {
  display: none;
  padding: 24px;
  border: 2px solid #c7daf6;
  border-top: none;
  border-radius: 0 0 12px 12px;
  background: #ffffff;
  box-shadow: 0 40px 60px -40px rgba(32, 79, 112, 0.65);
}

.oeg-homepage.ebs-books-page #contents-section .content-accordion__item.active .content-accordion__panel {
  display: block;
}

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

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

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

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

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

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

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

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

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

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

.oeg-homepage.ebs-books-page .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.ebs-books-page .hero-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .oeg-homepage.ebs-books-page .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.ebs-books-page .training-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.3;
  }

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

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

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

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

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

  .oeg-homepage.ebs-books-page .training-card-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 22px;
    font-size: 14px;
  }

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

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

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

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

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

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

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

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

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

  .oeg-homepage.ebs-books-page .final-cta-section .btn {
    width: 100%;
    justify-content: center;
    min-height: 60px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .oeg-homepage.ebs-books-page .showcase-grid {
    grid-template-columns: 1fr;
  }

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

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

  /* Job referral process mobile optimization */
  #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*="min-width: 200px"] {
    flex: 1 1 100% !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"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Value comparison additional mobile styles for very small screens */
  .oeg-homepage.ebs-books-page .value-comparison {
    padding: 20px !important;
  }

  .oeg-homepage.ebs-books-page .comparison-cards {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .oeg-homepage.ebs-books-page .comparison-card {
    padding: 20px !important;
  }

  .oeg-homepage.ebs-books-page .comparison-card h4 {
    font-size: 1.2rem !important;
    margin-bottom: 20px !important;
  }

  .oeg-homepage.ebs-books-page .comparison-card .item {
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  .oeg-homepage.ebs-books-page .comparison-card .total {
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
  }

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

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

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

  .oeg-homepage.ebs-books-page .comparison-card .savings-amount {
    font-size: 1.3rem !important;
  }
}
.oeg-homepage.ebs-books-page .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #1C1C1E;
  line-height: 1.4;
}

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


/* Content list + FAQ accordion styles */
.oeg-homepage.ebs-books-page #contents-section .content-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.oeg-homepage.ebs-books-page #contents-section .content-card {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 12px;
  border: 2px solid #E2EEFF;
  transition: all 0.3s ease;
  width: 100%;
  display: block;
  break-inside: auto;
}

.oeg-homepage.ebs-books-page #contents-section .content-card:hover {
  border-color: #204F70;
  box-shadow: 0 4px 12px rgba(32, 79, 112, 0.15);
}

.oeg-homepage.ebs-books-page #contents-section .content-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: #204F70;
  margin-bottom: 16px;
  line-height: 1.3;
}

.oeg-homepage.ebs-books-page #contents-section .content-topics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 12px;
}

.oeg-homepage.ebs-books-page #contents-section .content-topics li {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  padding-left: 20px !important;
  position: relative;
}

.oeg-homepage.ebs-books-page #contents-section .content-topics li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #204F70;
  font-weight: 700;
  font-size: 14px;
}

@media (max-width: 768px) {
  .oeg-homepage.ebs-books-page #contents-section .content-topics {
    grid-template-columns: 1fr;
  }
}

.oeg-homepage.ebs-books-page .faq-section .section-header {
  text-align: center;
}

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

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

.oeg-homepage.ebs-books-page .faq-item {
  width: 100%;
}

.oeg-homepage.ebs-books-page .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.oeg-homepage.ebs-books-page .faq-question span:first-child {
  flex: 1 1 auto;
}

.oeg-homepage.ebs-books-page .faq-chevron {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* About the Author Section - Mobile Responsive */
@media (min-width: 769px) {
  .oeg-homepage.ebs-books-page .author-about-grid {
    grid-template-columns: 200px 1fr !important;
    padding: 48px !important;
    gap: 48px !important;
  }
  
  .oeg-homepage.ebs-books-page .author-about-grid > div:last-child {
    text-align: left !important;
  }
}
