
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700&display=swap');

:root {
  /* COLOR STRATEGY: LIGHT - PALETTE L3 (SOFT GRAY + GREEN) */
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;
  
  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-secondary: #10b981;
  --color-accent-light: #d1fae5;
  --color-accent-lighter: #ecfdf5;
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  background: var(--color-bg-primary);
}

section, [class*="-section"] {
  width: 100%;
  overflow: hidden;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  line-height: 1.25;
}

h4 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  line-height: 1.3;
}

p, li, span {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--color-accent-lighter);
  color: var(--color-primary-hover);
}

.btn-secondary {
  background: var(--color-secondary);
  color: #ffffff;
}

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

.flex-container {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}

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

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(3rem, 8vw, 4.5rem);
  height: clamp(3rem, 8vw, 4.5rem);
  border-radius: var(--radius-lg);
  background: var(--color-accent-lighter);
  color: var(--color-primary);
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.icon-box i {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-padding {
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}

.section-title {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
  word-break: break-word;
}

.section-title h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.section-title p {
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.text-accent {
  color: var(--color-primary);
}

.badge {
  display: inline-block;
  background: var(--color-accent-lighter);
  color: var(--color-primary);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  border-radius: var(--radius-xl);
  margin: 0 auto var(--space-lg);
}

@media (max-width: 767px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  h4 { font-size: 1.125rem; }
  
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1440px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.75rem; }
  h3 { font-size: 2rem; }
}

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

input, textarea, select {
  font-family: var(--font-primary);
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-accent-lighter);
}

input::placeholder {
  color: var(--color-text-muted);
}

textarea {
  resize: vertical;
  min-height: 120px;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700&display=swap');


  .header-lingua-portal {
    background: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-accent-lighter);
    position: static;
    width: 100%;
    z-index: 100;
  }

  .header-lingua-portal-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: clamp(60px, 10vw, 80px);
  }

  .header-lingua-portal-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
    flex-shrink: 0;
    transition: opacity 300ms ease;
  }

  .header-lingua-portal-brand:hover {
    opacity: 0.8;
  }

  .header-lingua-portal-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .header-lingua-portal-logo-text {
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    color: var(--color-text-primary);
  }

  .header-lingua-portal-desktop-nav {
    display: none;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    justify-content: flex-end;
  }

  .header-lingua-portal-nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 300ms ease;
    position: relative;
  }

  .header-lingua-portal-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 300ms ease;
  }

  .header-lingua-portal-nav-link:hover {
    color: var(--color-primary);
  }

  .header-lingua-portal-nav-link:hover::after {
    width: 100%;
  }

  .header-lingua-portal-cta-button {
    padding: 0.625rem 1.375rem;
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 300ms ease;
  }

  .header-lingua-portal-cta-button:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
  }

  .header-lingua-portal-cta-button:active {
    transform: translateY(0);
  }

  .header-lingua-portal-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-right: -0.5rem;
    z-index: 101;
  }

  .header-lingua-portal-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: all 300ms ease;
  }

  .header-lingua-portal-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .header-lingua-portal-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .header-lingua-portal-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .header-lingua-portal-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-secondary);
    display: flex;
    flex-direction: column;
    padding-top: clamp(60px, 10vw, 80px);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    overflow-y: auto;
  }

  .header-lingua-portal-mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .header-lingua-portal-mobile-header {
    display: flex;
    justify-content: flex-end;
    padding: 1rem clamp(1rem, 4vw, 2rem);
    border-bottom: 1px solid var(--color-accent-lighter);
  }

  .header-lingua-portal-mobile-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-primary);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 300ms ease;
  }

  .header-lingua-portal-mobile-close:hover {
    color: var(--color-primary);
  }

  .header-lingua-portal-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  .header-lingua-portal-mobile-link {
    padding: 1.25rem clamp(1rem, 4vw, 2rem);
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--color-accent-lighter);
    transition: all 300ms ease;
  }

  .header-lingua-portal-mobile-link:hover {
    background: var(--color-bg-tertiary);
    color: var(--color-primary);
    padding-left: clamp(1.25rem, 4vw, 2.25rem);
  }

  .header-lingua-portal-mobile-cta {
    padding: 1rem clamp(1rem, 4vw, 2rem);
    margin: 1rem clamp(1rem, 4vw, 2rem);
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 300ms ease;
  }

  .header-lingua-portal-mobile-cta:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
  }

  @media (min-width: 768px) {
    .header-lingua-portal-mobile-toggle {
      display: none;
    }

    .header-lingua-portal-mobile-menu {
      display: none;
    }

    .header-lingua-portal-desktop-nav {
      display: flex;
    }

    .header-lingua-portal-logo-img {
      width: 44px;
      height: 44px;
    }
  }

  @media (min-width: 1024px) {
    .header-lingua-portal-logo-img {
      width: 48px;
      height: 48px;
    }

    .header-lingua-portal-logo-text {
      font-size: 1.5rem;
    }

    .header-lingua-portal-nav-link {
      font-size: 1rem;
    }

    .header-lingua-portal-cta-button {
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
    }
  }

    .language-hub {
  width: 100%;
}

.language-hub section {
  width: 100%;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.language-hub h1,
.language-hub h2,
.language-hub h3,
.language-hub h4 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.btn-primary {
  background: #059669;
  color: #ffffff;
}

.btn-primary:hover {
  background: #047857;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(5, 150, 105, 0.25);
}

.btn-outline {
  border-color: #059669;
  color: #059669;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(5, 150, 105, 0.08);
  color: #047857;
  transform: translateY(-2px);
}

.btn-large {
  padding: clamp(1rem, 2vw, 1.25rem) clamp(2rem, 4vw, 3rem);
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.125rem);
}

.hero-section {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #f9fafb;
  overflow: hidden;
}

.hero-gradient-mesh {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -100px;
  left: -150px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.1) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.hero-glow-primary {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 50%;
  right: -80px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-accent-orb-left {
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: 5%;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-accent-orb-right {
  position: absolute;
  width: 250px;
  height: 250px;
  top: 20%;
  right: 8%;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 2;
  pointer-events: none;
}

.hero-floating-shape {
  position: absolute;
  width: 280px;
  height: 320px;
  bottom: 5%;
  right: 15%;
  background: rgba(5, 150, 105, 0.04);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

.hero-line-accent {
  position: absolute;
  width: 150px;
  height: 2px;
  top: 30%;
  left: 10%;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-corner-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  top: 5%;
  left: 2%;
  background: rgba(16, 185, 129, 0.07);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #111827;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 4vw, 3rem);
  margin: clamp(2.5rem, 4vw, 3.5rem) 0;
  padding: clamp(2rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-stat-number {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 500;
}

.hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: clamp(2rem, 3vw, 2.5rem);
}

@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
  }
  
  .hero-cta-buttons .btn {
    width: 100%;
  }
}

.benefits-section {
  position: relative;
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: #ffffff;
  overflow: hidden;
}

.benefits-shape-accent {
  position: absolute;
  width: 350px;
  height: 350px;
  top: -50px;
  right: 5%;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.benefits-glow-soft {
  position: absolute;
  width: 280px;
  height: 280px;
  bottom: 10%;
  left: -100px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.benefits-element-1 {
  position: absolute;
  width: 200px;
  height: 2px;
  top: 25%;
  right: 15%;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.benefits-element-2 {
  position: absolute;
  width: 150px;
  height: 150px;
  top: 60%;
  right: 3%;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.benefits-element-3 {
  position: absolute;
  width: 250px;
  height: 250px;
  bottom: -80px;
  right: 20%;
  background: rgba(5, 150, 105, 0.06);
  border-radius: 45% 55% 50% 50% / 50% 45% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

.benefits-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
  position: relative;
  z-index: 10;
}

.benefits-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.benefits-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.benefits-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.benefits-cards {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 10;
}

.benefits-card {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.benefits-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: #059669;
}

.benefits-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 12px;
  color: #059669;
  font-size: 1.75rem;
}

.benefits-card-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.benefits-card-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

@media (max-width: 768px) {
  .benefits-card {
    flex: 1 1 100%;
    max-width: none;
  }
}

.featured-section {
  position: relative;
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: #f9fafb;
  overflow: hidden;
}

.featured-glow-left {
  position: absolute;
  width: 400px;
  height: 400px;
  top: -100px;
  left: -150px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.featured-glow-right {
  position: absolute;
  width: 350px;
  height: 350px;
  bottom: 10%;
  right: -100px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.featured-shape-center {
  position: absolute;
  width: 280px;
  height: 280px;
  top: 50%;
  right: 10%;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 35% 65% 60% 40% / 65% 35% 65% 35%;
  z-index: 1;
  pointer-events: none;
}

.featured-accent-line {
  position: absolute;
  width: 180px;
  height: 2px;
  top: 20%;
  left: 8%;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.featured-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
  position: relative;
  z-index: 10;
}

.featured-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.featured-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.featured-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.featured-cards {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 3vw, 2.5rem);
  position: relative;
  z-index: 10;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.featured-card {
  flex: 1 1 350px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.featured-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.featured-card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.featured-card-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.featured-card-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
  flex-grow: 1;
}

.featured-card-link {
  display: inline-flex;
  align-items: center;
  color: #059669;
  font-weight: 600;
  text-decoration: none;
  transition: all 300ms ease;
  width: fit-content;
}

.featured-card-link:hover {
  color: #047857;
  gap: 0.5rem;
}

.featured-cta {
  text-align: center;
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  .featured-card {
    flex: 1 1 100%;
    max-width: none;
  }
}

.learning-path-section {
  position: relative;
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: #ffffff;
  overflow: hidden;
}

.learning-path-glow-1 {
  position: absolute;
  width: 350px;
  height: 350px;
  top: -80px;
  right: 10%;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.learning-path-glow-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  bottom: 5%;
  left: 5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.learning-path-shape {
  position: absolute;
  width: 280px;
  height: 320px;
  top: 30%;
  left: -100px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 60% 40% 35% 65% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.learning-path-accent {
  position: absolute;
  width: 150px;
  height: 2px;
  bottom: 30%;
  right: 15%;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.learning-path-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
  position: relative;
  z-index: 10;
}

.learning-path-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.learning-path-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.learning-path-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.learning-path-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

.learning-path-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 300ms ease;
}

.learning-path-step:hover {
  border-color: #059669;
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.08);
}

.learning-path-step-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.learning-path-step-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.learning-path-step-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.learning-path-step-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

@media (max-width: 768px) {
  .learning-path-step {
    gap: 1.25rem;
  }
  
  .learning-path-step-number {
    min-width: 50px;
  }
}

.about-section {
  position: relative;
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: #f9fafb;
  overflow: hidden;
}

.about-glow-primary {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 10%;
  left: -120px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.about-glow-secondary {
  position: absolute;
  width: 350px;
  height: 350px;
  bottom: 5%;
  right: -80px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.about-shape-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 40%;
  right: 5%;
  background: rgba(5, 150, 105, 0.04);
  border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.about-shape-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: 15%;
  left: 8%;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 60% 40% 45% 55% / 40% 60% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

.about-line-element {
  position: absolute;
  width: 180px;
  height: 2px;
  top: 25%;
  left: 15%;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(3rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 10;
}

.about-text-block {
  flex: 1 1 400px;
  min-width: 0;
}

.about-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.2;
}

.about-paragraph {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 1.25rem;
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.about-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-feature-icon {
  color: #059669;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.about-feature-text {
  font-size: 0.9375rem;
  color: #1a1a1a;
  line-height: 1.5;
}

.about-image-block {
  flex: 1 1 400px;
  min-width: 0;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .about-text-block,
  .about-image-block {
    flex: 1 1 100%;
  }
}

.testimonial-section {
  position: relative;
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: #ffffff;
  overflow: hidden;
}

.testimonial-glow-left {
  position: absolute;
  width: 350px;
  height: 350px;
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.testimonial-glow-right {
  position: absolute;
  width: 320px;
  height: 320px;
  bottom: 10%;
  right: -50px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.testimonial-shape {
  position: absolute;
  width: 280px;
  height: 280px;
  top: 50%;
  right: 8%;
  background: rgba(5, 150, 105, 0.04);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.testimonial-accent-dot {
  position: absolute;
  width: 120px;
  height: 120px;
  bottom: 20%;
  left: 10%;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.testimonial-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
  position: relative;
  z-index: 10;
}

.testimonial-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.testimonial-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.testimonial-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-quote-block {
  margin-bottom: clamp(3rem, 5vw, 4rem);
  position: relative;
  z-index: 10;
}

.testimonial-quote {
  padding: clamp(2rem, 3vw, 2.5rem);
  border-left: 4px solid #059669;
  background: #f9fafb;
  margin: 0;
  border-radius: 8px;
}

.testimonial-quote-text {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  line-height: 1.7;
  color: #111827;
  margin-bottom: 1rem;
}

.testimonial-quote-author {
  font-size: 0.875rem;
  color: #4b5563;
  font-style: normal;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 10;
}

.testimonial-card {
  flex: 1 1 300px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 300ms ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: #059669;
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.08);
}

.testimonial-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-rating {
  color: #f59e0b;
  font-size: 0.875rem;
  font-weight: 600;
}

.testimonial-card-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
  flex-grow: 1;
}

.testimonial-card-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 1 1 100%;
    max-width: none;
  }
}

.cta-section {
  position: relative;
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: #f9fafb;
  overflow: hidden;
}

.cta-glow-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  top: -150px;
  left: 10%;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.12) 0%, transparent 70%);
  filter: blur(95px);
  z-index: 1;
  pointer-events: none;
}

.cta-glow-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  bottom: -100px;
  right: 5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 20%;
  right: 10%;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 45% 55% 60% 40% / 55% 45% 45% 55%;
  z-index: 1;
  pointer-events: none;
}

.cta-line {
  position: absolute;
  width: 200px;
  height: 2px;
  top: 40%;
  left: 15%;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.cta-description {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #4b5563;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.6;
}

.contact-section {
  position: relative;
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: #ffffff;
  overflow: hidden;
}

.contact-glow-accent {
  position: absolute;
  width: 380px;
  height: 380px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.contact-shape-1 {
  position: absolute;
  width: 280px;
  height: 280px;
  bottom: 10%;
  left: 5%;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
  z-index: 1;
  pointer-events: none;
}

.contact-shape-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  right: 8%;
  background: rgba(5, 150, 105, 0.04);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.contact-element {
  position: absolute;
  width: 150px;
  height: 2px;
  bottom: 30%;
  left: 20%;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.contact-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
  position: relative;
  z-index: 10;
}

.contact-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.contact-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(3rem, 5vw, 4rem);
  position: relative;
  z-index: 10;
}

.contact-form-wrapper {
  flex: 1 1 400px;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  color: #111827;
  font-size: 1rem;
  font-family: inherit;
  transition: all 300ms ease;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #9ca3af;
}

.contact-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-submit {
  width: 100%;
  padding: 1rem;
  background: #059669;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0.5rem;
}

.contact-submit:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.2);
}

.contact-submit:active {
  transform: translateY(0);
}

.contact-info-block {
  flex: 1 1 400px;
}

.contact-info-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.contact-faq {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-faq-item {
  padding: 1.25rem;
  background: #f9fafb;
  border-radius: 8px;
  border-left: 3px solid #059669;
}

.contact-faq-question {
  font-size: 0.9375rem;
  color: #111827;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.contact-faq-answer {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-form-wrapper,
  .contact-info-block {
    flex: 1 1 100%;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #1e293b;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-text {
  font-size: 0.875rem;
  color: #e2e8f0;
  margin: 0;
  flex: 1 1 200px;
  line-height: 1.5;
}

.cookie-privacy-link {
  color: #38bdf8;
  text-decoration: underline;
  transition: color 300ms ease;
}

.cookie-privacy-link:hover {
  color: #7dd3fc;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  border: none;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 300ms ease;
  font-family: inherit;
}

.cookie-btn-accept {
  background: #059669;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background: #047857;
  transform: translateY(-1px);
}

.cookie-btn-decline {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(226, 232, 240, 0.3);
}

.cookie-btn-decline:hover {
  border-color: rgba(226, 232, 240, 0.6);
  background: rgba(226, 232, 240, 0.05);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    gap: 0.75rem;
  }
  
  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

    /* Footer wrapper */
  .footer {
    background: var(--color-bg-tertiary);
    padding: clamp(3rem, 8vw, 5rem) 0;
    color: var(--color-text-secondary);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  /* Container */
  .footer .container {
    max-width: 1440px;
    margin: 0 auto;
    padding-inline: clamp(1rem, 5vw, 2rem);
  }

  /* Main content grid */
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, 5vw, 4rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  /* About section */
  .footer-about {
    flex: 1 1 280px;
    min-width: 250px;
  }

  .footer-about-title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
  }

  .footer-about-text {
    font-size: clamp(0.875rem, 1vw, 1rem);
    line-height: 1.7;
    color: var(--color-text-secondary);
  }

  /* Navigation section */
  .footer-nav-section {
    flex: 1 1 220px;
  }

  .footer-nav-title {
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1.25rem;
  }

  .footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-nav-link {
    font-size: clamp(0.875rem, 1vw, 0.95rem);
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all 300ms ease;
    display: inline-block;
    position: relative;
  }

  .footer-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 300ms ease;
  }

  .footer-nav-link:hover {
    color: var(--color-text-primary);
  }

  .footer-nav-link:hover::after {
    width: 100%;
  }

  /* Contact section */
  .footer-contact-section {
    flex: 1 1 240px;
  }

  .footer-contact-title {
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1.25rem;
  }

  .footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
  }

  .footer-contact-item {
    font-size: clamp(0.8125rem, 0.95vw, 0.9375rem);
    line-height: 1.6;
    color: var(--color-text-secondary);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .footer-contact-label {
    font-weight: 500;
    color: var(--color-text-primary);
    font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  }

  .footer-contact-value {
    color: var(--color-text-secondary);
    word-break: break-word;
  }

  /* Legal section */
  .footer-legal-section {
    flex: 1 1 220px;
  }

  .footer-legal-title {
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1.25rem;
  }

  .footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-legal-link {
    font-size: clamp(0.875rem, 1vw, 0.95rem);
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all 300ms ease;
    display: inline-block;
    position: relative;
  }

  .footer-legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 300ms ease;
  }

  .footer-legal-link:hover {
    color: var(--color-text-primary);
  }

  .footer-legal-link:hover::after {
    width: 100%;
  }

  /* Copyright section */
  .footer-copyright {
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
  }

  .footer-copyright-text {
    font-size: clamp(0.8125rem, 1vw, 0.9375rem);
    color: var(--color-text-muted);
    line-height: 1.6;
  }

  /* Tablet adjustments */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      gap: clamp(2rem, 4vw, 2.5rem);
    }

    .footer-about,
    .footer-nav-section,
    .footer-contact-section,
    .footer-legal-section {
      flex: 1 1 100%;
    }

    .footer-about {
      padding-bottom: 0.5rem;
    }
  }

  /* Focus states for accessibility */
  .footer-nav-link:focus-visible,
  .footer-legal-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
  }

  /* Reduced motion support */
  @media (prefers-reduced-motion: reduce) {
    .footer-nav-link,
    .footer-legal-link,
    .footer-nav-link::after,
    .footer-legal-link::after {
      transition: none;
    }
  }
    

/* Category Page Styles */
/* LIGHT THEME - PALETTE L3: SOFT GRAY + GREEN */

.category-page-language-courses {
  background: var(--color-bg-primary);
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION - Language Courses
   ═══════════════════════════════════════════════════════════ */

.hero-section-language-courses {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.hero-decorative-glow-1 {
  position: absolute;
  top: -50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-decorative-glow-2 {
  position: absolute;
  bottom: -80px;
  left: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-decorative-shape-1 {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 200px;
  height: 250px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.hero-decorative-shape-2 {
  position: absolute;
  bottom: 10%;
  left: 8%;
  width: 180px;
  height: 180px;
  background: rgba(34, 197, 94, 0.05);
  border-radius: 20% 60% 40% 80% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-decorative-accent-line {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-content-language-courses {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title-language-courses {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.hero-subtitle-language-courses {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #4b5563;
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.hero-stats-language-courses {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

.stat-item-language-courses {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.stat-number-language-courses {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.stat-label-language-courses {
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 500;
}

.hero-buttons-language-courses {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-buttons-language-courses .btn {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
}

@media (min-width: 768px) {
  .hero-section-language-courses {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
  
  .hero-stats-language-courses {
    gap: 4rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   POSTS SECTION - Featured Courses
   ═══════════════════════════════════════════════════════════ */

.posts-section-language-courses {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
}

.posts-header-language-courses {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.posts-title-language-courses {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: var(--space-md);
}

.posts-subtitle-language-courses {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto;
}

.posts-grid-language-courses {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.card-language-courses {
  flex: 1 1 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-language-courses:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
  border-color: rgba(16, 185, 129, 0.2);
}

.card-image-language-courses {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.card-title-language-courses {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.card-description-language-courses {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-language-courses {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.meta-badge-language-courses {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  background: rgba(16, 185, 129, 0.08);
  color: #059669;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.meta-badge-language-courses i {
  font-size: 0.75rem;
}

.card-link-language-courses {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: #059669;
  text-decoration: none;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.card-link-language-courses:hover {
  color: #047857;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .card-language-courses {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   LEARNING PATH SECTION - Process Steps
   ═══════════════════════════════════════════════════════════ */

.learning-path-section-language-courses {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f3f4f6;
}

.learning-header-language-courses {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.learning-title-language-courses {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: var(--space-md);
}

.learning-subtitle-language-courses {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto;
}

.learning-steps-language-courses {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.learning-step-language-courses {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border-left: 4px solid #059669;
  box-shadow: var(--shadow-sm);
}

.learning-step-number-language-courses {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.learning-step-content-language-courses {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.learning-step-title-language-courses {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
}

.learning-step-text-language-courses {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .learning-step-language-courses {
    padding: 2rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   FEATURES SECTION - Why Choose Us
   ═══════════════════════════════════════════════════════════ */

.features-section-language-courses {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
}

.features-decorative-glow-1 {
  position: absolute;
  top: 10%;
  left: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.features-decorative-glow-2 {
  position: absolute;
  bottom: 5%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.features-decorative-shape {
  position: absolute;
  top: 30%;
  right: 8%;
  width: 220px;
  height: 220px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.features-header-language-courses {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.features-title-language-courses {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: var(--space-md);
}

.features-subtitle-language-courses {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto;
}

.features-grid-language-courses {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.feature-card-language-courses {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-language-courses:hover {
  transform: translateY(-4px);
  border-color: #059669;
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.12);
}

.feature-icon-language-courses {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.12);
  border-radius: var(--radius-md);
  color: #059669;
  font-size: 1.5rem;
}

.feature-card-title-language-courses {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.feature-card-text-language-courses {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .feature-card-language-courses {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION - Call to Action
   ═══════════════════════════════════════════════════════════ */

.cta-section-language-courses {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.cta-decorative-accent {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

.cta-content-language-courses {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-language-courses {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.cta-text-language-courses {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #ecfdf5;
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.cta-button-language-courses {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #059669;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-button-language-courses:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-button-language-courses:active {
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .hero-stats-language-courses {
    gap: clamp(2rem, 4vw, 3rem);
  }
  
  .learning-step-language-courses {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .learning-step-number-language-courses {
    min-width: 50px;
  }
  
  .feature-card-language-courses {
    flex: 1 1 100%;
  }
}

@media (min-width: 1024px) {
  .hero-title-language-courses {
    font-size: 3.5rem;
  }
  
  .posts-title-language-courses {
    font-size: 2.5rem;
  }
  
  .learning-title-language-courses {
    font-size: 2.5rem;
  }
  
  .features-title-language-courses {
    font-size: 2.5rem;
  }
}

/* Accessibility: Focus states */
.btn:focus-visible,
.card-link-language-courses:focus-visible,
.cta-button-language-courses:focus-visible {
  outline: 2px solid #059669;
  outline-offset: 3px;
}

/* Motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Post Page 1 Styles */
.main-chinese-business-language {
  width: 100%;
}

.hero-section-chinese-business-language {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-content-chinese-business-language {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-chinese-business-language {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-chinese-business-language {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.25rem);
  line-height: 1.15;
  color: #111827;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-chinese-business-language {
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #4b5563;
}

.meta-badges-chinese-business-language {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-chinese-business-language {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-chinese-business-language i {
  font-size: 0.875rem;
}

.hero-stats-chinese-business-language {
  display: flex;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.stat-item-chinese-business-language {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-chinese-business-language {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.stat-label-chinese-business-language {
  font-size: 0.8125rem;
  color: #4b5563;
  font-weight: 500;
}

.hero-image-wrapper-chinese-business-language {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-chinese-business-language {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: block;
}

.breadcrumbs-chinese-business-language {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-chinese-business-language a {
  color: #059669;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-chinese-business-language a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-chinese-business-language span {
  color: #9ca3af;
}

.introduction-section-chinese-business-language {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.introduction-content-chinese-business-language {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.introduction-text-chinese-business-language {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.introduction-title-chinese-business-language {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  color: #111827;
  font-weight: 700;
}

.introduction-description-chinese-business-language {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #4b5563;
}

.introduction-image-wrapper-chinese-business-language {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-chinese-business-language {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: block;
}

.foundations-section-chinese-business-language {
  background: #f3f4f6;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.section-header-chinese-business-language {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.section-tag-chinese-business-language {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.foundations-title-chinese-business-language {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  color: #111827;
  font-weight: 700;
  margin-bottom: 1rem;
}

.foundations-subtitle-chinese-business-language {
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.steps-wrapper-chinese-business-language {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-card-chinese-business-language {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card-chinese-business-language:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.step-number-chinese-business-language {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-chinese-business-language {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-chinese-business-language {
  font-size: clamp(1.05rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #111827;
}

.step-text-chinese-business-language {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: #4b5563;
}

.key-skills-section-chinese-business-language {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.key-skills-content-chinese-business-language {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.key-skills-text-chinese-business-language {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.key-skills-title-chinese-business-language {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  color: #111827;
  font-weight: 700;
}

.key-skills-description-chinese-business-language {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #4b5563;
}

.skills-list-chinese-business-language {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skill-item-chinese-business-language {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 8px;
  border-left: 4px solid #059669;
}

.skill-icon-chinese-business-language {
  color: #059669;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.skill-text-chinese-business-language {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: #4b5563;
}

.key-skills-image-wrapper-chinese-business-language {
  flex: 1 1 50%;
  max-width: 50%;
}

.key-skills-image-chinese-business-language {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: block;
}

.practical-section-chinese-business-language {
  background: #f3f4f6;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.scenarios-grid-chinese-business-language {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.scenario-card-chinese-business-language {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.scenario-card-chinese-business-language:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.scenario-icon-chinese-business-language {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(5, 150, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 1.5rem;
  margin: 0 auto;
}

.scenario-title-chinese-business-language {
  font-size: clamp(1.05rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #111827;
}

.scenario-text-chinese-business-language {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: #4b5563;
}

.culture-section-chinese-business-language {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.culture-content-chinese-business-language {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.culture-image-wrapper-chinese-business-language {
  flex: 1 1 50%;
  max-width: 50%;
}

.culture-image-chinese-business-language {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: block;
}

.culture-text-chinese-business-language {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.culture-title-chinese-business-language {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  color: #111827;
  font-weight: 700;
}

.culture-description-chinese-business-language {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #4b5563;
}

.featured-quote-chinese-business-language {
  padding: 2rem 2.5rem;
  border-left: 4px solid #059669;
  background: #f9fafb;
  margin: 1rem 0;
  border-radius: 8px;
}

.quote-text-chinese-business-language {
  font-size: clamp(1.05rem, 2vw + 0.5rem, 1.25rem);
  font-style: italic;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-chinese-business-language {
  font-size: 0.875rem;
  color: #4b5563;
  font-style: normal;
}

.conclusion-section-chinese-business-language {
  background: #f3f4f6;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-chinese-business-language {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-chinese-business-language {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  color: #111827;
  font-weight: 700;
}

.conclusion-description-chinese-business-language {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #4b5563;
}

.cta-box-chinese-business-language {
  background: linear-gradient(135deg, #059669, #10b981);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

.cta-title-chinese-business-language {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cta-description-chinese-business-language {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #ecfdf5;
  margin-bottom: 1.5rem;
}

.btn-cta-chinese-business-language {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #059669;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.btn-cta-chinese-business-language:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.related-section-chinese-business-language {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.related-title-chinese-business-language {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  color: #111827;
  font-weight: 700;
  margin-bottom: 1rem;
}

.related-subtitle-chinese-business-language {
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-chinese-business-language {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 3rem;
}

.related-card-chinese-business-language {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.related-card-chinese-business-language:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: #059669;
}

.related-card-image-wrapper-chinese-business-language {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f3f4f6;
}

.related-card-image-chinese-business-language {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-chinese-business-language:hover .related-card-image-chinese-business-language {
  transform: scale(1.05);
}

.related-card-content-chinese-business-language {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.related-card-title-chinese-business-language {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.related-card-text-chinese-business-language {
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.6;
  color: #4b5563;
}

.related-card-link-chinese-business-language {
  color: #059669;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.2s ease;
  margin-top: 0.5rem;
}

.related-card-link-chinese-business-language:hover {
  color: #047857;
  text-decoration: underline;
}

.disclaimer-section-chinese-business-language {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-box-chinese-business-language {
  background: #ffffff;
  border-left: 4px solid #059669;
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-chinese-business-language {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.disclaimer-text-chinese-business-language {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: #4b5563;
}

@media (max-width: 768px) {
  .hero-content-chinese-business-language {
    flex-direction: column;
  }

  .hero-text-wrapper-chinese-business-language,
  .hero-image-wrapper-chinese-business-language {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .introduction-content-chinese-business-language,
  .key-skills-content-chinese-business-language,
  .culture-content-chinese-business-language {
    flex-direction: column;
  }

  .introduction-text-chinese-business-language,
  .introduction-image-wrapper-chinese-business-language,
  .key-skills-text-chinese-business-language,
  .key-skills-image-wrapper-chinese-business-language,
  .culture-image-wrapper-chinese-business-language,
  .culture-text-chinese-business-language {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-card-chinese-business-language {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats-chinese-business-language {
    gap: 1.5rem;
  }

  .stat-number-chinese-business-language {
    font-size: 1.5rem;
  }

  .scenario-card-chinese-business-language,
  .related-card-chinese-business-language {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-cards-chinese-business-language {
    gap: 1.5rem;
  }

  .breadcrumbs-chinese-business-language {
    font-size: 0.75rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .scenarios-grid-chinese-business-language {
    justify-content: flex-start;
  }

  .scenario-card-chinese-business-language {
    flex: 1 1 calc(50% - 1rem);
  }

  .related-card-chinese-business-language {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .scenarios-grid-chinese-business-language {
    gap: 1.5rem;
  }

  .scenario-card-chinese-business-language {
    flex: 1 1 calc(33.333% - 1rem);
    max-width: 380px;
  }

  .related-cards-chinese-business-language {
    gap: 2rem;
  }

  .related-card-chinese-business-language {
    flex: 1 1 calc(33.333% - 1.3rem);
  }
}

/* Post Page 2 Styles */
.main-english-for-professionals {
  width: 100%;
}

.hero-section-english-for-professionals {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #f9fafb;
  overflow: hidden;
}

.hero-content-english-for-professionals {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-block-english-for-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-english-for-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-english-for-professionals {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-english-for-professionals {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #4b5563;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.5;
}

.hero-meta-english-for-professionals {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.meta-badge-english-for-professionals {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #d1fae5;
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-english-for-professionals i {
  font-size: 0.875rem;
}

.hero-stats-english-for-professionals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.stat-item-english-for-professionals {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-english-for-professionals {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.stat-label-english-for-professionals {
  font-size: 0.875rem;
  color: #4b5563;
  opacity: 0.9;
}

.hero-image-english-for-professionals {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.breadcrumbs-english-for-professionals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: 0.875rem;
}

.breadcrumbs-english-for-professionals a {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-english-for-professionals a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-english-for-professionals span {
  color: #9ca3af;
}

.introduction-section-english-for-professionals {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #ffffff;
  overflow: hidden;
}

.intro-content-english-for-professionals {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-block-english-for-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-block-english-for-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-english-for-professionals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.intro-description-english-for-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-english-for-professionals {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.structure-section-english-for-professionals {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #f3f4f6;
  overflow: hidden;
}

.structure-header-english-for-professionals {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag-english-for-professionals {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: #d1fae5;
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.structure-title-english-for-professionals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.structure-subtitle-english-for-professionals {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.structure-steps-english-for-professionals {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.structure-step-english-for-professionals {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.structure-step-number-english-for-professionals {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.structure-step-content-english-for-professionals {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.structure-step-title-english-for-professionals {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
}

.structure-step-text-english-for-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

.skills-section-english-for-professionals {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #ffffff;
  overflow: hidden;
}

.skills-content-english-for-professionals {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.skills-text-block-english-for-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.skills-image-block-english-for-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.skills-title-english-for-professionals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.skills-description-english-for-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.skills-cards-english-for-professionals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.skills-card-english-for-professionals {
  flex: 1 1 calc(50% - 0.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #f9fafb;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

.skills-card-icon-english-for-professionals {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d1fae5;
  color: #059669;
  border-radius: 10px;
  font-size: 1.25rem;
}

.skills-card-title-english-for-professionals {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #111827;
}

.skills-card-text-english-for-professionals {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
}

.skills-image-english-for-professionals {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.industries-section-english-for-professionals {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #f3f4f6;
  overflow: hidden;
}

.industries-header-english-for-professionals {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.industries-title-english-for-professionals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.industries-content-english-for-professionals {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.industries-image-block-english-for-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.industries-text-block-english-for-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.industries-image-english-for-professionals {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.industries-text-english-for-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.quote-section-english-for-professionals {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #ffffff;
  overflow: hidden;
}

.featured-quote-english-for-professionals {
  padding: clamp(2rem, 4vw, 2.5rem);
  border-left: 4px solid #059669;
  background: #ecfdf5;
  margin: 0;
  border-radius: 8px;
}

.quote-text-english-for-professionals {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #111827;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.6;
}

.quote-author-english-for-professionals {
  font-size: 0.875rem;
  color: #4b5563;
  font-style: normal;
  opacity: 0.8;
}

.learning-section-english-for-professionals {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #ffffff;
  overflow: hidden;
}

.learning-content-english-for-professionals {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.learning-text-block-english-for-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.learning-image-block-english-for-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.learning-title-english-for-professionals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.learning-description-english-for-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.learning-image-english-for-professionals {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.conclusion-section-english-for-professionals {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #f3f4f6;
  overflow: hidden;
}

.conclusion-content-english-for-professionals {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-english-for-professionals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.conclusion-text-english-for-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-cta-english-for-professionals {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.btn-primary-conclusion-english-for-professionals {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  background: #059669;
  color: #ffffff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.btn-primary-conclusion-english-for-professionals:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(5, 150, 105, 0.2);
}

.btn-outline-conclusion-english-for-professionals {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border: 2px solid #059669;
  color: #059669;
  background: transparent;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.btn-outline-conclusion-english-for-professionals:hover {
  background: #ecfdf5;
  color: #047857;
  border-color: #047857;
}

.disclaimer-section-english-for-professionals {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #ffffff;
  overflow: hidden;
}

.disclaimer-content-english-for-professionals {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f9fafb;
  border-radius: 10px;
  border-left: 4px solid #9ca3af;
}

.disclaimer-title-english-for-professionals {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.disclaimer-text-english-for-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.7;
}

.related-section-english-for-professionals {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #f3f4f6;
  overflow: hidden;
}

.related-header-english-for-professionals {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.related-title-english-for-professionals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.related-subtitle-english-for-professionals {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #4b5563;
}

.related-cards-english-for-professionals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-english-for-professionals {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-english-for-professionals:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.related-card-image-english-for-professionals {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e5e7eb;
}

.related-card-img-english-for-professionals {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-english-for-professionals:hover .related-card-img-english-for-professionals {
  transform: scale(1.05);
}

.related-card-content-english-for-professionals {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.related-card-title-english-for-professionals {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.related-card-text-english-for-professionals {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: #4b5563;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-english-for-professionals {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #059669;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.related-card-link-english-for-professionals:hover {
  color: #047857;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .hero-content-english-for-professionals,
  .intro-content-english-for-professionals,
  .skills-content-english-for-professionals,
  .industries-content-english-for-professionals,
  .learning-content-english-for-professionals {
    flex-direction: column;
  }

  .hero-text-block-english-for-professionals,
  .hero-image-block-english-for-professionals,
  .intro-text-block-english-for-professionals,
  .intro-image-block-english-for-professionals,
  .skills-text-block-english-for-professionals,
  .skills-image-block-english-for-professionals,
  .industries-image-block-english-for-professionals,
  .industries-text-block-english-for-professionals,
  .learning-text-block-english-for-professionals,
  .learning-image-block-english-for-professionals {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-english-for-professionals {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .skills-card-english-for-professionals {
    flex: 1 1 100%;
  }

  .related-card-english-for-professionals {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .structure-step-english-for-professionals {
    flex-direction: column;
    text-align: center;
  }

  .structure-step-number-english-for-professionals {
    min-width: auto;
  }

  .conclusion-cta-english-for-professionals {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-primary-conclusion-english-for-professionals,
  .btn-outline-conclusion-english-for-professionals {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .hero-section-english-for-professionals {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .introduction-section-english-for-professionals {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .structure-section-english-for-professionals {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .skills-section-english-for-professionals {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .industries-section-english-for-professionals {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .quote-section-english-for-professionals {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .learning-section-english-for-professionals {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .conclusion-section-english-for-professionals {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .disclaimer-section-english-for-professionals {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .related-section-english-for-professionals {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .skills-card-english-for-professionals {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

/* Post Page 3 Styles */
.main-german-travel-language {
  width: 100%;
  background: var(--color-bg-primary);
}

.hero-section-german-travel-language {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-content-german-travel-language {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-block-german-travel-language {
  flex: 1 1 45%;
  min-width: 0;
}

.hero-image-block-german-travel-language {
  flex: 1 1 55%;
  min-width: 0;
}

.hero-title-german-travel-language {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-subtitle-german-travel-language {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-meta-german-travel-language {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meta-badge-german-travel-language {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-german-travel-language i {
  color: #059669;
}

.hero-stats-german-travel-language {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-top: 2rem;
  border-top: 2px solid #e2e8f0;
}

.stat-item-german-travel-language {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-german-travel-language {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.stat-label-german-travel-language {
  font-size: 0.875rem;
  color: #64748b;
}

.hero-image-german-travel-language {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: block;
}

.breadcrumbs-german-travel-language {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-german-travel-language a {
  color: #059669;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-german-travel-language a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-german-travel-language span {
  color: #cbd5e1;
}

.intro-section-german-travel-language {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  overflow: hidden;
}

.intro-content-german-travel-language {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-german-travel-language {
  flex: 1 1 50%;
  min-width: 0;
}

.intro-image-german-travel-language {
  flex: 1 1 50%;
  min-width: 0;
}

.intro-title-german-travel-language {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.intro-description-german-travel-language {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-img-german-travel-language {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: block;
}

.content-one-section-german-travel-language {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8fafc;
  overflow: hidden;
}

.content-one-wrapper-german-travel-language {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.content-one-text-german-travel-language {
  flex: 1 1 50%;
  min-width: 0;
}

.content-one-image-german-travel-language {
  flex: 1 1 50%;
  min-width: 0;
}

.content-one-title-german-travel-language {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.content-one-description-german-travel-language {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.phrases-list-german-travel-language {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  border-left: 4px solid #059669;
}

.phrase-item-german-travel-language {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e2e8f0;
}

.phrase-item-german-travel-language:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.phrase-german-german-travel-language {
  font-size: 1rem;
  font-weight: 600;
  color: #059669;
}

.phrase-translation-german-travel-language {
  font-size: 0.9375rem;
  color: #64748b;
}

.content-one-img-german-travel-language {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: block;
}

.content-two-section-german-travel-language {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  overflow: hidden;
}

.content-two-wrapper-german-travel-language {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.content-two-image-german-travel-language {
  flex: 1 1 50%;
  min-width: 0;
  order: -1;
}

.content-two-text-german-travel-language {
  flex: 1 1 50%;
  min-width: 0;
}

.content-two-title-german-travel-language {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.content-two-description-german-travel-language {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.scenario-block-german-travel-language {
  background: #f8fafc;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}

.scenario-title-german-travel-language {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.scenario-text-german-travel-language {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.content-two-img-german-travel-language {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: block;
}

.content-three-section-german-travel-language {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8fafc;
  overflow: hidden;
}

.content-three-wrapper-german-travel-language {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.content-three-text-german-travel-language {
  flex: 1 1 50%;
  min-width: 0;
}

.content-three-image-german-travel-language {
  flex: 1 1 50%;
  min-width: 0;
}

.content-three-title-german-travel-language {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.content-three-description-german-travel-language {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.featured-quote-german-travel-language {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #059669;
  background: #ecfdf5;
  margin: 2rem 0;
  font-style: italic;
}

.quote-text-german-travel-language {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-german-travel-language {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.content-three-img-german-travel-language {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: block;
}

.tips-section-german-travel-language {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #1e293b;
  overflow: hidden;
}

.tips-header-german-travel-language {
  text-align: center;
  margin-bottom: 3rem;
}

.tips-title-german-travel-language {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.tips-subtitle-german-travel-language {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.tips-steps-german-travel-language {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tips-step-german-travel-language {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tips-step-number-german-travel-language {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #10b981;
  flex-shrink: 0;
  min-width: 60px;
}

.tips-step-content-german-travel-language {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tips-step-title-german-travel-language {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.tips-step-text-german-travel-language {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.conclusion-section-german-travel-language {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  overflow: hidden;
}

.conclusion-content-german-travel-language {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-german-travel-language {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.conclusion-description-german-travel-language {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta-box-german-travel-language {
  background: linear-gradient(135deg, #059669, #10b981);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  margin-top: 2.5rem;
}

.cta-title-german-travel-language {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-text-german-travel-language {
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  color: #ecfdf5;
  margin-bottom: 1.5rem;
}

.cta-box-german-travel-language .btn {
  background: #ffffff;
  color: #059669;
  font-weight: 600;
}

.cta-box-german-travel-language .btn:hover {
  background: #f0fdf4;
}

.related-section-german-travel-language {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8fafc;
  overflow: hidden;
}

.related-header-german-travel-language {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-german-travel-language {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.related-subtitle-german-travel-language {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-german-travel-language {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-german-travel-language {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-german-travel-language:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.related-card-image-german-travel-language {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-german-travel-language {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-german-travel-language {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-german-travel-language {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.related-card-text-german-travel-language {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-link-german-travel-language {
  color: #059669;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.9375rem;
}

.related-link-german-travel-language:hover {
  color: #047857;
  text-decoration: underline;
}

.disclaimer-section-german-travel-language {
  padding: clamp(2rem, 6vw, 4rem) 0;
  background: #f0fdf4;
  border-top: 1px solid #d1fae5;
  border-bottom: 1px solid #d1fae5;
  overflow: hidden;
}

.disclaimer-content-german-travel-language {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-german-travel-language {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #047857;
  margin-bottom: 1rem;
}

.disclaimer-text-german-travel-language {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #0f5f3e;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-content-german-travel-language,
  .intro-content-german-travel-language,
  .content-one-wrapper-german-travel-language,
  .content-two-wrapper-german-travel-language,
  .content-three-wrapper-german-travel-language {
    flex-direction: column;
  }

  .content-two-image-german-travel-language {
    order: 0;
  }

  .hero-text-block-german-travel-language,
  .hero-image-block-german-travel-language,
  .intro-text-german-travel-language,
  .intro-image-german-travel-language,
  .content-one-text-german-travel-language,
  .content-one-image-german-travel-language,
  .content-two-text-german-travel-language,
  .content-two-image-german-travel-language,
  .content-three-text-german-travel-language,
  .content-three-image-german-travel-language {
    flex: 1 1 100%;
  }

  .hero-stats-german-travel-language {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-item-german-travel-language {
    align-items: center;
  }

  .related-card-german-travel-language {
    flex: 1 1 100%;
    max-width: none;
  }

  .tips-step-german-travel-language {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Post Page 4 Styles */
.main-spanish-international-trade {
  width: 100%;
  background: var(--color-bg-primary);
  font-family: var(--font-primary);
}

.hero-section-spanish-international-trade {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.hero-content-spanish-international-trade {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-spanish-international-trade {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-spanish-international-trade {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-subtitle-spanish-international-trade {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-spanish-international-trade {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-spanish-international-trade {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-spanish-international-trade i {
  color: #059669;
  font-size: 0.875rem;
}

.hero-stats-spanish-international-trade {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  padding-top: 2rem;
  border-top: 2px solid #e5e7eb;
}

.stat-item-spanish-international-trade {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-spanish-international-trade {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #059669;
  line-height: 1;
}

.stat-label-spanish-international-trade {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #4b5563;
  font-weight: 500;
}

.hero-image-wrapper-spanish-international-trade {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-spanish-international-trade {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.breadcrumbs-spanish-international-trade {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-spanish-international-trade a {
  color: #059669;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-spanish-international-trade a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-spanish-international-trade span {
  color: #9ca3af;
}

.intro-section-spanish-international-trade {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.intro-content-spanish-international-trade {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-spanish-international-trade {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-spanish-international-trade {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.intro-description-spanish-international-trade {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-spanish-international-trade {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-spanish-international-trade {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.learning-path-section-spanish-international-trade {
  background: #f3f4f6;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.section-header-spanish-international-trade {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.section-tag-spanish-international-trade {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title-spanish-international-trade {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle-spanish-international-trade {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.steps-wrapper-spanish-international-trade {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-card-spanish-international-trade {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card-spanish-international-trade:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-number-spanish-international-trade {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-spanish-international-trade {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.step-title-spanish-international-trade {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.step-text-spanish-international-trade {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

.key-concepts-section-spanish-international-trade {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.concepts-wrapper-spanish-international-trade {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.concepts-text-spanish-international-trade {
  flex: 1 1 50%;
  max-width: 50%;
}

.concepts-title-spanish-international-trade {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.concepts-description-spanish-international-trade {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.concepts-list-spanish-international-trade {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.concept-item-spanish-international-trade {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.concept-icon-spanish-international-trade {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: var(--radius-lg);
  color: #059669;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.concept-details-spanish-international-trade {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.concept-name-spanish-international-trade {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #111827;
}

.concept-info-spanish-international-trade {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: #4b5563;
  line-height: 1.6;
}

.concepts-image-spanish-international-trade {
  flex: 1 1 50%;
  max-width: 50%;
}

.concepts-img-spanish-international-trade {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.challenges-section-spanish-international-trade {
  background: #f9fafb;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.challenges-content-spanish-international-trade {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.challenges-image-spanish-international-trade {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.challenges-img-spanish-international-trade {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.challenges-text-spanish-international-trade {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-title-spanish-international-trade {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.challenges-quote-spanish-international-trade {
  padding: 1.5rem 2rem;
  border-left: 4px solid #059669;
  background: #ecfdf5;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.quote-text-spanish-international-trade {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-style: italic;
  color: #111827;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.quote-author-spanish-international-trade {
  font-size: 0.875rem;
  color: #4b5563;
  font-style: normal;
}

.challenges-description-spanish-international-trade {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.practice-section-spanish-international-trade {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.practice-cards-spanish-international-trade {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.practice-card-spanish-international-trade {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.practice-card-spanish-international-trade:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.practice-icon-spanish-international-trade {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: var(--radius-lg);
  color: #059669;
  font-size: 1.5rem;
}

.practice-card-title-spanish-international-trade {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.practice-card-text-spanish-international-trade {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

.resources-section-spanish-international-trade {
  background: #f3f4f6;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.resources-wrapper-spanish-international-trade {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.resources-text-spanish-international-trade {
  flex: 1 1 50%;
  max-width: 50%;
}

.resources-title-spanish-international-trade {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.resources-description-spanish-international-trade {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.resources-list-spanish-international-trade {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.resource-item-spanish-international-trade {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.resource-item-spanish-international-trade::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: bold;
}

.resource-item-spanish-international-trade strong {
  color: #111827;
  font-weight: 600;
}

.resources-image-spanish-international-trade {
  flex: 1 1 50%;
  max-width: 50%;
}

.resources-img-spanish-international-trade {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.conclusion-section-spanish-international-trade {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-spanish-international-trade {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-spanish-international-trade {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.conclusion-text-spanish-international-trade {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-spanish-international-trade {
  margin-top: 2.5rem;
}

.btn-conclusion-spanish-international-trade {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #059669;
  color: #ffffff;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-conclusion-spanish-international-trade:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.disclaimer-section-spanish-international-trade {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-box-spanish-international-trade {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.disclaimer-title-spanish-international-trade {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.disclaimer-text-spanish-international-trade {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: #4b5563;
  line-height: 1.7;
}

.related-section-spanish-international-trade {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.related-title-spanish-international-trade {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.related-subtitle-spanish-international-trade {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.related-cards-spanish-international-trade {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-spanish-international-trade {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-spanish-international-trade:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.related-card-image-spanish-international-trade {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.related-card-content-spanish-international-trade {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  flex: 1;
}

.related-card-title-spanish-international-trade {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.related-card-description-spanish-international-trade {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: #4b5563;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-spanish-international-trade {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  font-weight: 600;
  color: #059669;
  text-decoration: none;
  transition: color 0.2s ease;
  align-self: flex-start;
}

.related-card-link-spanish-international-trade:hover {
  color: #047857;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-content-spanish-international-trade {
    flex-direction: column;
  }

  .hero-text-wrapper-spanish-international-trade,
  .hero-image-wrapper-spanish-international-trade,
  .intro-text-spanish-international-trade,
  .intro-image-spanish-international-trade,
  .concepts-text-spanish-international-trade,
  .concepts-image-spanish-international-trade,
  .challenges-image-spanish-international-trade,
  .challenges-text-spanish-international-trade,
  .resources-text-spanish-international-trade,
  .resources-image-spanish-international-trade {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .challenges-content-spanish-international-trade {
    flex-direction: column;
  }

  .challenges-image-spanish-international-trade {
    order: 0;
  }

  .step-card-spanish-international-trade {
    flex-direction: column;
  }

  .step-number-spanish-international-trade {
    min-width: auto;
  }

  .related-cards-spanish-international-trade {
    flex-direction: column;
  }

  .related-card-spanish-international-trade {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .hero-section-spanish-international-trade {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .intro-section-spanish-international-trade,
  .learning-path-section-spanish-international-trade,
  .key-concepts-section-spanish-international-trade,
  .challenges-section-spanish-international-trade,
  .practice-section-spanish-international-trade,
  .resources-section-spanish-international-trade,
  .conclusion-section-spanish-international-trade {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .related-cards-spanish-international-trade {
    gap: clamp(2rem, 4vw, 2.5rem);
  }
}

/* Post Page 5 Styles */
/* Main wrapper isolation */
.main-french-culture-science {
  width: 100%;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section-french-culture-science {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-content-french-culture-science {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.hero-text-block-french-culture-science {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-french-culture-science {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-french-culture-science {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-french-culture-science {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.meta-badges-french-culture-science {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-french-culture-science {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-french-culture-science i {
  font-size: 0.875rem;
}

.hero-stats-french-culture-science {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2rem;
}

.stat-item-french-culture-science {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-french-culture-science {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #059669;
  line-height: 1;
}

.stat-label-french-culture-science {
  font-size: 0.875rem;
  color: #64748b;
}

.hero-image-french-culture-science {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  .hero-content-french-culture-science {
    flex-direction: column;
  }
  
  .hero-text-block-french-culture-science,
  .hero-image-block-french-culture-science {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-stats-french-culture-science {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

/* ============================================================
   INTRODUCTION SECTION
   ============================================================ */
.intro-section-french-culture-science {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-french-culture-science {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.intro-text-french-culture-science {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-french-culture-science {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-french-culture-science {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-french-culture-science {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-text-french-culture-science {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
}

.intro-img-french-culture-science {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  .intro-content-french-culture-science {
    flex-direction: column;
  }
  
  .intro-text-french-culture-science,
  .intro-image-french-culture-science {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ============================================================
   BENEFITS SECTION
   ============================================================ */
.benefits-section-french-culture-science {
  background: #f3f4f6;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.benefits-header-french-culture-science {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.benefits-title-french-culture-science {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.benefits-subtitle-french-culture-science {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.benefits-cards-french-culture-science {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.benefits-card-french-culture-science {
  flex: 1 1 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-card-french-culture-science:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.benefits-card-icon-french-culture-science {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 12px;
  color: #059669;
  font-size: 1.75rem;
}

.benefits-card-title-french-culture-science {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.benefits-card-text-french-culture-science {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .benefits-card-french-culture-science {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ============================================================
   CONTENT ONE SECTION
   ============================================================ */
.content-one-section-french-culture-science {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.content-one-wrapper-french-culture-science {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.content-one-text-french-culture-science {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-image-french-culture-science {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-title-french-culture-science {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-one-description-french-culture-science {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-one-text-french-culture-science {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.featured-quote-french-culture-science {
  padding: 2rem 2.5rem;
  border-left: 4px solid #059669;
  background: #f9fafb;
  margin: 2rem 0;
  border-radius: 4px;
}

.quote-text-french-culture-science {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.6;
}

.quote-author-french-culture-science {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.content-img-french-culture-science {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  .content-one-wrapper-french-culture-science {
    flex-direction: column;
  }
  
  .content-one-text-french-culture-science,
  .content-one-image-french-culture-science {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ============================================================
   CONTENT TWO SECTION
   ============================================================ */
.content-two-section-french-culture-science {
  background: #f3f4f6;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.content-two-wrapper-french-culture-science {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.content-two-image-french-culture-science {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-two-text-french-culture-science {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-title-french-culture-science {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-two-description-french-culture-science {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-two-text-french-culture-science {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-two-highlight-french-culture-science {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #059669;
}

.highlight-title-french-culture-science {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.highlight-list-french-culture-science {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.highlight-item-french-culture-science {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  padding-left: 1.5rem;
  position: relative;
}

.highlight-item-french-culture-science::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: bold;
}

@media (max-width: 768px) {
  .content-two-wrapper-french-culture-science {
    flex-direction: column;
  }
  
  .content-two-image-french-culture-science,
  .content-two-text-french-culture-science {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .content-two-image-french-culture-science {
    order: 0;
  }
}

/* ============================================================
   LEARNING PATH SECTION
   ============================================================ */
.learning-path-section-french-culture-science {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.learning-path-header-french-culture-science {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.learning-path-title-french-culture-science {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.learning-path-subtitle-french-culture-science {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.learning-path-steps-french-culture-science {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.learning-path-step-french-culture-science {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f3f4f6;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.learning-path-step-number-french-culture-science {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.learning-path-step-content-french-culture-science {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-french-culture-science {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.step-text-french-culture-science {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .learning-path-step-french-culture-science {
    flex-direction: column;
  }
  
  .learning-path-step-number-french-culture-science {
    min-width: auto;
  }
}

/* ============================================================
   PRACTICE SECTION
   ============================================================ */
.practice-section-french-culture-science {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.practice-content-wrapper-french-culture-science {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.practice-text-french-culture-science {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-image-french-culture-science {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-french-culture-science {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.practice-description-french-culture-science {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.practice-text-french-culture-science {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
}

.practice-img-french-culture-science {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  .practice-content-wrapper-french-culture-science {
    flex-direction: column;
  }
  
  .practice-text-french-culture-science,
  .practice-image-french-culture-science {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ============================================================
   CONCLUSION SECTION
   ============================================================ */
.conclusion-section-french-culture-science {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-french-culture-science {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-french-culture-science {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-french-culture-science {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-box-french-culture-science {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

.cta-title-french-culture-science {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-text-french-culture-science {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-box-french-culture-science .btn {
  background: #ffffff;
  color: #059669;
  margin-top: 0;
}

.cta-box-french-culture-science .btn:hover {
  background: #f0f0f0;
}

/* ============================================================
   RELATED SECTION
   ============================================================ */
.related-section-french-culture-science {
  background: #f3f4f6;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.related-header-french-culture-science {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.related-title-french-culture-science {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-french-culture-science {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-french-culture-science {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-french-culture-science {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-french-culture-science:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.related-card-image-french-culture-science {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-french-culture-science img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-content-french-culture-science {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.related-card-title-french-culture-science {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-text-french-culture-science {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-french-culture-science {
  color: #059669;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: auto;
}

.related-card-link-french-culture-science:hover {
  color: #047857;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-card-french-culture-science {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ============================================================
   DISCLAIMER SECTION
   ============================================================ */
.disclaimer-section-french-culture-science {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-french-culture-science {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-french-culture-science {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-french-culture-science {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

/* ============================================================
   RESPONSIVE TYPOGRAPHY
   ============================================================ */
@media (min-width: 768px) {
  .hero-section-french-culture-science {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
  
  .intro-section-french-culture-science {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
  
  .benefits-section-french-culture-science {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
  
  .content-one-section-french-culture-science {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
  
  .content-two-section-french-culture-science {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
  
  .learning-path-section-french-culture-science {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
  
  .practice-section-french-culture-science {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
  
  .conclusion-section-french-culture-science {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
  
  .related-section-french-culture-science {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-title-french-culture-science {
    font-size: 3.5rem;
  }
  
  .intro-title-french-culture-science {
    font-size: 2.75rem;
  }
  
  .benefits-title-french-culture-science {
    font-size: 2.75rem;
  }
  
  .content-one-title-french-culture-science {
    font-size: 2.75rem;
  }
  
  .content-two-title-french-culture-science {
    font-size: 2.75rem;
  }
  
  .learning-path-title-french-culture-science {
    font-size: 2.75rem;
  }
  
  .practice-title-french-culture-science {
    font-size: 2.75rem;
  }
  
  .conclusion-title-french-culture-science {
    font-size: 2.75rem;
  }
  
  .related-title-french-culture-science {
    font-size: 2.75rem;
  }
}

/* About Page Styles */
:root {
    --color-bg-primary: #f9fafb;
    --color-bg-secondary: #ffffff;
    --color-bg-tertiary: #f3f4f6;
    --color-bg-card: #ffffff;
    --color-text-primary: #111827;
    --color-text-secondary: #4b5563;
    --color-text-muted: #9ca3af;
    --color-primary: #059669;
    --color-primary-hover: #047857;
    --color-secondary: #10b981;
    --color-accent-light: #d1fae5;
    --color-accent-lighter: #ecfdf5;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
  }

  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700&display=swap');

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: var(--font-primary);
    line-height: 1.6;
  }

  .container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: clamp(1rem, 5vw, 2rem);
    padding-right: clamp(1rem, 5vw, 2rem);
  }

  .language-academy-journey-about {
    width: 100%;
    background: var(--color-bg-primary);
  }

  .hero-section-academy-about {
    background: #0f172a;
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
  }

  .hero-content-academy-about {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
    max-width: 900px;
  }

  .hero-title-academy-about {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-subtitle-academy-about {
    font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
    color: #cbd5e1;
    line-height: 1.4;
  }

  .hero-stats-academy-about {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: 1.5rem;
  }

  .stat-item-academy-about {
    flex: 0 1 auto;
  }

  .stat-number-academy-about {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-primary);
    display: block;
    line-height: 1;
  }

  .stat-label-academy-about {
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    color: #94a3b8;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .hero-image-academy-about {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: clamp(1.5rem, 3vw, 2rem) 0 0 0;
    border-radius: var(--radius-lg);
    display: block;
  }

  .mission-section-academy-about {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
  }

  .mission-content-academy-about {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
  }

  .mission-header-academy-about {
    text-align: left;
  }

  .mission-tag-academy-about {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--color-accent-lighter);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }

  .mission-title-academy-about {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .mission-description-academy-about {
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
    color: #4b5563;
    line-height: 1.7;
    max-width: 700px;
  }

  .mission-grid-academy-about {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: 2rem;
  }

  .mission-card-academy-about {
    flex: 1 1 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-lg);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .mission-card-academy-about:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  .mission-card-icon-academy-about {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-light);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    font-size: 1.5rem;
  }

  .mission-card-title-academy-about {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
  }

  .mission-card-text-academy-about {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
  }

  .approach-section-academy-about {
    background: #111d2f;
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
  }

  .approach-content-academy-about {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vw, 4rem);
  }

  .approach-header-academy-about {
    text-align: center;
    margin-bottom: 1rem;
  }

  .approach-tag-academy-about {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }

  .approach-title-academy-about {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
  }

  .approach-subtitle-academy-about {
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
  }

  .steps-container-academy-about {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .step-item-academy-about {
    display: flex;
    align-items: flex-start;
    gap: clamp(1.5rem, 3vw, 2rem);
    padding: clamp(1.5rem, 3vw, 2rem);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .step-item-academy-about:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(16, 185, 129, 0.5);
  }

  .step-number-academy-about {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
    flex-shrink: 0;
    min-width: 60px;
  }

  .step-content-academy-about {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
  }

  .step-title-academy-about {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #ffffff;
  }

  .step-text-academy-about {
    font-size: 0.9375rem;
    color: #94a3b8;
    line-height: 1.6;
  }

  .values-section-academy-about {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
  }

  .values-content-academy-about {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vw, 4rem);
  }

  .values-intro-academy-about {
    text-align: center;
    margin-bottom: 1rem;
  }

  .values-tag-academy-about {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--color-accent-lighter);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }

  .values-title-academy-about {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
  }

  .values-subtitle-academy-about {
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
  }

  .values-grid-academy-about {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .value-card-academy-about {
    flex: 1 1 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
    transition: all 0.3s ease;
  }

  .value-card-academy-about:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(4px);
  }

  .value-card-title-academy-about {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
  }

  .value-card-text-academy-about {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
  }

  .commitment-section-academy-about {
    background: linear-gradient(135deg, #047857 0%, var(--color-primary) 100%);
    padding: clamp(3rem, 8vw, 5rem) 0;
    position: relative;
    overflow: hidden;
  }

  .commitment-content-academy-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .commitment-title-academy-about {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
  }

  .commitment-text-academy-about {
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
    color: #f0fdf4;
    max-width: 600px;
    line-height: 1.7;
  }

  .commitment-btn-academy-about {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
    background: #ffffff;
    color: var(--color-primary);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: clamp(0.875rem, 1vw, 1rem);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
  }

  .commitment-btn-academy-about:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  .disclaimer-section-academy-about {
    background: var(--color-bg-primary);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e5e7eb;
  }

  .disclaimer-content-academy-about {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
  }

  .disclaimer-header-academy-about {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .disclaimer-icon-academy-about {
    color: var(--color-primary);
    font-size: 1.25rem;
  }

  .disclaimer-title-academy-about {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
  }

  .disclaimer-text-academy-about {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.7;
  }

  @media (max-width: 768px) {
    .hero-stats-academy-about {
      gap: 1.5rem;
    }

    .stat-number-academy-about {
      font-size: 1.75rem;
    }

    .mission-grid-academy-about,
    .values-grid-academy-about {
      flex-direction: column;
    }

    .mission-card-academy-about,
    .value-card-academy-about {
      max-width: none;
    }
  }

  @media (max-width: 480px) {
    .step-item-academy-about {
      flex-direction: column;
      align-items: flex-start;
    }

    .step-number-academy-about {
      min-width: auto;
    }
  }

/* Privacy Page Styles */
.policy-hub {
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.policy-hub .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

/* Hero section */
.policy-hero-section {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
  border-bottom: 1px solid var(--color-accent-light);
}

.policy-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.policy-hero-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.policy-hero-section .policy-updated {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
  font-style: italic;
}

/* Content sections */
.policy-content-section {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.policy-content-section:nth-child(even) {
  background: var(--color-bg-primary);
}

.policy-section-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.policy-content-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.policy-content-section:nth-child(even) h2 {
  color: var(--color-primary);
}

.policy-content-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.policy-content-section:nth-child(even) p {
  color: var(--color-text-secondary);
}

.policy-content-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-left: clamp(1.25rem, 3vw, 2rem);
  list-style: disc;
}

.policy-content-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.policy-content-section:nth-child(even) li {
  color: var(--color-text-secondary);
}

/* Contact section */
.policy-contact-section {
  background: var(--color-accent-lighter);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.policy-contact-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.policy-contact-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
}

.policy-contact-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.policy-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.policy-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.policy-contact-item strong {
  font-weight: 600;
  color: var(--color-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.policy-contact-item span {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .policy-hero-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .policy-content-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .policy-contact-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .policy-contact-info {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .policy-hero-section {
    padding: 6rem 0;
  }

  .policy-content-section {
    padding: 6rem 0;
  }

  .policy-contact-section {
    padding: 6rem 0;
  }
}

/* Thank You Page Styles */
.thank-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.thank-section .container {
  width: 100%;
  max-width: 1440px;
  padding: 0 clamp(1rem, 4vw, 2rem);
  margin: 0 auto;
}

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(2rem, 4vw, 3rem);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--color-primary);
  animation: successBounce 0.6s ease-out;
}

.thank-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.thank-lead {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-secondary);
  font-weight: 600;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-message {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0);
}

@keyframes successBounce {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Tablet - 768px+ */
@media (min-width: 768px) {
  .thank-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .thank-content {
    gap: clamp(2rem, 4vw, 3rem);
    padding: clamp(2.5rem, 5vw, 4rem);
  }
}

/* Desktop - 1024px+ */
@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .thank-content {
    gap: clamp(2.5rem, 5vw, 3.5rem);
    padding: clamp(3rem, 6vw, 5rem);
  }

  .btn:hover {
    transform: translateY(-3px);
  }
}

/* Large Desktop - 1440px+ */
@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
  }

  .thank-content {
    gap: 3.5rem;
    padding: 5rem;
  }
}

/* 404 Page Styles */
.main.error-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.error-section {
  width: 100%;
  background: linear-gradient(135deg, #f9fafb 0%, #ecfdf5 100%);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.error-section .container {
  max-width: 1440px;
  padding: 0 clamp(1rem, 4vw, 2rem);
  margin: 0 auto;
  width: 100%;
}

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(2rem, 5vw, 3rem);
}

.error-visual {
  position: relative;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.error-code-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  font-family: var(--font-heading);
  margin: 0;
  letter-spacing: -0.02em;
}

.error-decoration {
  position: absolute;
  top: -20px;
  right: -40px;
  font-size: clamp(3rem, 8vw, 5rem);
  color: #d1fae5;
  opacity: 0.6;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.error-message {
  max-width: 600px;
  width: 100%;
}

.error-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--color-text-primary);
  margin: 0 0 clamp(0.75rem, 2vw, 1rem) 0;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.error-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  margin: 0 0 clamp(1.5rem, 3vw, 2rem) 0;
  font-weight: 600;
}

.error-description {
  font-size: clamp(0.875rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 clamp(1.5rem, 3vw, 2.5rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  width: 100%;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-item i {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-primary);
}

.feature-item span {
  font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
  color: var(--color-text-primary);
  font-weight: 500;
  line-height: 1.4;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
  gap: 0.5rem;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .error-section {
    padding: 4rem 0;
  }

  .error-code-wrapper {
    margin-bottom: 2rem;
  }

  .error-decoration {
    right: -60px;
    top: -30px;
  }

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

@media (min-width: 1024px) {
  .error-section {
    padding: 6rem 0;
    min-height: 100vh;
  }

  .error-content {
    gap: 3rem;
  }

  .error-code-wrapper {
    margin-bottom: 2.5rem;
  }

  .feature-item {
    padding: 1.5rem;
  }

  .feature-item:hover {
    transform: translateY(-8px);
  }
}

@media (min-width: 1440px) {
  .error-decoration {
    right: -80px;
    top: -40px;
  }
}

.header-lingua-portal-mobile-toggle.active{
  display: none;
} 