.gmp-course__hero {
    display: grid;
    gap: 1rem;
    padding: 2rem;
    border: 1px solid var(--gmp-border);
    border-radius: var(--gmp-radius);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 233, 0.08));
}

.gmp-course__grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

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


/* === REACT-MANAGED START === */
/* React-managed source: src/styles/oeg-react.css */
/* =====================================================
   OEG React Components - CSS Styles
   All classes prefixed with 'react-' to avoid conflicts
   with existing oeg-custom-pages styles
   ===================================================== */

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

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

/* OEG Brand Colors */
:root {
  --react-oeg-primary: #204F70;
  --react-oeg-secondary: #E2EEFF;
  --react-oeg-accent: #FA4457;
  --react-oeg-black: #1C1C1E;
  --react-oeg-white: #FFFFFF;
  --react-oeg-gray-100: #F7F7F7;
  --react-oeg-gray-200: #E5E5E5;
  --react-oeg-gray-300: #D4D4D4;
  --react-oeg-gray-500: #737373;
  --react-oeg-gray-700: #404040;
  --react-oeg-gray-900: #171717;
  
  /* Spacing */
  --react-spacing-xs: 0.25rem;
  --react-spacing-sm: 0.5rem;
  --react-spacing-md: 1rem;
  --react-spacing-lg: 1.5rem;
  --react-spacing-xl: 2rem;
  --react-spacing-2xl: 3rem;
  --react-spacing-3xl: 4rem;
  
  /* Typography */
  --react-font-family: 'OEG-Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Borders & Shadows */
  --react-border-radius-sm: 0.25rem;
  --react-border-radius-md: 0.5rem;
  --react-border-radius-lg: 0.75rem;
  --react-border-radius-xl: 1rem;
  --react-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --react-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --react-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* =====================================================
   Base Page Wrappers
   ===================================================== */
.react-oeg-homepage,
.react-oeg-course-page,
.react-oeg-cert-path-page,
.react-oeg-book-page,
.react-oeg-instance-page,
.react-oeg-service-page,
.react-oeg-landing-page,
.react-oeg-blog-page {
  font-family: var(--react-font-family);
  color: var(--react-oeg-black);
  line-height: 1.6;
}

/* =====================================================
   Hero Section
   ===================================================== */
.react-hero-section {
  background: linear-gradient(135deg, var(--react-oeg-primary) 0%, #1a3d5c 100%);
  color: var(--react-oeg-white);
  padding: var(--react-spacing-3xl) var(--react-spacing-lg);
  text-align: center;
}

.react-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.react-hero-header-centered {
  max-width: 800px;
  margin: 0 auto;
}

.react-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--react-spacing-md);
  line-height: 1.2;
}

.react-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: var(--react-spacing-xl);
}

.react-hero-cta {
  margin-top: var(--react-spacing-xl);
}

/* Hero Variants */
.react-hero-course {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.react-hero-book {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
}

.react-hero-instance {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.react-hero-service {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.react-hero-landing {
  background: linear-gradient(135deg, var(--react-oeg-primary) 0%, #0f2942 100%);
  padding: var(--react-spacing-3xl) var(--react-spacing-lg);
}

/* =====================================================
   Buttons
   ===================================================== */
.react-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--react-spacing-sm);
  padding: var(--react-spacing-sm) var(--react-spacing-lg);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--react-border-radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  box-sizing: border-box;
}

.react-oeg-course-page .react-btn {
  text-decoration: none !important;
  border: none !important;
  box-shadow: none;
  font-family: var(--react-font-family);
}

.react-oeg-course-page .react-btn:focus-visible {
  outline: 2px solid rgba(32, 79, 112, 0.5);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px rgba(32, 79, 112, 0.15);
}

.react-btn-primary {
  background-color: var(--react-oeg-primary);
  color: var(--react-oeg-white);
}

.react-oeg-course-page .react-btn-primary,
.react-oeg-course-page .react-btn-primary:visited {
  color: var(--react-oeg-white) !important;
  background-color: var(--react-oeg-primary) !important;
}

.react-btn-primary:hover {
  background-color: #163a59;
  transform: translateY(-1px);
  box-shadow: var(--react-shadow-md);
  color: var(--react-oeg-white);
}

.react-oeg-course-page .react-btn-primary:hover,
.react-oeg-course-page .react-btn-primary:focus-visible {
  background-color: #163a59 !important;
  color: var(--react-oeg-white) !important;
  box-shadow: var(--react-shadow-md) !important;
}

.react-btn-accent {
  background-color: var(--react-oeg-accent);
  color: var(--react-oeg-white);
}

.react-oeg-course-page .react-btn-accent,
.react-oeg-course-page .react-btn-accent:visited {
  color: var(--react-oeg-white) !important;
  background-color: var(--react-oeg-accent) !important;
}

.react-btn-accent:hover {
  background-color: #e03344;
  transform: translateY(-1px);
  box-shadow: var(--react-shadow-md);
  color: var(--react-oeg-white);
}

.react-oeg-course-page .react-btn-accent:hover,
.react-oeg-course-page .react-btn-accent:focus-visible {
  background-color: #e03344 !important;
  color: var(--react-oeg-white) !important;
  box-shadow: var(--react-shadow-md) !important;
}

.react-btn-whatsapp {
  background-color: #25d366;
  color: var(--react-oeg-white);
}

.react-oeg-course-page .react-btn-whatsapp,
.react-oeg-course-page .react-btn-whatsapp:visited {
  background-color: #25d366 !important;
  color: var(--react-oeg-white) !important;
}

.react-btn-whatsapp:hover {
  background-color: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: var(--react-shadow-md);
}

.react-oeg-course-page .react-btn-whatsapp:hover,
.react-oeg-course-page .react-btn-whatsapp:focus-visible {
  background-color: #1ebe5d !important;
  color: var(--react-oeg-white) !important;
  box-shadow: var(--react-shadow-md) !important;
}

.react-btn-secondary {
  background-color: var(--react-oeg-white);
  color: var(--react-oeg-primary);
  border: none;
  box-shadow: inset 0 0 0 2px var(--react-oeg-primary);
}

.react-oeg-course-page .react-btn-secondary,
.react-oeg-course-page .react-btn-secondary:visited {
  background-color: var(--react-oeg-white) !important;
  color: var(--react-oeg-primary) !important;
  box-shadow: inset 0 0 0 2px var(--react-oeg-primary) !important;
}

.react-btn-secondary:hover {
  background-color: var(--react-oeg-secondary);
}

.react-oeg-course-page .react-btn-secondary:hover,
.react-oeg-course-page .react-btn-secondary:focus-visible {
  background-color: var(--react-oeg-secondary) !important;
  color: var(--react-oeg-primary) !important;
}

.react-btn-full {
  width: 100%;
}

.react-btn-icon {
  flex-shrink: 0;
}

.react-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* =====================================================
   Trust Bar
   ===================================================== */
.react-trust-bar {
  background-color: var(--react-oeg-gray-100);
  padding: var(--react-spacing-lg) var(--react-spacing-md);
  border-bottom: 1px solid var(--react-oeg-gray-200);
}

.react-trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--react-spacing-xl);
}

.react-trust-item {
  display: flex;
  align-items: center;
  gap: var(--react-spacing-sm);
  color: var(--react-oeg-gray-700);
}

.react-trust-icon {
  color: var(--react-oeg-primary);
}

.react-trust-text {
  font-size: 0.875rem;
  font-weight: 500;
}

/* =====================================================
   Forms
   ===================================================== */
.react-contact-form {
  max-width: 500px;
  margin: 0 auto;
  padding: var(--react-spacing-xl);
  background: var(--react-oeg-white);
  border-radius: var(--react-border-radius-lg);
  box-shadow: var(--react-shadow-lg);
}

.react-form-group {
  margin-bottom: var(--react-spacing-lg);
}

.react-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--react-oeg-gray-700);
  margin-bottom: var(--react-spacing-xs);
}

.react-required {
  color: var(--react-oeg-accent);
}

.react-form-input,
.react-form-textarea {
  width: 100%;
  padding: var(--react-spacing-sm) var(--react-spacing-md);
  font-size: 1rem;
  border: 1px solid var(--react-oeg-gray-300);
  border-radius: var(--react-border-radius-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.react-form-input:focus,
.react-form-textarea:focus {
  outline: none;
  border-color: var(--react-oeg-primary);
  box-shadow: 0 0 0 3px rgba(32, 79, 112, 0.1);
}

.react-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.react-form-success {
  margin-top: var(--react-spacing-md);
  padding: var(--react-spacing-md);
  background-color: #d1fae5;
  color: #065f46;
  border-radius: var(--react-border-radius-md);
  text-align: center;
}

.react-form-error {
  margin-top: var(--react-spacing-md);
  padding: var(--react-spacing-md);
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: var(--react-border-radius-md);
  text-align: center;
}

/* =====================================================
   Page Sections
   ===================================================== */
.react-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--react-oeg-black);
  margin-bottom: var(--react-spacing-lg);
}

.react-course-details,
.react-book-details,
.react-instance-details,
.react-service-details,
.react-landing-form-section {
  padding: var(--react-spacing-3xl) var(--react-spacing-lg);
  background: var(--react-oeg-white);
}

.react-course-container,
.react-book-container,
.react-instance-container,
.react-service-container,
.react-landing-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Course specific */
.react-course-meta,
.react-course-pricing {
  margin-bottom: var(--react-spacing-md);
}

.react-course-duration,
.react-course-price {
  font-size: 1.125rem;
  color: var(--react-oeg-gray-700);
}

/* Book specific */
.react-book-cover img {
  max-width: 300px;
  border-radius: var(--react-border-radius-lg);
  box-shadow: var(--react-shadow-lg);
}

.react-book-author {
  font-size: 1rem;
  color: var(--react-oeg-gray-500);
}

/* Instance specific */
.react-status-badge {
  display: inline-block;
  padding: var(--react-spacing-xs) var(--react-spacing-sm);
  border-radius: var(--react-border-radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.react-status-active {
  background-color: #d1fae5;
  color: #065f46;
}

.react-status-maintenance {
  background-color: #fef3c7;
  color: #92400e;
}

.react-status-offline {
  background-color: #fee2e2;
  color: #991b1b;
}

/* Service features */
.react-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.react-feature-item {
  padding: var(--react-spacing-sm) 0;
  padding-left: var(--react-spacing-lg);
  position: relative;
}

.react-feature-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--react-oeg-primary);
  font-weight: bold;
}

/* =====================================================
   Responsive Design
   ===================================================== */
@media (max-width: 768px) {
  .react-hero-title {
    font-size: 1.75rem;
  }

  .react-hero-subtitle {
    font-size: 1rem;
  }

  .react-trust-container {
    flex-direction: column;
    align-items: center;
  }

  .react-contact-form {
    padding: var(--react-spacing-lg);
  }
}

@media (min-width: 1024px) {
  .react-hero-title {
    font-size: 3rem;
  }

  .react-hero-subtitle {
    font-size: 1.5rem;
  }
}
/* End React source: src/styles/oeg-react.css */

/* React-managed source: src/styles/course-page.css */
/* =====================================================
   Course Page Styles
   All classes prefixed with 'react-course-' to avoid conflicts
   ===================================================== */

/* =====================================================
   Typography Alignment with oeg-custom-pages
   ===================================================== */
.react-oeg-course-page h1 {
  font-weight: 600;
}

.react-oeg-course-page h2 {
  font-weight: 700;
}

.react-oeg-course-page h3 {
  font-weight: 400;
}

.react-oeg-course-page h4 {
  font-weight: 600;
}

.react-oeg-course-page strong,
.react-oeg-course-page b {
  font-weight: 600;
}

/* =====================================================
   Course Hero Section
   ===================================================== */
.react-course-sticky-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #e6f0ff;
  border-bottom: 1px solid rgba(32, 79, 112, 0.2);
  box-shadow: 0 6px 6px rgba(18, 52, 77, 0.08);
}

.react-course-sticky-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 36px;
  padding: 8px 8px;
  font-weight: 600;
  color: #1b3c54;
}

.react-course-sticky-nav-link {
  text-decoration: none;
  color: inherit;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.react-course-sticky-nav-link:hover {
  background: rgba(32, 79, 112, 0.12);
  border-radius: 10px;
}

.react-course-sticky-nav-link.active {
  background: #1f5b7a;
  color: #fff;
  border-radius: 10px;
}

.react-course-hero {
  padding: 20px 20px 20px;
  background: linear-gradient(135deg, #f0f7ff 0%, #e2eeff 100%);
  text-align: left;
  min-height: 100vh;
}

.react-course-hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: nowrap;
}

.react-course-hero-copy {
  flex: 0 0 60%;
  max-width: 600px;
  padding: 0;
}

.react-course-hero-countdown-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.react-course-hero-countdown {
  background: #66666616;
  color: var(--react-oeg-primary, #204F70);
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
}

.react-course-hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.react-course-hero-badge {
  background: #204F70;
  color: #e8f2ff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(32, 79, 112, 0.12);
}

.react-course-hero-badge-muted {
  background: #204F70;
  color: #e8f2ff;
  text-transform: none;
  letter-spacing: 0;
}

.react-course-hero-title {
  font-size: 3rem;
  color: #1C1C1E;
  margin-bottom: 1rem;
  max-width: 900px;
  margin-top: 0;
  line-height: 1.2;
  font-weight: 600;
}

.react-course-hero-title strong {
  color: var(--react-oeg-primary, #204F70);
}

.react-course-hero-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.6;
}

.react-course-hero-cta {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.react-course-cta-subtext {
  display: block;
  font-size: 0.9rem;
  color: #666;
}

.react-course-cta-subtext a {
  color: var(--react-oeg-primary, #204F70);
  text-decoration: underline;
}

.react-course-cta-contact {
  font-size: 0.95rem;
  color: var(--react-oeg-primary, #204F70);
  font-weight: 600;
}

.react-contact-link {
  color: var(--react-oeg-accent, #FA4457) !important;
}

.react-course-last-updated {
  font-size: 0.85rem;
  color: #666;
  margin-top: 12px;
}

/* Hero Video Card */
.react-course-hero-video {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.react-course-hero-video-form {
  width: auto;
  flex: 0 0 40%;
  max-width: 460px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.react-course-video-caption-top {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--react-oeg-primary, #204F70);
  text-align: center;
  margin: 0;
}

.react-course-video-caption-bottom {
  font-size: 0.95rem;
  color: #555;
  text-align: center;
  line-height: 1.5;
  max-width: 440px;
  margin: 0;
}

.react-course-video-card {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #121212;
  display: block;
  text-decoration: none;
}

.react-course-video-card-empty {
  background: transparent;
  box-shadow: none;
}

.react-course-video-card-presto {
  background: transparent;
  padding: 0;
  aspect-ratio: auto;
  display: flex;
}

.react-course-video-card-presto > *,
.react-course-video-card-presto iframe,
.react-course-video-card-presto .presto-video-id {
  width: 100% !important;
  height: 100% !important;
  border: none;
  display: block;
}

.react-course-video-card-presto-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--react-oeg-primary, #204F70);
  font-weight: 600;
  font-size: 1rem;
  gap: 12px;
}

.react-course-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.react-course-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  gap: 12px;
  transition: background 0.2s ease;
}

.react-course-video-card:hover .react-course-video-overlay {
  background: rgba(0, 0, 0, 0.6);
}

/* Course Lead Form (shown when no video preview exists) */
.react-oeg-course-page .react-course-lead-form {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(224, 224, 224, 0.5);
  width: auto;
  max-width: 460px;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: left;
}

.react-oeg-course-page .react-course-form-title {
  font-size: 20px;
  font-weight: 700;
  color: #1c1c1e;
  margin-bottom: 16px;
  text-align: center;
}

.react-oeg-course-page .react-course-form {
  width: 100%;
  text-align: left;
}

.react-oeg-course-page .react-course-form *,
.react-oeg-course-page .react-course-form *::before,
.react-oeg-course-page .react-course-form *::after {
  box-sizing: border-box;
}

.react-oeg-course-page .react-course-form .form-group {
  margin-bottom: 6px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.react-oeg-course-page .react-course-form .form-label {
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  color: #1c1c1e;
  margin-bottom: 4px;
  text-align: left;
}

.react-oeg-course-page .react-course-form .form-label .required {
  color: #fa4457;
}

.react-oeg-course-page .react-course-form .form-label .optional {
  font-weight: 400;
  color: #999;
}

.react-oeg-course-page .react-course-form .form-input {
  width: 100%;
  padding: 10px 14px;
  font-size: 15px;
  font-family: 'OEG-Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1c1c1e;
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.react-oeg-course-page .react-course-form .form-input:focus {
  outline: none;
  background: #ffffff;
  border-color: #204f70;
  box-shadow: 0 0 0 3px rgba(32, 79, 112, 0.1);
}

.react-oeg-course-page .react-course-form .form-input::placeholder {
  color: #999;
}

.react-oeg-course-page .react-course-form .form-input.error {
  border-color: #fa4457;
  background: #fff5f5;
}

.react-oeg-course-page .react-course-form .form-error {
  display: block;
  font-size: 13px;
  color: #fa4457;
  margin-top: 4px;
  min-height: 16px;
  text-align: left;
}

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

.react-oeg-course-page .react-course-form .phone-country-code {
  font-weight: 600;
}

.react-oeg-course-page .react-course-form select.form-input {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-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") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 18px !important;
  padding-right: 40px;
}

.react-oeg-course-page .react-course-form 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") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 18px !important;
}

.react-oeg-course-page .react-course-form .form-submit-btn {
  width: 100%;
  min-height: 52px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #204f70;
  color: #ffffff;
  border: 2px solid #204f70;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.react-oeg-course-page .react-course-form .form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.react-oeg-course-page .react-course-form .form-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(32, 79, 112, 0.3);
}

.react-oeg-course-page .react-course-form .spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.react-oeg-course-page .react-course-form-success {
  text-align: center;
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.react-oeg-course-page .react-course-form-success svg {
  width: 48px;
  height: 48px;
  color: #28a745;
}

.react-oeg-course-page .react-course-form-success h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1c1c1e;
  margin: 0;
}

.react-oeg-course-page .react-course-form-success p {
  font-size: 15px;
  color: #666;
  margin: 0;
}

/* Hero Meta Bar */
.react-course-hero-meta-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.react-course-hero-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #1C1C1E;
}

.react-course-hero-meta-item svg {
  color: var(--react-oeg-primary, #204F70);
  margin-bottom: 8px;
}

.react-course-hero-meta-item strong {
  font-size: 1.2rem;
  display: block;
}

.react-course-hero-meta-link {
  text-decoration: underline;
}

.react-course-hero-meta-link:hover {
  color:  var(--react-oeg-primary, #204F70);
}

.react-course-hero-meta-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.react-course-hero-meta-links .react-course-hero-meta-link {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1C1C1E;
}

.react-course-hero-meta-links-inline {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.react-course-hero-meta-links-inline .react-course-hero-meta-link {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1C1C1E;
}

.react-course-hero-meta-link-row {
  display: flex;
  align-items: center;
  gap: 2px;
}

.react-course-hero-meta-link-label {
  font-size: 0.9rem;
  color: #666;
}

.react-course-hero-meta-item span {
  font-size: 0.9rem;
  color: #666;
}

/* Anchor spacing for sticky nav */
#details,
#curriculum,
#pricing,
#faq {
  scroll-margin-top: 90px;
}

/* =====================================================
   Course Sections
   ===================================================== */
.react-course-section {
  padding: 78px 20px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.react-course-section-title {
  text-align: left;
  margin-top: 0;
  margin-bottom: 32px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1C1C1E;
}

/* =====================================================
   Learning Objectives Checklist
   ===================================================== */
.react-course-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.react-course-checklist-item {
  padding-left: 30px;
  position: relative;
  font-size: 1.1rem;
  color: #444;
}

.react-course-checklist-item::before {
  content: '✓';
  color: #28a745;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* =====================================================
   Skills Section
   ===================================================== */
.react-course-skills-container {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.react-course-skill-chip {
  background: var(--react-oeg-secondary, #E2EEFF);
  color: var(--react-oeg-primary, #204F70);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* =====================================================
   Salary Outlook Section
   ===================================================== */
.react-course-salary-subheading {
  margin-top: -12px;
  margin-bottom: 10px;
  color: #204f70;
  font-size: 1.05rem;
  font-weight: 600;
}

.react-course-salary-description {
  color: #3f4b57;
  line-height: 1.7;
  margin-bottom: 20px;
}

.react-course-salary-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.react-course-salary-card {
  background: #ffffff;
  border: 1px solid #d7e3ef;
  border-radius: 12px;
  padding: 20px 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.react-course-country-flag {
  width: 92px;
  height: 62px;
  border: 1px solid #ced9e4;
  border-radius: 10px;
  overflow: hidden;
  background: #f4f8fc;
}

.react-course-country-flag--wide {
  height: 48px;
}

.react-course-country-flag svg {
  width: 100%;
  height: 100%;
  display: block;
}

.react-course-country-flag img {
  width: 100%;
  height: 100%;
  display: block;
}

.react-course-salary-country-name {
  margin: 12px 0 10px;
  color: #183a56;
  font-size: 1.4rem;
  font-weight: 600;
}

.react-course-salary-country-value {
  margin: 0;
  color: #23384a;
  font-size: 1rem;
  line-height: 1.5;
  min-height: 52px;
}

.react-course-salary-card-sources {
  margin-top: 8px;
  min-height: 20px;
}

.react-course-salary-card-sources a,
.react-course-salary-card-sources span {
  color: #0f5f99;
  font-weight: 600;
  text-decoration: none;
  margin-right: 4px;
}

.react-course-salary-card-sources a:hover {
  color: #0b4a78;
}

.react-course-salary-notes {
  margin-top: 18px;
  text-align: right;
}

.react-course-salary-info,
.react-course-salary-cert {
  margin: 0;
  color: #3f4b57;
  line-height: 1.6;
}

.react-course-salary-cert {
  margin-top: 6px;
  font-weight: 600;
}

/* =====================================================
   Dates and Timings Section
   ===================================================== */

/* Week Container */
.react-course-week-container {
  margin-bottom: 32px;
}

.react-course-week-title {
  margin: 0 0 16px 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--react-oeg-primary, #204F70);
}

/* Week Sessions Grid - displays sessions per week in columns */
.react-course-week-sessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

/* Legacy grid (kept for backward compatibility) */
.react-course-dates-timings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.react-course-session-card {
  background: #E8F2FF;
  border: 2px solid #E8F2FF;
  border-radius: 12px;
  padding: 14px 16px;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.react-course-session-title {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--react-oeg-primary, #204F70);
}

.react-course-session-time {
  margin: 0;
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.react-course-timezone-info {
  text-align: left;
  padding: 16px 0;
  border-top: 1px solid #e0e0e0;
}

.react-course-timezone-info p {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
  display: inline;
}

/* Timezone toggle - hyperlink style */
.react-course-timezone-toggle {
  background: none;
  border: none;
  padding: 0;
  color: var(--react-oeg-primary, #204F70);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s ease;
  display: inline;
}

.react-course-timezone-toggle:hover {
  color: #1a3d57;
  text-decoration: underline;
}

/* Calendar Subscribe Buttons */
.react-course-calendar-subscribe {
  margin: 0 0 24px;
  text-align: center;
}

.react-course-calendar-subscribe-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--react-oeg-primary, #204F70);
  margin: 0 0 8px;
}

.react-course-calendar-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.react-course-calendar-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  min-height: 44px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.react-course-calendar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.react-course-calendar-btn--apple {
  background: #da5350;
}

.react-course-calendar-btn--google {
  background: #4185f4;
}

.react-course-calendar-btn--outlook {
  background: #1576c8;
}

.react-course-calendar-icon {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.react-course-calendar-icon--apple {
  width: 20px;
  height: 20px;
}

.react-course-calendar-subscribe--boxed {
  background: var(--react-oeg-secondary, #E2EEFF);
  border-radius: 12px;
  padding: 14px 16px;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  text-align: left;
}

.react-course-calendar-subscribe--boxed .react-course-calendar-buttons {
  justify-content: flex-end;
}

.react-course-calendar-subscribe--boxed .react-course-calendar-btn {
  padding: 8px 16px;
  min-height: 36px;
  border-radius: 8px;
  gap: 8px;
}

@media (max-width: 768px) {
  .react-course-calendar-subscribe--boxed {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .react-course-calendar-subscribe--boxed .react-course-calendar-buttons {
    justify-content: flex-start;
  }
}

/* Loading and Error States */
.react-course-loading,
.react-course-error {
  text-align: center;
  padding: 40px 20px;
  border-radius: 12px;
  margin: 20px 0;
}

.react-course-loading {
  background: #f0f7ff;
  border: 2px dashed var(--react-oeg-primary, #204F70);
}

.react-course-loading p {
  margin: 0;
  color: var(--react-oeg-primary, #204F70);
  font-size: 1rem;
  font-weight: 600;
}

.react-course-error {
  background: #fff5f5;
  border: 2px solid #fecaca;
}

.react-course-error p {
  margin: 0;
  color: #991b1b;
  font-size: 1rem;
}

/* =====================================================
   Curriculum Accordion
   ===================================================== */
.react-course-curriculum-accordion {
  display: block;
}

.react-course-accordion-item {
  background: #FFFFFF !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  margin-bottom: 12px !important;
  transition: box-shadow 0.3s ease !important;
  border: none !important;
  box-shadow: none !important;
}

.react-course-accordion-item:hover {
  box-shadow: none !important;
}

.react-course-accordion-item.active {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.react-course-curriculum-accordion .react-course-accordion-header,
button.react-course-accordion-header {
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 24px !important;
  background: var(--react-oeg-secondary, #E2EEFF) !important;
  border: none !important;
  border-radius: 0 !important;
  text-align: left !important;
  cursor: pointer !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #1C1C1E !important;
  transition: background 0.2s ease, color 0.2s ease !important;
  font-family: inherit !important;
  text-decoration: none !important;
  appearance: none !important;
  box-shadow: none !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

.react-course-curriculum-accordion .react-course-accordion-header:hover,
button.react-course-accordion-header:hover {
  background: var(--react-oeg-primary, #204F70) !important;
  color: #FFFFFF !important;
}

.react-course-accordion-item.active .react-course-accordion-header {
  background: var(--react-oeg-primary, #204F70) !important;
  color: #FFFFFF !important;
}

.react-course-accordion-icon {
  flex-shrink: 0 !important;
  transition: transform 0.2s ease !important;
}

.react-course-accordion-icon-open {
  transform: rotate(180deg) !important;
}

.react-course-accordion-content {
  padding: 0 !important;
  background: white !important;
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.3s ease, padding 0.3s ease !important;
  border: none !important;
  box-shadow: none !important;
}

.react-course-accordion-content-open {
  padding: 24px !important;
  max-height: 10000px !important;
}

/* Curriculum Table */
.react-course-curriculum-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.react-course-curriculum-table th,
.react-course-curriculum-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #ddd;
}

.react-course-curriculum-table th {
  background: var(--react-oeg-secondary, #E2EEFF);
  font-weight: 600;
}

.react-course-curriculum-table th:last-child {
  width: 200px;
}

.react-course-curriculum-list {
  margin-left: 24px;
  margin-bottom: 0;
  line-height: 1.8;
  list-style-type: disc;
  list-style-position: inside;
}

.react-course-curriculum-list li {
  margin-bottom: 8px;
}

.react-course-curriculum-content {
  line-height: 1.6;
  margin: 0;
}

.react-course-curriculum-content ul {
  list-style-position: outside;
  padding-left: 20px;
  margin-left: 0;
}

.react-course-curriculum-content li {
  break-inside: avoid;
  padding-left: 6px;
}

/* =====================================================
   Pricing Section
   ===================================================== */
.react-course-pricing-section {
  padding: 90px 20px;
  background: #f4f6fb;
  isolation: isolate;
  font-size: 16px;
  line-height: 1.6;
}

.react-course-pricing-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
  overflow: visible;
}

.react-course-pricing-header-section {
  text-align: center;
  margin-bottom: 0;
}

.react-course-pricing-title {
  font-size: 2.6rem;
  color: #15374e;
  margin-bottom: 18px;
  font-weight: 700;
}

.react-course-pricing-subtitle-text {
  font-size: 1.15rem;
  color: #5c6773;
  max-width: 760px;
  margin: 0 auto;
}

.react-course-pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-template-rows: auto auto auto auto;
  column-gap: 28px;
  row-gap: 0;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}



.react-course-pricing-card {
  background: #fff;
  border-radius: 28px;
  padding: 48px 36px;
  box-shadow: 0 20px 45px rgba(17, 43, 63, 0.12);
  border: 2px solid var(--react-oeg-primary, #204f70);
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  box-sizing: border-box;
}


.react-course-pricing-card-highlighted {
  background: #e3efff;
  box-shadow: 0 28px 65px rgba(18, 52, 77, 0.2);
}

.react-course-pricing-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--react-oeg-accent, #fa4457);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(250, 68, 87, 0.35);
}

.react-course-pricing-header {
  margin-bottom: 6px;
  text-align: center;
}

.react-course-pricing-name {
  font-size: 2rem;
  color: #102639;
  margin-bottom: 8px;
  margin-top: 0;
  line-height: 1.6;
}

.react-course-pricing-subtitle {
  color: #6b7280;
  font-size: 1rem;
}

.react-course-pricing-price {
  text-align: center;
  margin: 22px auto 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(18, 52, 77, 0.2);
  max-width: 260px;
  min-height: 155px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.react-course-pricing-old {
  font-size: 1.4rem;
  color: #9aa3ad;
  text-decoration: line-through;
  display: block;
  margin-bottom: 6px;
}

.react-course-pricing-amount {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--react-oeg-primary, #204f70);
  display: block;
  line-height: 1.1;
}

.react-course-pricing-inr {
  font-size: 1.1rem;
  color: #4b5b69;
  display: block;
  margin-top: 6px;
}

.react-course-pricing-period {
  color: #6d7a86;
  font-size: 1rem;
  display: block;
  margin-top: 6px;
}

.react-course-pricing-features {
  align-self: stretch;
}

.react-course-pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.react-course-pricing-feature {
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: #1f2a37;
}

.react-course-pricing-feature-excluded {
  opacity: 0.6;
}

.react-course-pricing-icon-check {
  color: #1d9c5a;
  flex-shrink: 0;
}

.react-course-pricing-icon-x {
  color: var(--react-oeg-accent, #fa4457);
  flex-shrink: 0;
}

.react-course-pricing-footer {
  margin-top: 32px;
  text-align: center;
}

.react-course-pricing-footer .react-btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.react-course-pricing-footer .react-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(24, 63, 94, 0.2);
}

.react-course-pricing-cta-note {
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--react-oeg-text-muted, #6b7280);
  line-height: 1.4;
}

/* Contact CTA */
.react-course-contact-cta {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px;
  text-align: center;
  background: #E8F2FF;
  border-radius: 28px;
  box-shadow: 0 20px 45px rgba(31, 74, 118, 0.15);
  border: 1px solid rgba(32, 79, 112, 0.1);
  position: relative;
  z-index: 1;
}

.react-course-contact-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #0F3554;
  margin-top: 0;
  text-wrap: balance;
}

.react-course-contact-cta p {
  font-size: 1.1rem;
  color: #1C1C1E;
  margin-bottom: 20px;
  text-wrap: balance;
}

.react-course-bundle-offer {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 32px;
  text-align: center;
  background: linear-gradient(180deg, #fff8e8 0%, #fff2cf 100%);
  border: 1px solid rgba(182, 121, 19, 0.18);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(135, 95, 24, 0.12);
}

.react-course-bundle-offer h3 {
  margin: 0 0 10px;
  font-size: 1.7rem;
  color: #5e3b00;
}

.react-course-bundle-offer p {
  margin: 0 0 18px;
  font-size: 1.05rem;
  color: #3b2c12;
}

.react-course-bundle-offer-price {
  font-size: 1.08rem;
  color: #4b3210;
}

.react-course-bundle-offer-price strong {
  color: #5e3b00;
}

/* =====================================================
   FAQ Section
   ===================================================== */
.react-course-faq-accordion {
  display: block !important;
}

.react-course-faq-item {
  background: #FFFFFF !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  margin-bottom: 12px !important;
  transition: box-shadow 0.3s ease !important;
  border: none !important;
  box-shadow: none !important;
}

.react-course-faq-item:hover {
  box-shadow: none !important;
}

.react-course-faq-item.active {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.react-course-faq-accordion .react-course-faq-question,
button.react-course-faq-question {
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 24px !important;
  background: var(--react-oeg-secondary, #E2EEFF) !important;
  border: none !important;
  border-radius: 0 !important;
  text-align: left !important;
  cursor: pointer !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #1C1C1E !important;
  transition: background 0.2s ease, color 0.2s ease !important;
  font-family: inherit !important;
  text-decoration: none !important;
  appearance: none !important;
  box-shadow: none !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

.react-course-faq-accordion .react-course-faq-question:hover,
button.react-course-faq-question:hover {
  background: var(--react-oeg-primary, #204F70) !important;
  color: #FFFFFF !important;
}

.react-course-faq-item.active .react-course-faq-question {
  background: var(--react-oeg-primary, #204F70) !important;
  color: #FFFFFF !important;
}

.react-course-faq-icon {
  flex-shrink: 0 !important;
  transition: transform 0.2s ease !important;
}

.react-course-faq-icon-open {
  transform: rotate(180deg) !important;
}

.react-course-faq-answer {
  padding: 0 !important;
  background: white !important;
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.3s ease, padding 0.3s ease !important;
  border: none !important;
  box-shadow: none !important;
}

.react-course-faq-answer-open {
  padding: 24px !important;
  max-height: 500px !important;
}

.react-course-faq-answer p {
  margin: 0 !important;
  line-height: 1.6 !important;
  color: #555 !important;
}

/* =====================================================
   Related Courses
   ===================================================== */
.react-course-related-intro {
  color: #666;
  max-width: none;
  width: 100%;
  margin-bottom: 28px;
}

.react-course-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 281.66px), 281.66px));
  gap: 24px;
  justify-content: flex-start;
}

.react-course-related-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  position: relative;
  text-align: center;
  min-height: 205.6px;
  aspect-ratio: 281.66 / 205.6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.react-course-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  border-color: #E2EEFF;
}

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

.react-course-related-tag {
  display: inline-block;
  margin: 12px auto 10px;
  padding: 4px 12px;
  background: #FA4457;
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.react-course-related-icon {
  margin: 12px auto 20px;
}

.react-course-related-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #204F70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.react-course-related-title {
  margin: 12px 0 6px;
  font-size: 1.1rem;
}

.react-course-related-title a {
  color: #1C1C1E;
  font-weight: 600;
  text-decoration: none;
}

.react-course-related-title a:hover {
  text-decoration: underline;
}

.react-course-related-duration {
  color: #204F70;
  font-weight: 600;
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* =====================================================
   Footer CTA
   ===================================================== */
.react-course-footer-cta {
  background: linear-gradient(135deg, #f0f7ff 0%, #e2eeff 100%);
  color: #1C1C1E;
  padding: 90px 20px;
  text-align: center;
}

.react-course-footer-cta h2 {
  margin-bottom: 16px;
  font-size: 2.4rem;
  color: #0f2b48;
  margin-top: 0;
}

.react-course-footer-cta p {
  font-size: 1.1rem;
  color: #2f3c4b;
  margin: 0 auto 32px;
  max-width: 600px;
}

.react-course-footer-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.react-course-footer-buttons .react-btn {
  min-width: unset;
}

.react-course-footer-buttons .react-btn-secondary:hover,
.react-course-footer-buttons .react-btn-secondary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(24, 63, 94, 0.18);
}

.react-course-footer-links {
  margin-top: 0;
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 0.9rem;
  color: #1f2c3b;
}

.react-course-footer-links a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.react-course-footer-links a:hover {
  text-decoration: underline;
}

/* =====================================================
   Button Variants
   ===================================================== */
.react-btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.react-btn-success {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #2BC05C;
  color: #FFFFFF;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 12px 20px rgba(43, 192, 92, 0.35);
  transition: background 0.2s ease;
}

.react-btn-success:hover {
  background: #24a34e;
}

/* =====================================================
   Responsive Design
   ===================================================== */
@media (max-width: 1024px) {
  .react-course-hero-container {
    gap: 40px;
  }

  .react-course-hero-copy {
    flex: 0 0 55%;
  }

  .react-course-hero-video-form {
    flex: 0 0 45%;
  }

  .react-oeg-course-page .react-course-lead-form {
    padding: 28px;
  }

  .react-course-salary-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .react-course-related-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 266px), 266px));
  }

  .react-course-related-card {
    min-height: 209.59px;
    aspect-ratio: 266 / 209.59;
  }
}

@media (max-width: 768px) {
  .react-course-hero-container {
    flex-direction: column;
    text-align: center;
    flex-wrap: wrap;
  }

  .react-course-hero-copy {
    text-align: center;
    flex: 1 1 100%;
    max-width: 100%;
  }

  .react-course-hero-video-empty {
    display: none;
  }

  .react-course-hero-video-form {
    flex: 1 1 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .react-course-hero-badges {
    justify-content: center;
  }

  .react-course-hero-cta {
    align-items: center;
    text-align: center;
  }

  .react-course-video-card {
    min-height: 260px;
  }

  .react-course-salary-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .react-course-salary-notes {
    text-align: left;
  }

  .react-course-related-grid {
    grid-template-columns: 1fr;
  }

  .react-course-related-card {
    width: 100%;
    min-height: 209.59px;
    aspect-ratio: auto;
  }
}

@media (max-width: 768px) {
  .react-course-sticky-nav {
    display: none;
  }

  .react-course-hero-countdown {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .react-course-hero-title {
    font-size: 2rem;
  }

  .react-course-hero-subtitle {
    font-size: 1rem;
  }

  .react-course-hero-meta-bar {
    gap: 30px;
  }

  .react-course-pricing-cards {
    grid-template-columns: 1fr;
  }

  .react-course-section-title {
    font-size: 1.5rem;
  }

  .react-course-footer-cta h2 {
    font-size: 1.75rem;
  }

  .react-course-footer-buttons .react-btn {
    min-width: unset;
  }
}
/* End React source: src/styles/course-page.css */
/* === REACT-MANAGED END === */
