/* CSS Variables - Design System */
:root {
  /* Colors */
  --primary-color: #27a0b4;
  --secondary-color: #005a6b;
  --accent-color: #ef2828;
  --text-primary: #1a1a1a;
  --text-secondary: #333333;
  --text-muted: #999999;
  --background-white: #ffffff;
  --background-light: #fdfcc1;
  --background-gradient: linear-gradient(135deg, #27a0b4 0%, #005a6b 100%);
  
  /* Typography */
  --font-family-base: 'Noto Sans JP', sans-serif;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --font-size-2xl: 28px;
  --font-size-3xl: 32px;
  --font-size-4xl: 38px;
  --font-size-5xl: 66px;
  --font-size-6xl: 76px;
  
  /* Font Weights */
  --font-weight-light: 350;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  
  /* Line Heights */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.6;
  
  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 40px;
  --spacing-3xl: 48px;
  --spacing-4xl: 64px;
  --spacing-5xl: 88px;
  
  /* Layout */
  --container-max-width: 1440px;
  --content-max-width: 1240px;
  --section-padding: var(--spacing-5xl) var(--spacing-lg);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 50px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--text-primary);
  background-color: var(--background-white);
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  width: 100%;
}

.content-container {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

/* Layout Utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-sm {
  gap: var(--spacing-sm);
}

.gap-md {
  gap: var(--spacing-md);
}

.gap-lg {
  gap: var(--spacing-lg);
}

/* Responsive Line Breaks */
.br-pc {
  display: inline;
}

.br-tablet {
  display: none;
}

.br-mobile {
  display: none;
}

/* Grid Layout */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Typography Classes */
.text-center {
  text-align: center;
}

.font-bold {
  font-weight: var(--font-weight-bold);
}

.font-light {
  font-weight: var(--font-weight-light);
}

/* Section Spacing */
.section {
  padding: var(--section-padding);
}

.section--hero {
  padding: 0;
  min-height: 568px;
  position: relative;
}

/* Header Styles */
.header {
  background: var(--background-white);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) var(--spacing-lg);
  min-height: 58px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  flex-shrink: 0;
  white-space: nowrap;
  min-width: 0;
}

.header__logo-text {
  font-size: var(--font-size-xl);
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: var(--spacing-sm) var(--spacing-md);
  margin: 0;
  list-style: none;
}

.header__nav-link {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-light);
  color: #121212;
  text-decoration: none;
  line-height: 1;
  transition: color 0.2s ease;
}

.header__nav-link:hover {
  color: var(--primary-color);
}

.header__cta {
  background: var(--accent-color);
  color: var(--background-white);
  padding: 20px 16px;
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  transition: background-color 0.2s ease;
  letter-spacing: 0.8px;
}

.header__cta:hover {
  background: #d41f1f;
}

.header__cta i {
  font-size: var(--font-size-lg);
}

/* Hero Section */
.hero {
  background: var(--primary-color);
  position: relative;
  min-height: 568px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url('../img/hero-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--spacing-4xl) var(--spacing-lg);
  max-width: 674px;
  margin-left: 67px;
}

.hero__title {
  font-weight: var(--font-weight-bold);
  color: var(--background-white);
  margin-bottom: var(--spacing-2xl);
  line-height: 1.5;
  letter-spacing: 0.8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero__title-large {
  font-size: 34px;
}

.hero__title-small {
  font-size: 24px;
}

.hero__subtitle {
  background: var(--secondary-color);
  color: var(--background-white);
  padding: var(--spacing-sm) var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-weight: var(--font-weight-bold);
  font-size: 40px;
  line-height: 1.6;
}

.hero__subtitle-main {
  font-weight: var(--font-weight-bold);
}

.hero__subtitle-x {
  font-weight: 500;
  font-size: 36px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-md);
  background: var(--background-white);
  color: #007972;
  padding: var(--spacing-lg) var(--spacing-xl);
  border-radius: 110px;
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid #007972;
  box-shadow: 
    1px 1px 5px 2px inset rgba(255,255,255,0.5),
    -1px -1px 5px 2px inset rgba(0,0,0,0.3);
  letter-spacing: 0.8px;
  line-height: 1.5;
  min-width: 318px;
  justify-content: center;
}

.header__cta:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* Mobile Menu Button */
.header__mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.header__mobile-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.header__mobile-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__mobile-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hero__cta i {
  font-size: 20px;
}

/* Problem Section */
.problem-section {
  background: #FFFFFF;
  padding: var(--spacing-5xl) 0;
}

.problem-section__title {
  font-size: 38px;
  font-weight: var(--font-weight-bold);
  color: #333333;
  text-align: center;
  margin-bottom: 80px;
  line-height: var(--line-height-relaxed);
}

.problem-section__container {
  background: #f7f7f7;
  border-radius: 80px;
  padding: 44px 40px;
  margin-bottom: 20px;
  position: relative;
}

.problem-section__container::after {
  content: '';
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 29px solid transparent;
  border-right: 29px solid transparent;
  border-top: 52px solid #f7f7f7;
}

.problem-section__bubbles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: space-between;
}

.bubble {
  background: var(--background-white);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  width: 300px;
  justify-self: center;
}


.bubble__text {
  font-size: var(--font-size-sm);
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
  line-height: 1.5;
}

.bubble__highlight {
  background: var(--background-light);
  padding: var(--spacing-sm);
  border-radius: var(--radius-sm);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-base);
  line-height: 1.6;
}

/* Features Section */
.features-section {
  background: #f2fefc;
  padding: 88px 0;
}

.features-section__title {
  font-size: 28px;
  font-weight: var(--font-weight-bold);
  color: #333333;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.7;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.features-section__container {
  background: var(--background-white);
  border-radius: var(--radius-md);
  padding: 40px 80px;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.features-section__description {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 1px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 100%;
  overflow: hidden;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 100%;
  align-items: center;
}

.feature-card__header {
  display: flex;
  gap: 8px;
  align-items: center;
}

.feature-card__number {
  background: var(--secondary-color);
  color: var(--background-white);
  width: 52px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 1px;
  line-height: 1.3;
}

.feature-card__title {
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  color: var(--secondary-color);
  line-height: 1.2;
  letter-spacing: 1px;
}

.feature-card__image {
  width: 300px;
  height: auto;
  overflow: hidden;
}

.feature-card__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.feature-placeholder {
  width: 280px;
  height: 280px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.feature-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Steps Section */
.steps-section {
  background: #d6f9f4;
  padding: 88px 0;
}

.steps-section__title {
  font-size: 38px;
  font-weight: var(--font-weight-bold);
  color: #007972;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.3;
  letter-spacing: 1px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1204px;
  margin: 0 auto;
}

.step-card {
  display: flex;
  flex-direction: column;
  width: 289px;
}

.step-card__header {
  background: var(--secondary-color);
  color: var(--background-white);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.8px;
  height: 59px;
}

.step-number {
  font-size: 24px;
  line-height: 1.5;
}

.step-card__content {
  background: var(--background-white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  height: 326px;
  text-align: center;
}

.step-card__title {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: var(--secondary-color);
  margin: 0;
  line-height: 1.6;
  height: 35px;
  display: flex;
  align-items: center;
}

.step-card__image {
  width: 135px;
  height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.step-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-card__description {
  font-size: var(--font-size-sm);
  color: var(--text-primary);
  line-height: 1.5;
  margin: 0;
  text-align: left;
}


/* Contact Section */

.contact-section__title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: var(--spacing-4xl);
}

.contact-form-placeholder {
  text-align: center;
  padding: var(--spacing-4xl);
  background: #f8f9fa;
  border-radius: var(--radius-md);
  color: var(--text-muted);
}

/* HubSpot Form Styles */
.contact-form-placeholder .hs-form-frame {
  max-width: 800px;
  margin: 0 auto;
}

/* HubSpot form field adjustments */
.contact-form-placeholder .hs-form .hs-form-field {
  margin-bottom: 20px;
}

.contact-form-placeholder .hs-form .hs-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.contact-form-placeholder .hs-form .hs-button {
  background: var(--primary-color);
  color: white;
  padding: 12px 32px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form-placeholder .hs-form .hs-button:hover {
  background: var(--secondary-color);
}

/* Footer */
.footer {
  background: var(--text-primary);
  color: var(--background-white);
  padding: var(--spacing-xl) 0;
}

.footer__copyright {
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--background-white);
}

/* Additional Components */
.header__nav-link:hover,
.header__nav-link.active {
  color: var(--secondary-color);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.link-accent:hover {
  color: #d41f1f;
}

.highlight-large {
  font-size: var(--font-size-5xl);
  color: var(--secondary-color);
}

/* Problem Section Enhancements */
.problem-section__thinking {
  text-align: center;
  margin-top: var(--spacing-lg);
}

/* Problem Swiper Styles */
.problem-swiper {
  width: 100%;
  padding: 20px 0 60px 0;
}

.problem-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.problem-swiper .swiper-button-next,
.problem-swiper .swiper-button-prev {
  color: var(--primary-color);
  background: var(--background-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  margin-top: -22px;
}

.problem-swiper .swiper-button-next:after,
.problem-swiper .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.problem-swiper .swiper-button-next:hover,
.problem-swiper .swiper-button-prev:hover {
  background: var(--primary-color);
  color: var(--background-white);
}

.problem-swiper .swiper-pagination {
  bottom: 10px;
}

.problem-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--text-muted);
  opacity: 0.5;
}

.problem-swiper .swiper-pagination-bullet-active {
  background: var(--primary-color);
  opacity: 1;
}

.thinking-illustration {
  width: 264px;
  height: 236px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.thinking-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA Section */
.cta-section {
  background: #007893;
  color: var(--background-white);
  text-align: center;
  position: relative;
  padding: 64px 0;
  overflow: hidden;
}

.cta-section__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/cta-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  mix-blend-mode: multiply;
}

.cta-section__content {
  position: relative;
  z-index: 2;
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
}

.cta-section__title {
  font-size: 32px;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  letter-spacing: 0.8px;
  margin: 0;
}

.cta-section__button {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-md);
  background: var(--background-white);
  color: var(--secondary-color);
  padding: var(--spacing-lg) var(--spacing-2xl);
  border-radius: 80px;
  font-size: 28px;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  transition: all 0.2s ease;
  border: 3px solid var(--secondary-color);
  letter-spacing: 0.8px;
  line-height: 1.5;
  min-width: 420px;
  height: 86px;
  justify-content: center;
}

.cta-section__button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.cta-section__button i {
  font-size: 28px;
}

/* Training Program Section */
.training-program-section {
  background: #ebebea;
  position: relative;
  padding: 88px 0;
  overflow: hidden;
}

.training-program__background {
  position: absolute;
  top: 0;
  left: -25%;
  width: 150%;
  height: 191.09%;
  background-image: url('../img/training-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
}

.training-program__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.training-program__title {
  font-size: 38px;
  font-weight: var(--font-weight-bold);
  color: var(--secondary-color);
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Goal Section */
.training-program__goal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.training-program__goal-title {
  background: var(--secondary-color);
  color: var(--background-white);
  font-size: 28px;
  font-weight: var(--font-weight-bold);
  text-align: center;
  padding: 8px;
  margin: 0;
  line-height: 1.6;
}

.training-program__goal-content {
  background: var(--background-white);
  padding: 33px;
  text-align: center;
}

.training-program__goal-content p {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
}

/* Learning Section */
.training-program__learning {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.training-program__learning-title {
  background: var(--secondary-color);
  color: var(--background-white);
  font-size: 28px;
  font-weight: var(--font-weight-bold);
  text-align: center;
  padding: 8px;
  margin: 0;
  line-height: 1.6;
}

.training-program__cards {
  display: flex;
  gap: 16px;
}

.training-card {
  background: var(--background-white);
  padding: 20px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.training-card__number {
  font-size: 32px;
  font-weight: var(--font-weight-bold);
  color: #007972;
  letter-spacing: 0.8px;
  line-height: 1.5;
}

.training-card__title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
  padding: 20px 0;
  border-bottom: 2px solid #ededed;
  width: 100%;
}

.training-card__description {
  font-size: var(--font-size-sm);
  color: var(--text-primary);
  line-height: 1.5;
  margin: 0;
}

/* Details Section */
.training-program__details {
  display: flex;
  gap: 16px;
}

.training-detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.training-detail__title {
  background: var(--secondary-color);
  color: var(--background-white);
  font-size: 28px;
  font-weight: var(--font-weight-bold);
  text-align: center;
  padding: 8px;
  margin: 0;
  line-height: 1.6;
}

.training-detail__content {
  background: var(--background-white);
  padding: 20px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.training-detail__main {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
}

.training-detail__sub {
  font-size: var(--font-size-sm);
  color: var(--text-primary);
  line-height: 1.5;
  margin: 0;
}

/* Subsidy Section */
.subsidy-section {
  background: var(--background-white);
  padding: 88px 100px;
}

.subsidy-container {
  display: flex;
  flex-direction: column;
  gap: 64px;
  max-width: 1240px;
  margin: 0 auto;
}

.subsidy-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.subsidy-section__subtitle {
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
}

.subsidy-section__title {
  font-size: 38px;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
}

.subsidy-content {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.subsidy-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 392px;
  flex-shrink: 0;
}

.subsidy-text__intro {
  font-size: 16px;
  font-weight: var(--font-weight-normal);
  color: #000000;
  line-height: 1.6;
  margin: 0;
}

.subsidy-text__highlight {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 1px;
  margin: 12px 0;
}

.subsidy-highlight__line {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.subsidy-highlight__prefix {
  font-size: 32px;
  color: var(--secondary-color);
  line-height: 1.3;
  writing-mode: horizontal-tb;
}

.subsidy-highlight__main {
  font-size: 56px;
  color: var(--secondary-color);
  line-height: 1.3;
}

.subsidy-highlight__suffix {
  font-size: 28px;
  color: var(--secondary-color);
  line-height: 1.3;
}

.subsidy-highlight__text {
  font-size: 28px;
  color: var(--text-primary);
  line-height: 1.3;
}

.subsidy-text__description {
  font-size: 14px;
  font-weight: var(--font-weight-normal);
  color: var(--text-primary);
  line-height: 1.5;
  margin: 0;
}

.subsidy-text__note {
  font-size: 12px;
  font-weight: var(--font-weight-light);
  color: var(--text-muted);
  line-height: 1.5;
  margin: 8px 0 0;
  letter-spacing: 0.8px;
}

.subsidy-link {
  color: var(--accent-color);
  text-decoration: none;
}

.subsidy-link:hover {
  text-decoration: underline;
}

.subsidy-chart {
  width: 564px;
  height: 354px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subsidy-chart img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Course Lineup Section */
.courses-section {
  background: #f2fefc;
  padding: 88px 100px;
}

.courses-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1240px;
  margin: 0 auto;
}

.courses-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.courses-section__title {
  font-size: 38px;
  font-weight: var(--font-weight-bold);
  color: #333333;
  line-height: 1.6;
  margin: 0;
}

.courses-section__subtitle {
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
}

.courses-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.course-card {
  background: var(--background-white);
  display: flex;
  gap: 68px;
  padding: 32px 24px;
  align-items: center;
}

.course-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.course-card__title {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
}

.course-card__description {
  font-size: 14px;
  font-weight: var(--font-weight-normal);
  color: var(--text-primary);
  line-height: 1.5;
  margin: 0;
}

.course-card__image {
  width: 300px;
  height: 174px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* E-learning Section */
.elearning-section {
  background: #ffffff;
  padding: 88px 100px;
}

.elearning-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1240px;
  margin: 0 auto;
}

.elearning-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.elearning-section__title {
  font-size: 38px;
  font-weight: var(--font-weight-bold);
  color: #333333;
  line-height: 1.6;
  margin: 0;
}

.elearning-section__subtitle {
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
}

.elearning-features {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.elearning-feature {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  max-width: 360px;
}

.elearning-feature__icon {
  display: flex;
  align-items: center;
  height: 36px;
}

.elearning-feature__icon .material-icons {
  font-size: 36px;
  color: #014b5b;
  line-height: 36px;
}

.elearning-feature__title {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
}

.elearning-feature__description {
  font-size: 14px;
  font-weight: var(--font-weight-normal);
  color: var(--text-primary);
  line-height: 1.5;
  margin: 0;
}

/* Utility Classes */
.visually-hidden,
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .hero__background {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
}

/* PC Styles - Hide nav logo (already have main logo) */
.header__nav-logo {
  display: none;
}

/* PC/Tablet - Responsive header for narrow screens */
@media (max-width: 1200px) and (min-width: 769px) {
  .header__container {
    flex-wrap: wrap;
    align-items: flex-start;
    padding: var(--spacing-sm) var(--spacing-md);
  }
  
  .header__logo {
    flex-shrink: 0;
    white-space: nowrap;
    order: 1;
  }
  
  .header__logo-text {
    font-size: var(--font-size-base);
  }
  
  .header__nav {
    width: 100%;
    order: 2;
    margin-top: var(--spacing-xs);
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .header__nav-list {
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .header__nav-link {
    font-size: var(--font-size-xs);
    padding: var(--spacing-xs);
  }
  
  .header__cta {
    margin-left: auto;
    font-size: var(--font-size-sm);
    padding: 16px 20px;
  }
}

/* PC/Tablet - More aggressive 2-row layout for very narrow screens */
@media (max-width: 900px) and (min-width: 769px) {
  .header__container {
    min-height: 80px;
  }
  
  .header__nav {
    margin-top: var(--spacing-sm);
  }
  
  .header__nav-list {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: var(--spacing-xs);
  }
  
  .header__nav-list li {
    flex: 0 0 auto;
  }
  
  .header__cta {
    width: 100%;
    text-align: right;
    margin-left: 0;
    align-self: flex-end;
    padding: 16px 20px;
    font-size: var(--font-size-sm);
  }
}

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

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
  .features-grid {
    gap: 24px;
    padding: 0 var(--spacing-md);
    max-width: 100%;
  }
  
  .feature-card {
    max-width: 280px;
    align-items: center;
  }
  
  .feature-placeholder {
    width: 220px;
    height: 220px;
  }
  
  /* Steps Section Tablet */
  .steps-section {
    padding: 60px 0;
  }
  
  .steps-section__title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .steps-grid {
    gap: 20px;
    max-width: 100%;
    padding: 0 var(--spacing-md);
  }
  
  .step-card {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
  
  .step-card__content {
    padding: 20px 16px;
    min-height: 140px;
  }
  
  .step-card__image {
    width: 110px;
    height: 110px;
  }
  
  /* Header Tablet */
  .header__container {
    padding: var(--spacing-sm) var(--spacing-lg);
    min-height: 60px;
    max-width: 1024px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }
  
  .header__logo-text {
    font-size: var(--font-size-lg);
  }
  
  .header__nav-list {
    gap: 16px;
  }
  
  .header__nav-link {
    font-size: var(--font-size-sm);
    padding: var(--spacing-xs) var(--spacing-sm);
  }
  
  .header__cta-button {
    padding: 20px 16px;
    font-size: var(--font-size-sm);
    min-width: 120px;
  }
  
  /* Subsidy Section Tablet */
  .subsidy-section {
    padding: 60px var(--spacing-lg);
  }
  
  .subsidy-container {
    gap: 40px;
  }
  
  .subsidy-section__title {
    font-size: 32px;
  }
  
  .subsidy-section__subtitle {
    font-size: var(--font-size-lg);
  }
  
  .subsidy-content {
    flex-direction: column;
    align-items: center;
  }
  
  .subsidy-text {
    width: 100%;
    max-width: 500px;
  }
  
  .subsidy-chart {
    width: 100%;
    max-width: 500px;
    height: auto;
  }
  
  /* Course Lineup Section Tablet */
  .courses-section {
    padding: 60px var(--spacing-lg);
  }
  
  .courses-container {
    gap: 40px;
  }
  
  .courses-section__title {
    font-size: 32px;
  }
  
  .courses-section__subtitle {
    font-size: var(--font-size-lg);
  }
  
  .course-card {
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
  }
  
  .course-card__image {
    width: 250px;
    height: 145px;
  }
  
  /* E-learning Section Tablet */
  .elearning-section {
    padding: 60px var(--spacing-lg);
  }
  
  .elearning-container {
    gap: 40px;
  }
  
  .elearning-section__title {
    font-size: 32px;
  }
  
  .elearning-section__subtitle {
    font-size: var(--font-size-lg);
  }
  
  .elearning-features {
    gap: var(--spacing-lg);
  }
  
  .elearning-feature {
    max-width: 100%;
  }
  
}

@media (max-width: 768px) {
  /* Responsive Line Breaks - Tablet/Mobile */
  .br-pc {
    display: none;
  }
  
  .br-tablet {
    display: inline;
  }
  
  /* Header Mobile */
  .header__mobile-menu {
    display: flex;
  }
  
  /* Mobile menu overlay */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    pointer-events: none;
  }
  
  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--background-white);
    box-shadow: -4px 0 25px rgba(0, 0, 0, 0.2), -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
  }
  
  .header__nav-header {
    width: 100%;
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-lg) 0;
    border-bottom: 1px solid #e0e0e0;
    background: var(--background-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .header__nav-logo {
    display: flex !important; /* Override PC/Tablet display: none */
    align-items: center;
    gap: var(--spacing-sm);
    padding-left: var(--spacing-lg);
  }
  
  .header__nav-logo img {
    height: 20px;
    width: auto;
  }
  
  .header__nav-logo span {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-primary);
  }
  
  .header__nav.active {
    right: 0;
  }
  
  .header__nav-list {
    flex-direction: column;
    gap: 0;
    padding: var(--spacing-xl) var(--spacing-lg) 0;
    flex: 1;
    align-items: baseline;
  }
  
  .header__nav-list li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
  }
  
  .header__nav-list li:hover {
    background-color: #f8f9fa;
  }
  
  .header__nav-list li:last-child {
    border-bottom: none;
  }
  
  .header__nav-link {
    display: block;
    padding: var(--spacing-lg) var(--spacing-md);
    font-size: var(--font-size-lg);
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
  }
  
  .header__nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(39, 160, 180, 0.05);
    transform: translateX(5px);
  }
  
  .header__nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .header__nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
  }
  
  .header__cta {
    margin: var(--spacing-xl) var(--spacing-lg) var(--spacing-2xl);
    padding: var(--spacing-md) var(--spacing-lg);
    text-align: center;
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all 0.2s ease;
  }
  
  .header__cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
  
  .header__container {
    padding: var(--spacing-sm) var(--spacing-md);
  }
  
  .header__logo-text {
    font-size: var(--font-size-lg);
  }
  
  /* Hero Mobile */
  .hero__content {
    padding: var(--spacing-lg);
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
  }
  
  .hero__title {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-lg);
  }
  
  .hero__subtitle {
    font-size: var(--font-size-lg);
    padding: var(--spacing-sm) var(--spacing-lg);
  }
  
  .hero__subtitle-x {
    font-size: var(--font-size-lg);
  }
  
  /* Grid Layouts Mobile */
  .problem-section__bubbles,
  .features-grid,
  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  /* Typography Mobile */
  .problem-section__title,
  .features-section__title,
  .steps-section__title {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-normal);
  }
  
  .problem-section__title {
    text-align: center;
  }
  
  /* Features Section Mobile */
  .features-section__container {
    padding: var(--spacing-lg) var(--spacing-md);
    gap: var(--spacing-lg);
  }
  
  .features-section__description {
    font-size: var(--font-size-lg);
    text-align: center;
    margin: 32px 24px;
  }
  
  .feature-card {
    align-items: center;
  }


  
  .contact-section__title {
    font-size: var(--font-size-lg);
    text-align: center;
  }
  
  /* HubSpot Form Mobile */
  .contact-form-placeholder {
    padding: var(--spacing-lg);
  }
  
  /* Force HubSpot fields to stack vertically on mobile */
  .contact-form-placeholder .hs-form .hs-form-field {
    width: 100% !important;
    float: none !important;
    display: block !important;
  }
  
  .contact-form-placeholder .hs-form .field {
    width: 100% !important;
  }
  
  .contact-form-placeholder .hs-form .hs-fieldtype-text,
  .contact-form-placeholder .hs-form .hs-fieldtype-select,
  .contact-form-placeholder .hs-form .hs-fieldtype-textarea {
    width: 100% !important;
  }
  
  /* Ensure姓名 fields are full width */
  .contact-form-placeholder .hs-form .hs_firstname,
  .contact-form-placeholder .hs-form .hs_lastname {
    width: 100% !important;
    margin-right: 0 !important;
  }
  
  .cta-section__title {
    font-size: var(--font-size-xl);
  }
  
  .cta-section__button {
    font-size: var(--font-size-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    min-width: 280px;
    height: 60px;
  }
  
  .cta-section__button i {
    font-size: var(--font-size-xl);
  }
  
  /* Training Program Mobile */
  .training-program-section {
    padding: var(--spacing-3xl) 0;
  }
  
  .training-program__content {
    max-width: 100%;
    padding: 0 var(--spacing-md);
    gap: var(--spacing-lg);
  }
  
  .training-program__title {
    font-size: var(--font-size-xl);
    text-align: center;
  }
  
  .training-program__goal-title,
  .training-program__learning-title,
  .training-detail__title {
    font-size: var(--font-size-lg);
    padding: var(--spacing-md);
  }
  
  .training-program__goal-content {
    padding: var(--spacing-lg);
  }
  
  .training-program__cards {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .training-program__details {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  /* Steps Section Mobile */
  .steps-section {
    padding: var(--spacing-3xl) 0;
  }
  
  .steps-section__title {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
  }
  
  .step-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .step-card__header {
    padding: var(--spacing-md);
  }
  
  .step-card__title {
    font-size: var(--font-size-lg);
  }
  
  .step-card__content {
    padding: var(--spacing-lg);
    height: auto;
    min-height: auto;
  }
  
  .step-card__image {
    width: 120px;
    height: 120px;
  }
  
  /* Subsidy Section Mobile */
  .subsidy-section {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }
  
  .subsidy-container {
    gap: var(--spacing-2xl);
  }
  
  .subsidy-section__title {
    font-size: var(--font-size-xl);
  }
  
  .subsidy-section__subtitle {
    font-size: var(--font-size-base);
  }
  
  .subsidy-content {
    flex-direction: column;
  }
  
  .subsidy-text {
    width: 100%;
  }
  
  .subsidy-highlight__prefix {
    font-size: var(--font-size-xl);
  }
  
  .subsidy-highlight__main {
    font-size: var(--font-size-4xl);
  }
  
  .subsidy-highlight__suffix {
    font-size: var(--font-size-lg);
  }
  
  .subsidy-highlight__text {
    font-size: var(--font-size-xl);
  }
  
  .subsidy-chart {
    width: 100%;
    height: auto;
  }
  
  /* Course Lineup Section Mobile */
  .courses-section {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }
  
  .courses-container {
    gap: var(--spacing-2xl);
  }
  
  .courses-section__title {
    font-size: var(--font-size-xl);
  }
  
  .courses-section__subtitle {
    font-size: var(--font-size-base);
  }
  
  .course-card {
    flex-direction: column;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
  }
  
  .course-card__image {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 300/174;
  }
  
  /* E-learning Section Mobile */
  .elearning-section {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }
  
  .elearning-container {
    gap: var(--spacing-2xl);
  }
  
  .elearning-section__title {
    font-size: var(--font-size-xl);
  }
  
  .elearning-section__subtitle {
    font-size: var(--font-size-base);
  }
  
  .elearning-features {
    flex-direction: column;
    gap: var(--spacing-xl);
  }
  
  .elearning-feature {
    max-width: 100%;
  }
  
  /* Spacing Mobile */
  .content-container {
    padding: 0 var(--spacing-md);
  }
  
  .section {
    padding: var(--spacing-3xl) var(--spacing-md);
  }
  
  
  /* Feature Cards Mobile */
  .feature-card__image {
    width: 250px;
    height: 250px;
  }
  
  /* Step Cards Mobile */
  .step-card__content {
    min-height: auto;
    padding: var(--spacing-md);
  }
  
  .step-card__image {
    width: 100px;
    height: 100px;
  }
  
  
  .highlight-large {
    font-size: var(--font-size-2xl);
  }
}

@media (max-width: 480px) {
  /* Extra Small Mobile */
  .hero__title {
    font-size: var(--font-size-lg);
  }
  
  .hero__subtitle {
    font-size: var(--font-size-base);
  }
  
  .hero__subtitle-x {
    font-size: var(--font-size-base);
  }
  
  .problem-section__title,
  .features-section__title,
  .steps-section__title {
    font-size: var(--font-size-lg);
  }
  
  .problem-section__title {
    text-align: center;
  }
  
  /* Features Section Mobile Small */
  .features-section__container {
    padding: var(--spacing-md) var(--spacing-sm);
    gap: var(--spacing-md);
  }
  
  .features-section__description {
    font-size: var(--font-size-base);
    margin: 32px 24px;
  }
  
  .feature-card {
    align-items: center;
  }
  
  .cta-section__title {
    font-size: var(--font-size-lg);
  }
  
  .cta-section__button {
    font-size: var(--font-size-base);
    padding: var(--spacing-sm) var(--spacing-md);
    min-width: 240px;
    height: 50px;
  }
  
  .cta-section__button i {
    font-size: var(--font-size-lg);
  }
  
  /* Training Program Mobile Small */
  .training-program-section {
    padding: var(--spacing-2xl) 0;
  }
  
  .training-program__content {
    padding: 0 var(--spacing-sm);
    gap: var(--spacing-md);
  }
  
  .training-program__title {
    font-size: var(--font-size-lg);
    text-align: center;
  }
  
  .training-program__goal-title,
  .training-program__learning-title,
  .training-detail__title {
    font-size: var(--font-size-base);
    padding: var(--spacing-sm);
  }
  
  .training-program__goal-content {
    padding: var(--spacing-md);
  }
  
  .training-program__goal-content p {
    font-size: var(--font-size-sm);
  }
  
  /* Steps Section Mobile Small */
  .steps-section {
    padding: var(--spacing-2xl) 0;
  }
  
  .steps-section__title {
    margin-bottom: var(--spacing-lg);
  }
  
  .step-card {
    max-width: 100%;
  }
  
  .step-card__header {
    padding: var(--spacing-sm);
  }
  
  .step-card__title {
    font-size: var(--font-size-base);
  }
  
  .step-card__content {
    padding: var(--spacing-md);
    height: auto;
    min-height: auto;
    gap: var(--spacing-sm);
  }
  
  .step-card__image {
    width: 100px;
    height: 100px;
  }
  
  .step-card__description {
    font-size: var(--font-size-xs);
  }
  
  .bubble {
    padding: var(--spacing-sm);
  }
  
  .bubble__text {
    font-size: var(--font-size-xs);
  }
  
  .bubble__highlight {
    font-size: var(--font-size-sm);
  }
  
  .feature-placeholder {
    width: 200px;
    height: 200px;
  }
  
  .step-card__image {
    width: 80px;
    height: 80px;
  }
  
  /* Subsidy Section Mobile Small */
  .subsidy-section {
    padding: var(--spacing-2xl) var(--spacing-md);
  }
  
  .subsidy-container {
    gap: var(--spacing-lg);
  }
  
  .subsidy-section__title {
    font-size: var(--font-size-lg);
  }
  
  .subsidy-section__subtitle {
    font-size: var(--font-size-sm);
  }
  
  .subsidy-highlight__prefix {
    font-size: var(--font-size-lg);
  }
  
  .subsidy-highlight__main {
    font-size: var(--font-size-2xl);
  }
  
  .subsidy-highlight__suffix {
    font-size: var(--font-size-base);
  }
  
  .subsidy-highlight__text {
    font-size: var(--font-size-lg);
  }
  
  .subsidy-text__description {
    font-size: var(--font-size-xs);
  }
  
  .subsidy-text__note {
    font-size: 10px;
  }
  
  .subsidy-chart {
    width: 100%;
    height: auto;
  }
  
  /* Course Lineup Section Mobile Small */
  .courses-section {
    padding: var(--spacing-2xl) var(--spacing-md);
  }
  
  .courses-container {
    gap: var(--spacing-lg);
  }
  
  .courses-section__title {
    font-size: var(--font-size-lg);
  }
  
  .courses-section__subtitle {
    font-size: var(--font-size-sm);
  }
  
  .course-card {
    gap: var(--spacing-md);
    padding: var(--spacing-md);
  }
  
  .course-card__title {
    font-size: var(--font-size-lg);
  }
  
  .course-card__description {
    font-size: var(--font-size-xs);
  }
  
  /* E-learning Section Mobile Small */
  .elearning-section {
    padding: var(--spacing-2xl) var(--spacing-md);
  }
  
  .elearning-container {
    gap: var(--spacing-lg);
  }
  
  .elearning-section__title {
    font-size: var(--font-size-lg);
  }
  
  .elearning-section__subtitle {
    font-size: var(--font-size-sm);
  }
  
  .elearning-features {
    gap: var(--spacing-lg);
  }
  
  .elearning-feature__icon .material-icons {
    font-size: 28px;
  }
  
  .elearning-feature__title {
    font-size: var(--font-size-base);
  }
  
  .elearning-feature__description {
    font-size: var(--font-size-xs);
  }
}