/* Course Page Styles */

/* Header matches contact page - plain white background */
#header-container {
  background: #ffffff;
  width: 100%;
}

.nav-container {
  background: #ffffff;
  margin: 0;
}



/* Header Navigation */
.course-header {
  background-color: transparent;
  padding: 0;
  position: relative;
}


/* Support both old and new class names */
.course-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Hamburger menu styles for course header */
.course-header .hamburger-menu,
.course-nav .hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  flex-shrink: 0;
}

@media (min-width: 768px) {

  .course-header .hamburger-menu,
  .course-nav .hamburger-menu {
    display: none;
  }
}

.course-header .hamburger-line,
.course-nav .hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #003a5b;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.course-header .hamburger-menu.active .hamburger-line:nth-child(1),
.course-nav .hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.course-header .hamburger-menu.active .hamburger-line:nth-child(2),
.course-nav .hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.course-header .hamburger-menu.active .hamburger-line:nth-child(3),
.course-nav .hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Support old class names */
.course-logo-container {
  display: flex;
  align-items: center;
}

.course-logo {
  height: 50px;
  width: auto;
}

/* Navigation menu styles for course header */
.course-header .nav-menu,
.course-nav-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  gap: 16px;
  list-style: none;
  margin-top: 16px;
  z-index: 1000;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.course-header .nav-menu.active,
.course-nav-menu.active {
  display: flex;
}

@media (min-width: 640px) {

  .course-header .nav-menu,
  .course-nav-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: static;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
    gap: 12px;
    max-height: none;
    overflow-y: visible;
  }
}

@media (min-width: 768px) {

  .course-header .nav-menu,
  .course-nav-menu {
    gap: 37.5px;
  }
}

/* Navigation link styles for course header - inherits from main styles.css */
.course-header .nav-link,
.course-nav-link {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 500;
  color: #003a5b;
  text-decoration: none;
  /* Font size inherits from main styles.css: clamp(1rem, 0.9vw + 0.9rem, 1.125rem) */
  letter-spacing: 0;
  line-height: 1.5;
  transition: opacity 0.2s;
  padding: 8px 0;
  display: block;
}

@media (min-width: 640px) {

  .course-header .nav-link,
  .course-nav-link {
    padding: 0;
    display: inline;
  }
}

.course-header .nav-link:hover,
.course-nav-link:hover {
  opacity: 0.8;
}

/* Logo container styles for course header - inherits from main styles.css */
.course-header .logo-container {
  flex: 0 1 auto;
  min-width: 0;
  max-width: calc(100% - 60px);
}

/* Logo and tagline inherit styles from main styles.css */


/* Hero Section */
.course-hero {
  background-color: #fafafa;
  padding: 60px 20px;
  overflow-x: hidden;
  /* Prevent horizontal scroll from scaled image */
}

.course-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 968px) {
  .course-hero-container {
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
  }
}

.course-hero-title {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: #003a5b;
  margin-bottom: 20px;
}

@media (min-width: 640px) {
  .course-hero-title {
    font-size: 40px;
  }
}

@media (min-width: 768px) {
  .course-hero-title {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .course-hero-title {
    font-size: 56px;
  }
}

.course-hero-description {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .course-hero-description {
    font-size: 17px;
  }
}

.course-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.course-stars {
  color: #ffa500;
  font-size: 20px;
  letter-spacing: 2px;
}

.course-proof-text {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 600;
  color: #374151;
  font-size: 15px;
}

@media (min-width: 768px) {
  .course-proof-text {
    font-size: 16px;
  }
}

.course-hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 640px) {
  .course-hero-buttons {
    flex-direction: row;
    gap: 20px;
  }
}

.course-btn-primary {
  background-color: #22c55e;
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s;
}

.course-btn-primary i {
  font-size: 14px;
}

.course-btn-primary:hover {
  background-color: #16a34a;
}

.course-btn-secondary {
  background-color: #233b5c;
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.course-btn-secondary:hover {
  background-color: #1a2d45;
}

/* Hero Image Wrapper - Responsive */
.course-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Hero Image - Mobile First */
.hero-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: contain;
  /* Improve image rendering quality */
  image-rendering: auto;
  image-rendering: -webkit-optimize-contrast;
  -ms-interpolation-mode: bicubic;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* Tablet - Medium Screens */
@media (min-width: 640px) {
  .hero-img {
    max-width: 750px;
    border-radius: 16px;
  }
}

/* Desktop - Large Screens */
@media (min-width: 968px) {
  .course-hero-image {
    justify-content: center;
    padding-left: 0;
  }

  .hero-img {
    max-width: 100%;
    width: 100%;
    transform: scale(1.0);
  }
}

/* Extra Large Screens */
@media (min-width: 1200px) {
  .hero-img {
    max-width: 100%;
    width: 100%;
    transform: scale(1.05);
  }
}


/* Course Container */
.course-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Course Overview Section */
.course-overview {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}

.course-overview .course-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.course-section-label {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #059669;
  background-color: #d1fae5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 24px;
}

.course-section-title {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  color: #003a5b;
  margin-bottom: 20px;
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .course-section-title {
    font-size: 32px;
  }
}

@media (min-width: 768px) {
  .course-section-title {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .course-section-title {
    font-size: 44px;
  }
}

.course-section-text {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #64748b;
  max-width: 900px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .course-section-text {
    font-size: 18px;
  }
}

/* What You'll Gain Section */
.course-gain {
  padding: 40px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.course-gain::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 58, 91, 0.1), transparent);
}

.gain-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.gain-title {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  background: linear-gradient(135deg, #003a5b 0%, #0066a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.gain-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #2EE08F, #22c55e);
  border-radius: 2px;
}

.gain-subtitle {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.gain-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.gain-benefit-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out backwards;
}

.gain-benefit-card:nth-child(1) {
  animation-delay: 0.1s;
}

.gain-benefit-card:nth-child(2) {
  animation-delay: 0.2s;
}

.gain-benefit-card:nth-child(3) {
  animation-delay: 0.3s;
}

.gain-benefit-card:nth-child(4) {
  animation-delay: 0.4s;
}

.gain-benefit-card:nth-child(5) {
  animation-delay: 0.5s;
}

.gain-benefit-card:nth-child(6) {
  animation-delay: 0.6s;
}

.gain-benefit-card:nth-child(7) {
  animation-delay: 0.7s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gain-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gain-benefit-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.95);
}

.gain-benefit-card:hover::before {
  opacity: 0.3;
}

.gain-benefit-card[data-color="orange"]:hover {
  box-shadow: 0 20px 40px rgba(251, 146, 60, 0.2), 0 8px 16px rgba(251, 146, 60, 0.1);
}

.gain-benefit-card[data-color="orange"]:hover::before {
  background: linear-gradient(90deg, transparent, #fb923c, transparent);
}

.gain-benefit-card[data-color="green"]:hover {
  box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2), 0 8px 16px rgba(34, 197, 94, 0.1);
}

.gain-benefit-card[data-color="green"]:hover::before {
  background: linear-gradient(90deg, transparent, #22c55e, transparent);
}

.gain-benefit-card[data-color="light-blue"]:hover {
  box-shadow: 0 20px 40px rgba(96, 165, 250, 0.2), 0 8px 16px rgba(96, 165, 250, 0.1);
}

.gain-benefit-card[data-color="light-blue"]:hover::before {
  background: linear-gradient(90deg, transparent, #60a5fa, transparent);
}

.gain-benefit-card[data-color="dark-blue"]:hover {
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2), 0 8px 16px rgba(59, 130, 246, 0.1);
}

.gain-benefit-card[data-color="dark-blue"]:hover::before {
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.gain-benefit-card[data-color="purple"]:hover {
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2), 0 8px 16px rgba(168, 85, 247, 0.1);
}

.gain-benefit-card[data-color="purple"]:hover::before {
  background: linear-gradient(90deg, transparent, #a855f7, transparent);
}

.gain-benefit-card[data-color="pink"]:hover {
  box-shadow: 0 20px 40px rgba(236, 72, 153, 0.2), 0 8px 16px rgba(236, 72, 153, 0.1);
}

.gain-benefit-card[data-color="pink"]:hover::before {
  background: linear-gradient(90deg, transparent, #ec4899, transparent);
}

.gain-benefit-card[data-color="teal"]:hover {
  box-shadow: 0 20px 40px rgba(20, 184, 166, 0.2), 0 8px 16px rgba(20, 184, 166, 0.1);
}

.gain-benefit-card[data-color="teal"]:hover::before {
  background: linear-gradient(90deg, transparent, #14b8a6, transparent);
}

.benefit-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.gain-benefit-card:hover .benefit-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.gain-benefit-card[data-color="orange"] .benefit-icon-wrapper {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
}

.gain-benefit-card[data-color="green"] .benefit-icon-wrapper {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.gain-benefit-card[data-color="light-blue"] .benefit-icon-wrapper {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
}

.gain-benefit-card[data-color="dark-blue"] .benefit-icon-wrapper {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.gain-benefit-card[data-color="purple"] .benefit-icon-wrapper {
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.gain-benefit-card[data-color="pink"] .benefit-icon-wrapper {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.gain-benefit-card[data-color="teal"] .benefit-icon-wrapper {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.benefit-icon {
  font-size: 32px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gain-benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-text {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #334155;
  margin: 0;
  flex: 1;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.gain-benefit-card:hover .benefit-text {
  color: #1e293b;
}

.gain-benefit-card-wide {
  grid-column: 1 / -1;
}

/* Responsive Design */
@media (min-width: 640px) {
  .course-gain {
    padding: 60px 30px;
  }

  .gain-title {
    font-size: 36px;
  }

  .gain-subtitle {
    font-size: 20px;
  }

  .gain-benefits-grid {
    gap: 28px;
  }

  .gain-benefit-card {
    padding: 28px;
  }

  .benefit-text {
    font-size: 17px;
  }
}

@media (min-width: 768px) {
  .course-gain {
    padding: 80px 40px;
  }

  .gain-title {
    font-size: 42px;
  }

  .gain-subtitle {
    font-size: 22px;
  }

  .gain-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .gain-benefit-card-wide {
    grid-column: 1 / -1;
  }

  .benefit-icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .benefit-icon {
    font-size: 36px;
  }
}

@media (min-width: 1024px) {
  .course-gain {
    padding: 100px 60px;
  }

  .gain-title {
    font-size: 48px;
  }

  .gain-header {
    margin-bottom: 60px;
  }

  .gain-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }

  .gain-benefit-card {
    padding: 32px;
  }

  .benefit-text {
    font-size: 18px;
  }
}

@media (min-width: 1280px) {
  .gain-benefits-grid {
    gap: 40px;
  }

  .gain-benefit-card {
    padding: 36px;
  }
}

@media (min-width: 1536px) {
  .course-gain {
    padding: 120px 80px;
  }
}

@media (max-width: 480px) {
  .course-gain {
    padding: 30px 16px;
  }

  .gain-title {
    font-size: 28px;
  }

  .gain-subtitle {
    font-size: 16px;
  }

  .gain-benefits-grid {
    gap: 20px;
  }

  .gain-benefit-card {
    padding: 20px;
  }

  .benefit-icon-wrapper {
    width: 56px;
    height: 56px;
  }

  .benefit-icon {
    font-size: 24px;
  }

  .benefit-text {
    font-size: 15px;
  }
}

@media (min-width: 1920px) {
  .gain-image-container {
    max-width: 1800px;
  }
}

/* Course Modules Section */
.course-modules {
  padding: 80px 0;
  background-color: #ffffff;
}

.course-modules-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.course-modules-title {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 700;
  font-size: 36px;
  color: #003a5b;
  margin: 0;
}

.course-modules-icon {
  font-size: 24px;
  color: #003a5b;
  opacity: 0.8;
}

.course-modules-description {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #627084;
  margin-bottom: 40px;
  max-width: 900px;
}

.course-modules-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.module-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.module-item h3 {
  margin: 0;
  padding: 0;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.module-item h3 a {
  color: #8b5cf6;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.module-item h3 a:hover {
  color: #7c3aed;
}

.module-item h3 a:not([href*="javascript"]) {
  cursor: pointer;
}

.module-item p {
  margin: 4px 0 0 0;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}

.course-module-item {
  background-color: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
}

.module-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.module-header:hover {
  background-color: #f0f7ff;
}

.module-title {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 600;
  font-size: 20px;
  color: #003a5b;
}

.module-arrow {
  font-size: 20px;
  color: #008a8a;
  transition: transform 0.2s;
}

.course-module-item.active .module-arrow {
  transform: rotate(180deg);
}

.module-content {
  padding: 0 24px 20px;
  display: none;
}

.course-module-item.active .module-content {
  display: block;
}

.module-view-btn,
a.module-view-btn {
  display: inline-block;
  background-color: #008a8a;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s;
  text-decoration: none;
  text-align: center;
}

.module-view-btn:hover,
a.module-view-btn:hover {
  background-color: #007070;
  color: #ffffff;
  text-decoration: none;
}

.module-access-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 16px;
}

.module-access-text {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #374151;
}

.module-continue-button {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background-color: #8b5cf6;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  text-decoration: none;
}

.module-continue-button:hover {
  background-color: #7c3aed;
  transform: translateY(-1px);
}

.module-continue-button:active {
  transform: translateY(0);
}

/* Transform Your Workday Section */
.course-transform {
  padding: 80px 0;
  background-color: #ffffff;
}

.course-transform-title {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 700;
  font-size: 36px;
  color: #1f2937;
  margin-bottom: 60px;
  text-align: center;
}

@media (min-width: 768px) {
  .course-transform-title {
    font-size: 44px;
  }
}

.course-transform-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 968px) {
  .course-transform-content {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.transform-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.transform-benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 16px;
  color: #1f2937;
  padding: 16px 20px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: box-shadow 0.2s;
}

.transform-benefit-item:hover {
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
}

.transform-benefit-icon {
  font-size: 18px;
  color: #008a8a;
  flex-shrink: 0;
}

.check-icon {
  width: 28px;
  height: 28px;
  background-color: #22c55e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.transform-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.transform-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

/* Pricing & Enrollment Section */
.course-pricing {
  padding: 80px 0;
  background-color: #ffffff;
}

.course-pricing-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.course-pricing-title {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 700;
  font-size: 36px;
  color: #003a5b;
}

.course-pricing-icon {
  font-size: 28px;
}

.pricing-card {
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f7ff 100%);
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.pricing-icon {
  font-size: 32px;
}

.pricing-card-title {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 700;
  font-size: 28px;
  color: #003a5b;
}

.pricing-inclusions {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 16px;
  color: #627084;
  margin-bottom: 24px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
}

.pricing-current {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 700;
  font-size: 48px;
  color: #003a5b;
}

.pricing-original {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 24px;
  color: #999;
  text-decoration: line-through;
}

.pricing-badge {
  display: inline-block;
  background-color: #ff6b35;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 30px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 16px;
  color: #003a5b;
}

.pricing-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 640px) {
  .pricing-buttons {
    flex-direction: row;
  }
}

.pricing-btn-primary {
  background-color: #22c55e;
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s;
  flex: 1;
}

.pricing-btn-primary:hover {
  background-color: #16a34a;
}

.pricing-btn-secondary {
  background-color: #233b5c;
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
  flex: 1;
}

.pricing-btn-secondary:hover {
  background-color: #1a2d45;
}

/* FAQ Section */
.course-faq {
  padding: 80px 0;
  background-color: #f8fafc;
}

.course-faq-title {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 700;
  font-size: 36px;
  color: #003a5b;
  margin-bottom: 40px;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.faq-question:hover {
  background-color: #f8fafc;
}

.faq-question span:first-child {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #003a5b;
}

.faq-icon {
  font-size: 24px;
  color: #008a8a;
  font-weight: bold;
  transition: transform 0.2s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Footer */
.course-footer {
  background-color: #233b5c;
  color: #ffffff;
  padding: 60px 0 30px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.footer-link {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.2s;
}

.footer-link:hover {
  opacity: 0.7;
}

.footer-separator {
  color: #ffffff;
  opacity: 0.5;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-contact {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
}

.footer-contact-item {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 16px;
  color: #ffffff;
}

.footer-contact-item strong {
  margin-right: 8px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 14px;
  color: #ffffff;
  opacity: 0.8;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal-link {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-legal-link:hover {
  opacity: 1;
}

.btn-icon {
  width: 16px;
  height: 16px;
}

/* LMS Progress */
.lms-progress {
  margin: 24px 0;
}

.lms-progress-track {
  width: 100%;
  height: 10px;
  background: #e6f2f2;
  border-radius: 999px;
  overflow: hidden;
}

.lms-progress-bar {
  height: 10px;
  width: 0%;
  background: #12a39c;
  transition: width .2s ease;
}

.lms-progress-label {
  margin-top: 8px;
  font-size: 14px;
  color: #0a3636;
}

/* Lesson list */
.lesson-list {
  list-style: none;
  padding-left: 0;
  margin: 16px 0 0 24px;
}

.lesson-row {
  display: grid;
  grid-template-columns: 24px 32px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eef5f5;
  transition: background-color 0.2s;
}

.lesson-row:hover {
  background-color: #f9fafb;
  padding-left: 8px;
  padding-right: 8px;
  margin-left: -8px;
  margin-right: -8px;
  border-radius: 6px;
}

.lesson-row:last-child {
  border-bottom: none;
}

.lesson-complete {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #22c55e;
}

.lesson-row i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #d1fae5;
  color: #22c55e;
  font-size: 14px;
}

.lesson-row i.fa-circle-play {
  background-color: #d1fae5;
  color: #22c55e;
}

.lesson-row i.fa-file-lines {
  background-color: #d1fae5;
  color: #22c55e;
}

.lesson-title {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #003a5b;
  line-height: 1.4;
}

.lesson-meta {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 13px;
  color: #9ca3af;
  white-space: nowrap;
}

/* New Course Detail Layout */
.course-detail-layout {
  background-color: #ffffff;
  padding: 18px;
  min-height: calc(100vh - 200px);
}

@media (min-width: 768px) {
  .course-detail-layout {
    padding: 60px 24px;
  }
}

@media (min-width: 1024px) {
  .course-detail-layout {
    padding: 60px 32px;
  }
}

.course-detail-container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 486px 1fr;
  gap: 26px;
}

@media (min-width: 1280px) {
  .course-detail-container {
    max-width: 1800px;
    grid-template-columns: 400px 1fr;
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .course-detail-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Left Sidebar - SVG Design Match */
.course-sidebar {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 15.6px;
  padding: 0;
  height: fit-content;
  position: sticky;
  top: 100px;
  box-shadow: none;
  min-width: 0;
  width: 100%;
  border: 0.8px solid #E5E7EB;
  overflow: hidden;
}

@media (min-width: 1280px) {
  .course-sidebar {
    padding: 32px;
  }
}

@media (max-width: 1024px) {
  .course-sidebar {
    position: relative;
    top: 0;
  }
}

.sidebar-title {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 700;
  font-size: 20px;
  color: #003A5B;
  margin: 0;
  padding: 24px 24px 20px;
  border-bottom: none;
  background: #003A5B;
  color: #ffffff;
  border-radius: 8px 8px 0 0;
}

.courses-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.course-sidebar-item {
  padding: 16px 24px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #627084;
  background-color: rgba(230, 235, 239, 0.3);
  border: none;
  border-top: 0.8px solid #E6EBEF;
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin: 0;
}

.course-sidebar-item:first-of-type {
  border-top: none;
}

.course-sidebar-title {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}

.kajabi-badge-sidebar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #065f46;
  font-size: 10px;
  flex-shrink: 0;
  margin-left: auto;
  transition: transform 0.2s ease;
}

.course-sidebar-item:hover .kajabi-badge-sidebar {
  transform: scale(1.1);
}

.course-sidebar-item.active .kajabi-badge-sidebar {
  background: linear-gradient(135deg, #a7f3d0 0%, #6ee7b7 100%);
  color: #065f46;
}

.course-sidebar-item:hover {
  background-color: #f8f9fa;
  color: #003a5b;
}

.course-sidebar-item.active {
  background-color: #003a5b;
  color: #ffffff;
  font-weight: 600;
}

/* Main Content Area */
.course-main-content {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

@media (max-width: 768px) {
  .course-main-content {
    padding: 24px;
  }
}

.course-header-section {
  margin-bottom: 0;
  padding: 0 0 0 0;
  border-bottom: none;
  background: rgba(5, 80, 179, 0.05);
  border-radius: 12px;
  border: 0.5px solid rgba(5, 80, 179, 0.2);
  padding: 24px;
  margin-bottom: 24px;
}

.course-main-title {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 700;
  font-size: 36px;
  color: #003a5b;
  margin: 0 0 16px 0;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .course-main-title {
    font-size: 48px;
  }
}

.kajabi-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #065f46;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  margin-left: 8px;
}

.kajabi-title-badge i {
  font-size: 0.7rem;
}

.course-price-section {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.course-price-current {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 700;
  font-size: 32px;
  color: #003A5B;
}

.course-price-original {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 24px;
  color: #9ca3af;
  text-decoration: line-through;
}

/* Course Info Sections - SVG Design Match */
.course-info-section {
  display: flex;
  gap: 18px;
  margin-bottom: 0;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  border-left: none;
  position: relative;
}

.course-info-section:not(:last-child) {
  margin-bottom: 44px;
}

.section-icon {
  width: 18px;
  height: 18px;
  background-color: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0550B3;
  font-size: 0;
  flex-shrink: 0;
  position: relative;
}

.section-icon i {
  display: none;
}

.section-icon::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.67px solid #0550B3;
  position: absolute;
  box-sizing: border-box;
}

.section-icon::after {
  content: '';
  width: 5px;
  height: 9px;
  border-right: 1.67px solid #0550B3;
  border-bottom: 1.67px solid #0550B3;
  transform: rotate(45deg);
  position: absolute;
  top: 4px;
  left: 6px;
  z-index: 1;
}

.section-content {
  flex: 1;
  background: transparent;
  padding: 0;
}

.section-title {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 700;
  font-size: 20px;
  color: #003A5B;
  margin: 0 0 12px 0;
}

.section-text {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 16px;
  color: #627084;
  line-height: 1.6;
  margin: 0;
  padding-left: 0;
}

.use-cases-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 0;
}

.use-cases-list li {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 16px;
  color: #627084;
  line-height: 1.8;
  padding-left: 0;
  position: relative;
  margin-bottom: 44px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.use-cases-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 0;
}

.use-cases-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.67px solid #0550B3;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  box-sizing: border-box;
  display: block;
}

.use-cases-list li::after {
  content: '';
  width: 5px;
  height: 9px;
  border-right: 1.67px solid #0550B3;
  border-bottom: 1.67px solid #0550B3;
  transform: rotate(45deg);
  position: absolute;
  left: 6px;
  top: 6px;
  z-index: 1;
}

/* Purchase Options - SVG Design Match */
.purchase-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  width: 100%;
  box-sizing: border-box;
  background: rgba(0, 138, 138, 0.04);
  border-radius: 16.32px;
  border: 1.02px solid rgba(0, 138, 138, 0.3);
  padding: 24px;
  margin-top: 24px;
}

/* Large screens only - show side-by-side */
@media (min-width: 1200px) {
  .purchase-options {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Medium tablets - slightly larger gap when stacked */
@media (min-width: 641px) and (max-width: 1199px) {
  .purchase-options {
    gap: 28px;
  }
}

.purchase-card {
  padding: 0;
  border-radius: 16px;
  position: relative;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.purchase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #cbd5e1;
}

.purchase-card.individual-module {
  border-color: #b3e5fc;
}

.purchase-card.individual-module:hover {
  border-color: #008a8a;
  box-shadow: 0 8px 24px rgba(0, 138, 138, 0.15);
}

.purchase-card.masterclass-bundle {
  border-color: #22c55e;
  border-width: 3px;
}

.purchase-card.masterclass-bundle.featured {
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.purchase-card.masterclass-bundle:hover {
  border-color: #16a34a;
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.15);
}

.purchase-card-header {
  padding: 32px 32px 24px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.purchase-card.masterclass-bundle .purchase-card-header {
  padding-top: 72px;
}

.purchase-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.purchase-icon-wrapper.individual {
  background: linear-gradient(135deg, #008a8a 0%, #007070 100%);
  color: #ffffff;
}

.purchase-icon-wrapper.bundle {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
}

.purchase-icon-wrapper i {
  font-size: 24px;
}

.purchase-card-title {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 700;
  font-size: 26px;
  color: #003a5b;
  margin: 0;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.bundle-badge-popular {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
  z-index: 10;
  white-space: nowrap;
  max-width: calc(100% - 32px);
  box-sizing: border-box;
}

.bundle-badge-popular i {
  font-size: 10px;
}

.bundle-badge-savings {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
  z-index: 10;
  white-space: nowrap;
  max-width: calc(100% - 32px);
  box-sizing: border-box;
}

.bundle-badge-savings i {
  font-size: 10px;
}

.purchase-price-section {
  padding: 24px 32px;
  border-bottom: 1px solid #f1f5f9;
}

.purchase-price-section.bundle {
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.purchase-price-section.individual {
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

.purchase-price-label {
  display: block;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 13px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  font-weight: 600;
}

.purchase-price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.purchase-price-currency {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #003a5b;
}

.purchase-price-value {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 700;
  font-size: 48px;
  color: #003a5b;
  line-height: 1;
  word-break: break-word;
}

.purchase-price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.purchase-price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.purchase-price-section.bundle .purchase-price-currency {
  font-size: 32px;
  color: #22c55e;
}

.purchase-price-section.bundle .purchase-price-value {
  font-size: 64px;
  color: #22c55e;
  word-break: break-word;
}

.purchase-price-section.individual .purchase-price-currency,
.purchase-price-section.individual .purchase-price-value {
  color: #008a8a;
}

.purchase-price-original-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.purchase-price-original-label {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 11px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.purchase-price-original {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 20px;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 500;
}

.purchase-price-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 13px;
  color: #f59e0b;
  font-weight: 600;
}

.purchase-price-note i {
  font-size: 12px;
}

.purchase-features-list {
  padding: 24px 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.purchase-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 15px;
  color: #475569;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.purchase-feature-item i {
  color: #008a8a;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.purchase-features-list.bundle .purchase-feature-item i {
  color: #22c55e;
}

.purchase-feature-item strong {
  color: #003a5b;
  font-weight: 600;
}

.purchase-value-note {
  margin: 0 32px 24px;
  padding: 16px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 14px;
  color: #92400e;
  font-weight: 600;
  border: 1px solid #fcd34d;
}

.purchase-value-note i {
  color: #f59e0b;
  font-size: 18px;
  flex-shrink: 0;
}

.purchase-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  margin: 0 32px 32px;
  border-radius: 12px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.purchase-button.individual {
  background: linear-gradient(135deg, #008a8a 0%, #007070 100%);
  color: #ffffff;
}

.purchase-button.individual:hover {
  background: linear-gradient(135deg, #007070 0%, #005a5a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 138, 138, 0.3);
}

.purchase-button.individual:active {
  transform: translateY(0);
}

.purchase-button.masterclass {
  background: #3FDE97;
  color: #ffffff;
  border-radius: 5.12px;
  border: 2.05px solid rgba(22, 106, 68, 0.1);
}

.purchase-button.masterclass:hover {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.purchase-button.masterclass:active {
  transform: translateY(0);
}

.purchase-button i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.purchase-button:hover i {
  transform: translateX(4px);
}

/* Course Access Section (for enrolled users) */
.course-access-section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 2px solid #e5e7eb;
}

.access-card {
  padding: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
  border: 3px solid #22c55e;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.15);
}

.access-header {
  padding: 32px 32px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  border-bottom: 1px solid #dcfce7;
}

.access-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.access-icon-wrapper i {
  font-size: 32px;
  color: #ffffff;
}

.access-title-wrapper {
  flex: 1;
}

.access-title {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 700;
  font-size: 32px;
  color: #003a5b;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.access-subtitle {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 14px;
  color: #22c55e;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.access-description {
  padding: 24px 32px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 16px;
  color: #475569;
  margin: 0;
  line-height: 1.6;
  text-align: center;
}

.access-benefits {
  padding: 0 32px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.access-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #dcfce7;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 14px;
  color: #475569;
  font-weight: 500;
}

.access-benefit-item i {
  color: #22c55e;
  font-size: 18px;
  flex-shrink: 0;
}

.access-course-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 32px 32px;
  padding: 18px 32px;
  border-radius: 12px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 700;
  font-size: 18px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.access-course-button:hover {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.access-course-button:active {
  transform: translateY(0);
}

.access-course-button i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.access-course-button:hover i {
  transform: translateX(4px);
}

/* Responsive adjustments for purchase cards - Mobile First */
@media (max-width: 480px) {
  .purchase-options {
    gap: 20px;
    margin-top: 24px;
    padding-top: 24px;
  }

  .purchase-card-header {
    padding: 20px 16px 16px;
    flex-direction: column;
    text-align: center;
  }

  .purchase-card.masterclass-bundle .purchase-card-header {
    padding-top: 56px;
  }

  .purchase-icon-wrapper {
    width: 44px;
    height: 44px;
  }

  .purchase-icon-wrapper i {
    font-size: 18px;
  }

  .purchase-card-title {
    font-size: 20px;
    margin-top: 8px;
  }

  .bundle-badge-popular,
  .bundle-badge-savings {
    top: 8px;
    font-size: 10px;
    padding: 5px 10px;
  }

  .bundle-badge-popular {
    right: 8px;
    left: auto;
  }

  .bundle-badge-savings {
    left: 8px;
    right: auto;
  }

  .purchase-price-section {
    padding: 16px 16px;
  }

  .purchase-price-label {
    font-size: 11px;
  }

  .purchase-price-currency {
    font-size: 18px;
  }

  .purchase-price-value {
    font-size: 36px;
  }

  .purchase-price-section.bundle .purchase-price-currency {
    font-size: 24px;
  }

  .purchase-price-section.bundle .purchase-price-value {
    font-size: 44px;
  }

  .purchase-price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .purchase-price-original {
    font-size: 16px;
  }

  .purchase-price-note {
    font-size: 11px;
  }

  .purchase-features-list {
    padding: 16px 16px;
    gap: 12px;
  }

  .purchase-feature-item {
    font-size: 13px;
    gap: 10px;
  }

  .purchase-feature-item i {
    font-size: 16px;
  }

  .purchase-value-note {
    margin: 0 16px 16px;
    padding: 12px;
    font-size: 12px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .purchase-button {
    margin: 0 16px 16px;
    padding: 14px 20px;
    font-size: 14px;
  }

  .access-header {
    padding: 20px 16px 16px;
    flex-direction: column;
    text-align: center;
  }

  .access-icon-wrapper {
    width: 52px;
    height: 52px;
  }

  .access-icon-wrapper i {
    font-size: 24px;
  }

  .access-title {
    font-size: 24px;
    margin-top: 8px;
  }

  .access-description {
    padding: 16px 16px;
    font-size: 14px;
  }

  .access-benefits {
    padding: 0 16px 16px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .access-benefit-item {
    padding: 10px 12px;
    font-size: 13px;
  }

  .access-course-button {
    margin: 0 16px 16px;
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* Small mobile to tablet */
@media (min-width: 481px) and (max-width: 640px) {
  .purchase-card-header {
    padding: 24px 20px 20px;
    flex-direction: column;
    text-align: center;
  }

  .purchase-card.masterclass-bundle .purchase-card-header {
    padding-top: 60px;
  }

  .purchase-icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .purchase-icon-wrapper i {
    font-size: 20px;
  }

  .purchase-card-title {
    font-size: 22px;
  }

  .bundle-badge-popular {
    top: 12px;
    right: 12px;
    left: auto;
    font-size: 11px;
    padding: 6px 12px;
  }

  .bundle-badge-savings {
    top: 12px;
    left: 12px;
    right: auto;
    font-size: 11px;
    padding: 6px 12px;
  }

  .purchase-price-section {
    padding: 20px 20px;
  }

  .purchase-price-value {
    font-size: 40px;
  }

  .purchase-price-section.bundle .purchase-price-value {
    font-size: 52px;
  }

  .purchase-features-list {
    padding: 20px 20px;
    gap: 12px;
  }

  .purchase-feature-item {
    font-size: 14px;
  }

  .purchase-value-note {
    margin: 0 20px 20px;
    padding: 12px;
    font-size: 13px;
  }

  .purchase-button {
    margin: 0 20px 20px;
    padding: 16px 24px;
    font-size: 15px;
  }

  .access-header {
    padding: 24px 20px 20px;
    flex-direction: column;
    text-align: center;
  }

  .access-icon-wrapper {
    width: 56px;
    height: 56px;
  }

  .access-icon-wrapper i {
    font-size: 28px;
  }

  .access-title {
    font-size: 26px;
  }

  .access-description {
    padding: 20px 20px;
    font-size: 15px;
  }

  .access-benefits {
    padding: 0 20px 20px;
    grid-template-columns: 1fr;
  }

  .access-course-button {
    margin: 0 20px 20px;
    padding: 16px 24px;
    font-size: 16px;
  }
}

/* Medium tablets */
@media (min-width: 641px) and (max-width: 768px) {
  .purchase-card-header {
    padding: 28px 28px 22px;
  }

  .purchase-card.masterclass-bundle .purchase-card-header {
    padding-top: 68px;
  }

  .purchase-price-section {
    padding: 22px 28px;
  }

  .purchase-features-list {
    padding: 22px 28px;
  }

  .purchase-value-note {
    margin: 0 28px 24px;
  }

  .purchase-button {
    margin: 0 28px 28px;
  }
}

/* Large screens - ensure proper spacing */
@media (min-width: 1400px) {
  .purchase-options {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Course CTA Section */
.course-cta {
  padding: 60px 0;
  background-color: #fafafa;
  border-top: 1px solid #e5e7eb;
}

.course-cta .course-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .course-cta .course-container {
    padding: 0 50px;
  }
}

.cta-banner {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #008a8a;
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.cta-icon {
  width: 56px;
  height: 56px;
  background-color: #008a8a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  flex-shrink: 0;
}

.cta-text {
  flex: 1;
}

.cta-title {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 700;
  font-size: 28px;
  color: #003a5b;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.cta-description {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 16px;
  color: #627084;
  margin: 0;
  line-height: 1.5;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background-color: #008a8a;
  color: #ffffff;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #007070;
  transform: translateY(-1px);
}

.cta-button:active {
  transform: translateY(0);
  background-color: #006060;
}

.cta-button i {
  font-size: 13px;
  transition: transform 0.2s ease;
}

.cta-button:hover i {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .course-cta {
    padding: 40px 0;
  }

  .cta-banner {
    flex-direction: column;
    padding: 30px 24px;
    text-align: center;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }

  .cta-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .cta-title {
    font-size: 24px;
  }

  .cta-description {
    font-size: 14px;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
  }
}

@media (max-width: 480px) {
  .cta-banner {
    padding: 24px 20px;
  }

  .cta-title {
    font-size: 20px;
  }

  .cta-description {
    font-size: 13px;
  }
}

/* Enrollment Buttons (near price) */
.enroll-now-button,
.enrolled-button,
.add-to-cart-button {
  display: none;
  /* Hidden by default, overridden by JS with inline style */
  padding: 12px 24px;
  border-radius: 5.12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
}

.enroll-now-button {
  background-color: #3FDE97;
  color: #fff;
  border: 2.05px solid rgba(22, 106, 68, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.enroll-now-button:hover {
  background-color: #2dd085;
  border-color: rgba(22, 106, 68, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(63, 222, 151, 0.3);
}

.add-to-cart-button {
  background-color: #003a5b;
  color: #fff;
  border: 1px solid #003a5b;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.add-to-cart-button:hover {
  background-color: #002844;
  border-color: #002844;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 58, 91, 0.2);
}

.add-to-cart-button.added-to-cart {
  background-color: #22c55e;
  color: #fff;
  border: 1px solid #22c55e;
  cursor: default;
}

.add-to-cart-button.added-to-cart:hover {
  background-color: #22c55e;
  border-color: #22c55e;
  transform: none;
  box-shadow: none;
}

.enrolled-button {
  background-color: #22c55e;
  color: #fff;
  border: 1px solid #22c55e;
  cursor: default;
}

.enrolled-button:hover {
  background-color: #22c55e;
  /* No change on hover for enrolled */
  border-color: #22c55e;
  transform: none;
  box-shadow: none;
}

.course-price-section {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Enrollment Modal */
.enrollment-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.enrollment-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.enrollment-modal-content {
  position: relative;
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease-out;
  z-index: 10001;
  display: flex;
  flex-direction: column;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.enrollment-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.enrollment-modal-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #003a5b;
  margin: 0;
  font-weight: 700;
}

.enrollment-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #6b7280;
  cursor: pointer;
  transition: color 0.2s;
  padding: 8px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.enrollment-modal-close:hover {
  color: #003a5b;
  background-color: #f3f4f6;
}

.enrollment-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}

@media (min-width: 768px) {
  .enrollment-options-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
  }
}

/* Enrollment Option Cards */
.enrollment-option-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.enrollment-option-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.enrollment-option-card.featured {
  border-color: #22c55e;
  border-width: 3px;
}

.enrollment-badge-popular,
.enrollment-badge-savings {
  position: absolute;
  top: -10px;
  left: 16px;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
}

.enrollment-badge-popular {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #ffffff;
}

.enrollment-badge-savings {
  top: 18px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
}

.enrollment-card-header {
  text-align: center;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.enrollment-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 24px;
  color: #ffffff;
}

.enrollment-icon-wrapper.individual {
  background: linear-gradient(135deg, #008a8a 0%, #007070 100%);
}

.enrollment-icon-wrapper.bundle {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.enrollment-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #003a5b;
  margin: 0;
  font-weight: 700;
}

.enrollment-price-section {
  text-align: center;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.enrollment-price-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
  margin-bottom: 4px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
}

.enrollment-price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.enrollment-price-currency {
  font-size: 18px;
  font-weight: 700;
  color: #003a5b;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
}

.enrollment-price-value {
  font-size: 32px;
  font-weight: 700;
  color: #003a5b;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
}

.enrollment-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.enrollment-price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.enrollment-price-original-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.enrollment-price-original-label {
  font-size: 10px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
}

.enrollment-price-original {
  font-size: 14px;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 600;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
}

.enrollment-price-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 10px;
  color: #64748b;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
}

.enrollment-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  flex: 1;
}

.enrollment-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 13px;
  color: #475569;
  line-height: 1.4;
}

.enrollment-feature-item i {
  color: #22c55e;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.enrollment-feature-item strong {
  color: #003a5b;
  font-weight: 600;
}

.enrollment-value-note {
  margin: 0 0 16px 0;
  padding: 8px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-size: 10px;
  color: #92400e;
  font-weight: 600;
  border: 1px solid #fcd34d;
  line-height: 1.3;
}

.enrollment-value-note i {
  color: #f59e0b;
  font-size: 14px;
  flex-shrink: 0;
}

.enrollment-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  width: 100%;
  border-radius: 8px;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  margin-top: auto;
}

.enrollment-button.individual {
  background: linear-gradient(135deg, #008a8a 0%, #007070 100%);
  color: #ffffff;
}

.enrollment-button.individual:hover {
  background: linear-gradient(135deg, #007070 0%, #005a5a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 138, 138, 0.3);
}

.enrollment-button.masterclass {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
}

.enrollment-button.masterclass:hover {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.enrollment-button i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.enrollment-button:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .enrollment-modal-content {
    padding: 16px;
    width: 95%;
  }

  .enrollment-modal-header h2 {
    font-size: 18px;
  }

  .enrollment-option-card {
    padding: 16px;
  }

  .enrollment-price-value {
    font-size: 28px;
  }

  .enrollment-icon-wrapper {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .enrollment-card-title {
    font-size: 16px;
  }

}

/* CTA Section styles (copied from styles.css) */
.cta-section {
  position: relative;
  width: 100%;
  background-color: #233b5c;
  padding: var(--padding-section-sm) var(--spacing-md);
}

@media (min-width: 768px) {
  .cta-section {
    padding: var(--padding-section-lg) var(--spacing-md);
  }
}

.cta-container {
  max-width: var(--container-xl);
  margin: 0 auto;
}

.cta-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .cta-header {
    gap: 18px;
    margin-bottom: 136px;
  }
}

.cta-title-container {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cta-title {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 600;
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 3rem);
  letter-spacing: 0;
  line-height: clamp(2rem, 4.5vw + 0.75rem, 3.5rem);
}

.cta-logo {
  width: 96px;
  height: 28px;
}

@media (min-width: 768px) {
  .cta-logo {
    width: 212px;
    height: 48px;
  }
}

.cta-description {
  max-width: 100%;
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
}

@media (min-width: 768px) {
  .cta-description {
    max-width: 865px;
    font-size: 18px;
    line-height: 30px;
  }
}

.cta-br {
  display: none;
}

@media (min-width: 768px) {
  .cta-br {
    display: block;
  }
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-md);
  max-width: 100%;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .cta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .cta-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: var(--container-2xl);
  }
}

.cta-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-card {
    border-radius: 16px;
  }
}

.cta-card-content {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .cta-card-content {
    gap: 16px;
  }
}

.cta-card-image {
  width: 100%;
  height: 128px;
  object-fit: cover;
  border-radius: 6px;
}

@media (min-width: 768px) {
  .cta-card-image {
    height: 175px;
  }
}

.cta-card-title {
  font-family: 'Playfair Display', Helvetica, serif;
  font-weight: 600;
  color: #141414;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
}

@media (min-width: 768px) {
  .cta-card-title {
    font-size: 16px;
    line-height: 28px;
  }
}

.cta-card-description {
  font-family: 'Rethink Sans', Helvetica, sans-serif;
  font-weight: 400;
  color: rgba(20, 20, 20, 0.6);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 16px;
  white-space: pre-line;
}

@media (min-width: 768px) {
  .cta-card-description {
    line-height: 19.4px;
  }
}

/* Course Image Styles */
.course-image-container {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f4f6;
}

.course-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Ensure header actions layout */
.course-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Course Detail Image (Above Key Takeaway) */
.course-detail-image-container {
  width: 100%;
  max-width: 100%;
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #f3f4f6;
}

.course-detail-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .course-detail-image-container {
    border-radius: 16px;
    margin-bottom: 40px;
  }

  .course-detail-image {
    max-height: 500px;
  }
}

@media (min-width: 1024px) {
  .course-detail-image {
    max-height: 600px;
  }
}