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

:root {
  --color-bg-primary-dark: #0f172a;
  --color-bg-secondary-dark: #1e293b;
  --color-bg-tertiary-dark: #334155;
  --color-bg-primary-light: #ffffff;
  --color-bg-secondary-light: #f8fafc;
  --color-bg-tertiary-light: #f1f5f9;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  --color-text-primary-dark: #ffffff;
  --color-text-secondary-dark: #cbd5e1;
  --color-text-muted-dark: #94a3b8;
  --color-text-primary-light: #0f172a;
  --color-text-secondary-light: #475569;
  --color-text-muted-light: #64748b;
  
  --color-primary: #06b6d4;
  --color-primary-hover: #22d3ee;
  --color-secondary: #f59e0b;
  --color-accent-tertiary: #10b981;
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', 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.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

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

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

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

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

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

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

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

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

button, input, textarea, select {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

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

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

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

.btn-secondary:hover {
  background: #f97316;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
  background: var(--color-primary);
  color: #000000;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-outline-light:hover {
  background: #ffffff;
  color: var(--color-bg-primary-dark);
}

form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

input[type="checkbox"],
input[type="radio"] {
  cursor: pointer;
}

label {
  font-weight: 500;
  display: block;
  margin-bottom: var(--space-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-submit-btn {
  padding: var(--space-md) var(--space-xl);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

::placeholder {
  opacity: 0.7;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-secondary-light);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-hover);
}

@media (max-width: 1024px) {
  .container {
    padding: 0 var(--space-md);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }
  
  h2 {
    font-size: clamp(1.25rem, 4vw, 2rem);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }
  
  .btn {
    width: 100%;
  }
}
:root {
  --color-bg-primary-dark: #0f172a;
  --color-bg-secondary-dark: #1e293b;
  --color-bg-tertiary-dark: #334155;
  --color-bg-primary-light: #ffffff;
  --color-bg-secondary-light: #f8fafc;
  --color-bg-tertiary-light: #f1f5f9;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  --color-text-primary-dark: #ffffff;
  --color-text-secondary-dark: #cbd5e1;
  --color-text-muted-dark: #94a3b8;
  --color-text-primary-light: #0f172a;
  --color-text-secondary-light: #475569;
  --color-text-muted-light: #64748b;
  --color-primary: #06b6d4;
  --color-primary-hover: #22d3ee;
  --color-secondary: #f59e0b;
  --color-accent-tertiary: #10b981;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

.header-language-forge {
  background: var(--color-bg-primary-dark);
  padding: var(--space-md) 0;
  position: static;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.header-language-forge-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(var(--space-sm), 4vw, var(--space-lg));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(var(--space-sm), 3vw, var(--space-lg));
}

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

.header-language-forge-brand:hover {
  opacity: 0.8;
}

.header-language-forge-logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.header-language-forge-logo-text {
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffffff;
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

.header-language-forge-desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(var(--space-sm), 2vw, var(--space-lg));
  flex: 1;
  justify-content: center;
}

.header-language-forge-nav-link {
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  transition: all 300ms ease;
  position: relative;
  padding: 0.5rem 0;
}

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

.header-language-forge-nav-link:hover {
  color: var(--color-primary);
}

.header-language-forge-nav-link:hover::after {
  width: 100%;
}

.header-language-forge-cta-button {
  display: none;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
  background: var(--color-primary);
  color: var(--color-bg-primary-dark);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 300ms ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-language-forge-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

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

.header-language-forge-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  z-index: 101;
}

.header-language-forge-toggle-icon {
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 300ms ease;
}

.header-language-forge-mobile-toggle[aria-expanded="true"] .header-language-forge-toggle-icon:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.header-language-forge-mobile-toggle[aria-expanded="true"] .header-language-forge-toggle-icon:nth-child(2) {
  opacity: 0;
}

.header-language-forge-mobile-toggle[aria-expanded="true"] .header-language-forge-toggle-icon:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.header-language-forge-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary-dark);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  padding-top: 80px;
}

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

.header-language-forge-mobile-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  background: var(--color-bg-primary-dark);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-language-forge-mobile-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 300ms ease;
}

.header-language-forge-mobile-close:hover {
  color: var(--color-primary);
}

.header-language-forge-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg) var(--space-md);
}

.header-language-forge-mobile-link {
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 300ms ease;
}

.header-language-forge-mobile-link:hover {
  color: var(--color-primary);
}

.header-language-forge-mobile-cta {
  padding: var(--space-md) var(--space-lg);
  background: var(--color-primary);
  color: var(--color-bg-primary-dark);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: all 300ms ease;
  margin: auto var(--space-md) var(--space-lg);
  display: block;
}

.header-language-forge-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .header-language-forge {
    padding: var(--space-lg) 0;
  }

  .header-language-forge-container {
    gap: var(--space-xl);
  }

  .header-language-forge-logo-img {
    width: 44px;
    height: 44px;
  }

  .header-language-forge-logo-text {
    font-size: 1.375rem;
  }

  .header-language-forge-desktop-nav {
    display: flex;
  }

  .header-language-forge-cta-button {
    display: inline-block;
  }

  .header-language-forge-mobile-toggle {
    display: none;
  }

  .header-language-forge-mobile-menu {
    display: none;
  }
}

@media (min-width: 1024px) {
  .header-language-forge-container {
    gap: var(--space-2xl);
  }

  .header-language-forge-logo-text {
    font-size: 1.5rem;
  }

  .header-language-forge-nav-link {
    font-size: 0.9375rem;
  }

  .header-language-forge-cta-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

@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;
  }
}

    .certification-portal {
  width: 100%;
}

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

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

.hero-section-index {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1a2847 100%);
}

.hero-ambient-glow-index {
  position: absolute;
  top: -10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-mesh-index {
  position: absolute;
  top: 20%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-index {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(34, 211, 238, 0.08);
  border-radius: 60% 40% 30% 70% / 40% 60% 70% 30%;
  z-index: 2;
  pointer-events: none;
}

.hero-radial-pulse-index {
  position: absolute;
  top: 50%;
  right: 15%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-corner-light-index {
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.hero-wave-accent-index {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-orbit-element-index {
  position: absolute;
  bottom: 20%;
  left: 3%;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 20px;
  transform: rotate(-15deg);
  z-index: 2;
  pointer-events: none;
}

.hero-content-index {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-title-index {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-subtitle-index {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #06b6d4;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-description-index {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  justify-content: center;
  margin: 3rem 0;
}

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

.stat-number-index {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

.stat-label-index {
  display: block;
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.hero-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 2.5rem;
}

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

.btn-primary {
  background: #06b6d4;
  color: #0f172a;
}

.btn-primary:hover {
  background: #22d3ee;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.features-section-index {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #ffffff;
}

.features-accent-shape-index {
  position: absolute;
  top: 5%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.features-glow-left-index {
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.features-glow-right-index {
  position: absolute;
  top: 25%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.09) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.features-floating-panel-index {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 200px;
  height: 150px;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  transform: rotate(8deg);
  z-index: 2;
  pointer-events: none;
}

.features-line-divider-index {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.features-organic-blob-index {
  position: absolute;
  top: 10%;
  right: 3%;
  width: 220px;
  height: 220px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 50% 40% 60% 40% / 40% 50% 30% 50%;
  z-index: 1;
  pointer-events: none;
}

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

.features-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.features-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.features-subtitle-index {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

.features-card-index:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(59, 130, 246, 0.2);
}

.features-card-icon-index {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  color: #2563eb;
  font-size: 1.5rem;
}

.features-card-title-index {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.features-card-text-index {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.process-section-index {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1a2847 100%);
}

.process-shape-accent-index {
  position: absolute;
  top: 10%;
  right: -3%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.process-glow-center-index {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.process-floating-element-index {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 180px;
  height: 180px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 2;
  pointer-events: none;
}

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

.process-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #22d3ee;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.process-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.process-subtitle-index {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.process-step-index {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  transition: all 300ms ease;
}

.process-step-index:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(6, 182, 212, 0.4);
}

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

.process-step-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.process-step-title-index {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.process-step-text-index {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.featured-section-index {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #f8fafc;
}

.featured-mesh-index {
  position: absolute;
  top: -5%;
  left: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.featured-glow-accent-index {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.09) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.featured-line-element-index {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.4), transparent);
  z-index: 2;
  pointer-events: none;
}

.featured-floating-shape-index {
  position: absolute;
  bottom: 25%;
  left: 8%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 20px;
  transform: rotate(-12deg);
  z-index: 2;
  pointer-events: none;
}

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

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

.featured-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.featured-subtitle-index {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card-index:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
}

.featured-card-image-index {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

.featured-card-title-index {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.featured-card-text-index {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
  flex: 1;
}

.featured-card-link-index {
  font-size: 0.9375rem;
  color: #06b6d4;
  text-decoration: none;
  font-weight: 500;
  transition: color 300ms ease;
}

.featured-card-link-index:hover {
  color: #22d3ee;
}

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

.btn-secondary {
  background: #f59e0b;
  color: #000000;
}

.btn-secondary:hover {
  background: #f97316;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.testimonial-section-index {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1a2847 100%);
}

.testimonial-shape-index {
  position: absolute;
  top: 5%;
  left: -3%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.09) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.testimonial-glow-index {
  position: absolute;
  bottom: 20%;
  right: 8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.testimonial-accent-line-index {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.testimonial-floating-index {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(34, 211, 238, 0.05);
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: 25px;
  transform: rotate(15deg);
  z-index: 2;
  pointer-events: none;
}

.testimonial-header-index {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.testimonial-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #22d3ee;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.testimonial-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
}

.testimonial-quote-index {
  position: relative;
  z-index: 10;
  padding: 2.5rem;
  border-left: 4px solid #06b6d4;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  margin: 2.5rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.testimonial-cite-index {
  font-size: 0.9375rem;
  color: #cbd5e1;
  font-style: normal;
}

.testimonial-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
  margin-top: 3rem;
  position: relative;
  z-index: 10;
}

.testimonial-stat-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.testimonial-stat-value-index {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #06b6d4;
}

.testimonial-stat-label-index {
  display: block;
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.faq-section-index {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #ffffff;
}

.faq-shape-index {
  position: absolute;
  top: 10%;
  right: -4%;
  width: 320px;
  height: 320px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50% 40% 60% 40% / 40% 60% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.faq-glow-left-index {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.09) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.faq-glow-right-index {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.faq-accent-index {
  position: absolute;
  bottom: 10%;
  left: 8%;
  width: 200px;
  height: 150px;
  background: rgba(34, 211, 238, 0.05);
  border: 1px solid rgba(34, 211, 238, 0.1);
  border-radius: 12px;
  transform: rotate(-8deg);
  z-index: 2;
  pointer-events: none;
}

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

.faq-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(34, 197, 94, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.faq-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.faq-subtitle-index {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-content-index {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

.faq-items-index {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item-index {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 300ms ease;
}

.faq-item-index:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.faq-item-index[open] {
  background: #eff6ff;
  border-color: #93c5fd;
}

.faq-question-index {
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
}

.faq-question-index::marker {
  color: #06b6d4;
}

.faq-answer-index {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.faq-info-index {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(34, 211, 238, 0.05) 100%);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.faq-info-title-index {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
}

.faq-info-text-index {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.faq-info-benefits-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-benefit-index {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #1e293b;
}

.faq-benefit-index i {
  color: #10b981;
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .faq-content-index {
    flex-direction: column;
  }

  .faq-items-index {
    flex: 1 1 100%;
  }

  .faq-info-index {
    flex: 1 1 100%;
  }
}

.contact-section-index {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1a2847 100%);
}

.contact-shape-accent-index {
  position: absolute;
  top: 5%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.contact-glow-index {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.contact-floating-element-index {
  position: absolute;
  top: 50%;
  left: 8%;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  z-index: 2;
  pointer-events: none;
}

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

.contact-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #22d3ee;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.contact-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact-subtitle-index {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-content-index {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

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

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

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

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

.contact-input-index,
.contact-textarea-index {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: all 300ms ease;
}

.contact-input-index::placeholder,
.contact-textarea-index::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-input-index:focus,
.contact-textarea-index:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

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

.contact-submit-index {
  width: 100%;
  padding: 1rem 2rem;
  background: #06b6d4;
  color: #0f172a;
  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-index:hover {
  background: #22d3ee;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.contact-info-index {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-title-index {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
}

.contact-info-text-index {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
}

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

.contact-benefit-item-index {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-benefit-item-index i {
  color: #06b6d4;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-benefit-title-index {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.contact-benefit-text-index {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.5;
}

.contact-info-note-index {
  font-size: 0.875rem;
  color: #94a3b8;
  font-style: italic;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .contact-content-index {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-form-wrapper-index {
    flex: 1 1 100%;
  }

  .contact-info-index {
    flex: 1 1 100%;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #1e293b;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 1.5rem);
}

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

.cookie-banner-text {
  color: #e2e8f0;
  font-size: 0.875rem;
  margin: 0;
  flex: 1 1 auto;
  min-width: 250px;
}

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

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

.cookie-btn-accept {
  background: #06b6d4;
  color: #0f172a;
}

.cookie-btn-accept:hover {
  background: #22d3ee;
}

.cookie-btn-decline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 1rem;
    gap: 0.75rem;
  }

  .cookie-banner-text {
    flex: 1 1 100%;
    text-align: center;
  }

  .cookie-banner-buttons {
    flex: 1 1 100%;
    justify-content: center;
  }

  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1 1 45%;
    min-width: 100px;
  }
}

@media (max-width: 480px) {
  .hero-stats-index {
    gap: 1.5rem;
  }

  .stat-number-index {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
  }

  .process-step-index {
    gap: 1.5rem;
  }

  .featured-cards-index {
    gap: 1rem;
  }

  .faq-content-index {
    gap: 1.5rem;
  }

  .contact-content-index {
    gap: 1.5rem;
  }
}

@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 {
    background: var(--color-bg-primary-dark);
    padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem) 0;
    position: relative;
    overflow: hidden;
  }

  .footer .container {
    max-width: 1440px;
    margin: 0 auto;
    padding-inline: clamp(1rem, 5vw, 2rem);
    position: relative;
    z-index: 10;
  }

  .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, 4vw, 3rem);
    justify-content: space-between;
  }

  .footer-section {
    flex: 1 1 220px;
    min-width: 180px;
  }

  
  .footer-about {
    flex: 1 1 300px;
    max-width: 380px;
  }

  .footer-about-title {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
  }

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

  
  .footer-nav-title,
  .footer-contact-title,
  .footer-legal-title {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: clamp(0.875rem, 2vw, 1.25rem);
    font-family: var(--font-primary);
  }

  .footer-nav-list,
  .footer-legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 0.875rem);
  }

  .footer-nav-link,
  .footer-legal-link {
    font-size: clamp(0.8125rem, 1vw, 0.9375rem);
    color: var(--color-text-muted-dark);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    display: inline-block;
  }

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

  
  .footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: clamp(0.625rem, 1vw, 0.875rem);
  }

  .footer-contact-item {
    font-size: clamp(0.8125rem, 1vw, 0.9375rem);
    color: var(--color-text-muted-dark);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
  }

  
  .footer-copyright {
    flex: 1 1 100%;
    border-top: 1px solid rgba(203, 213, 225, 0.1);
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
  }

  .footer-copyright-text {
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    color: var(--color-text-muted-dark);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
  }

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

    .footer-section {
      flex: 1 1 100%;
    }

    .footer-about {
      max-width: 100%;
      order: -1;
    }

    .footer-copyright {
      order: 999;
    }

    .footer-nav-list,
    .footer-legal-list {
      flex-direction: row;
      flex-wrap: wrap;
      gap: clamp(1rem, 3vw, 1.5rem);
    }

    .footer-nav-link,
    .footer-legal-link {
      font-size: 0.875rem;
    }
  }

  
  .footer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
  }

  .footer::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    filter: blur(70px);
    z-index: 1;
    pointer-events: none;
  }

  
  .footer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: clamp(1rem, 5vw, 2rem);
    right: clamp(1rem, 5vw, 2rem);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.2), transparent);
    z-index: 5;
    pointer-events: none;
  }

  @media (max-width: 768px) {
    .footer::before {
      width: 300px;
      height: 300px;
      top: -30%;
      right: -20%;
    }

    .footer::after {
      width: 250px;
      height: 250px;
      bottom: -10%;
      left: -15%;
    }
  }

  
  .footer-nav-link:focus-visible,
  .footer-legal-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
    border-radius: 2px;
  }

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

.category-page-language-certification {
  width: 100%;
}

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

.hero-deco-glow-left-language-certification {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-glow-right-language-certification {
  position: absolute;
  top: 20%;
  right: -8%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-shape-language-certification {
  position: absolute;
  bottom: -15%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-deco-accent-language-certification {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-content-language-certification {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.hero-header-language-certification {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-tag-language-certification {
  display: inline-block;
  padding: 0.375rem 1.125rem;
  background: rgba(6, 182, 212, 0.15);
  color: #22d3ee;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  width: fit-content;
}

.hero-title-language-certification {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
}

.hero-description-language-certification {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 650px;
}

.hero-stats-language-certification {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(2rem, 3vw, 2.5rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number-language-certification {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

.stat-label-language-certification {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.hero-cta-language-certification {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: clamp(1rem, 2vw, 1.5rem);
}

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

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

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

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

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

.card-language-certification {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1 1 300px;
  max-width: 380px;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-language-certification:hover {
  transform: translateY(-8px);
  border-color: #cbd5e1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-image-language-certification {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.card-title-language-certification {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.card-description-language-certification {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.65;
  flex-grow: 1;
}

.card-meta-language-certification {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.meta-badge-language-certification {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #0f172a;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.meta-badge-language-certification i {
  color: #06b6d4;
  font-size: 0.875rem;
}

.card-link-language-certification {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: #06b6d4;
  color: #000000;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.card-link-language-certification:hover {
  background: #22d3ee;
  transform: translateY(-2px);
}

.learning-path-section-language-certification {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #f8fafc;
  position: relative;
}

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

.section-tag-language-certification {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.learning-subtitle-language-certification {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.steps-container-language-certification {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.step-item-language-certification {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

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

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

.step-title-language-certification {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #0f172a;
}

.step-text-language-certification {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.65;
}

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

.features-deco-one-language-certification {
  position: absolute;
  top: 5%;
  right: -8%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.features-deco-two-language-certification {
  position: absolute;
  bottom: -10%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

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

.features-subtitle-language-certification {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.featured-quote-language-certification {
  padding: clamp(2rem, 3vw, 2.5rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #06b6d4;
  background: #f8fafc;
  margin: clamp(2rem, 4vw, 3rem) auto;
  max-width: 800px;
  position: relative;
  z-index: 10;
}

.featured-quote-language-certification p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #0f172a;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.featured-quote-language-certification cite {
  font-size: 0.9375rem;
  color: #64748b;
  font-style: normal;
}

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

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

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

.feature-icon-language-certification {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06b6d4;
  font-size: 1.75rem;
}

.feature-title-language-certification {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #0f172a;
}

.feature-text-language-certification {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .step-item-language-certification {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-language-certification {
    min-width: auto;
  }

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

  .hero-cta-language-certification {
    flex-direction: column;
  }

  .hero-cta-language-certification a {
    width: 100%;
  }

  .card-language-certification {
    flex: 1 1 100%;
    max-width: none;
  }

  .feature-card-language-certification {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-title-language-certification {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
  }

  .posts-grid-language-certification {
    gap: 1rem;
  }

  .card-language-certification {
    padding: 1rem;
  }

  .meta-badge-language-certification {
    font-size: 0.75rem;
    padding: 0.375rem 0.875rem;
  }
}

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

.main-ielts-academic-preparation {
  width: 100%;
  overflow: hidden;
}

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

.hero-section-ielts-academic-preparation {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.breadcrumbs-ielts-academic-preparation {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.breadcrumbs-ielts-academic-preparation a {
  color: #06b6d4;
  transition: color 0.3s ease;
}

.breadcrumbs-ielts-academic-preparation a:hover {
  color: #22d3ee;
}

.breadcrumbs-ielts-academic-preparation span {
  color: #64748b;
}

.hero-content-ielts-academic-preparation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-ielts-academic-preparation {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-wrapper-ielts-academic-preparation {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-ielts-academic-preparation {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.article-meta-ielts-academic-preparation {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meta-badge-ielts-academic-preparation {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-ielts-academic-preparation i {
  font-size: 0.875rem;
}

.hero-stats-ielts-academic-preparation {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.stat-item-ielts-academic-preparation {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-ielts-academic-preparation {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

.stat-label-ielts-academic-preparation {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
}

.hero-image-ielts-academic-preparation {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .hero-content-ielts-academic-preparation {
    flex-direction: column;
  }

  .hero-text-wrapper-ielts-academic-preparation,
  .hero-image-wrapper-ielts-academic-preparation {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-ielts-academic-preparation {
    gap: 1.5rem;
  }
}

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

.intro-content-ielts-academic-preparation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.intro-text-ielts-academic-preparation {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-ielts-academic-preparation {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-ielts-academic-preparation {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-ielts-academic-preparation {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.featured-quote-ielts-academic-preparation {
  padding: 2rem 2.5rem;
  border-left: 4px solid #06b6d4;
  background: #f8fafc;
  margin: 2rem 0;
  font-style: italic;
}

.featured-quote-ielts-academic-preparation p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.featured-quote-ielts-academic-preparation cite {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.intro-img-ielts-academic-preparation {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-ielts-academic-preparation {
    flex-direction: column;
  }

  .intro-text-ielts-academic-preparation,
  .intro-image-ielts-academic-preparation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.preparation-steps-section-ielts-academic-preparation {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.section-header-ielts-academic-preparation {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-ielts-academic-preparation {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title-ielts-academic-preparation {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.section-subtitle-ielts-academic-preparation {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.steps-container-ielts-academic-preparation {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-ielts-academic-preparation {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.step-number-ielts-academic-preparation {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.step-content-ielts-academic-preparation {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-ielts-academic-preparation {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
}

.step-text-ielts-academic-preparation {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .step-item-ielts-academic-preparation {
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

.core-skills-section-ielts-academic-preparation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.skills-wrapper-ielts-academic-preparation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.skills-text-ielts-academic-preparation {
  flex: 1 1 50%;
  max-width: 50%;
}

.skills-image-ielts-academic-preparation {
  flex: 1 1 50%;
  max-width: 50%;
}

.skills-intro-ielts-academic-preparation {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.skills-list-ielts-academic-preparation {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.skill-item-ielts-academic-preparation {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid #06b6d4;
}

.skill-name-ielts-academic-preparation {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.skill-desc-ielts-academic-preparation {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.skills-img-ielts-academic-preparation {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .skills-wrapper-ielts-academic-preparation {
    flex-direction: column;
  }

  .skills-text-ielts-academic-preparation,
  .skills-image-ielts-academic-preparation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.features-section-ielts-academic-preparation {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-grid-ielts-academic-preparation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.feature-card-ielts-academic-preparation {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-ielts-academic-preparation:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon-ielts-academic-preparation {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 12px;
  color: #06b6d4;
  font-size: 1.75rem;
}

.feature-title-ielts-academic-preparation {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.feature-text-ielts-academic-preparation {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

.exam-tips-section-ielts-academic-preparation {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-wrapper-ielts-academic-preparation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.tips-content-ielts-academic-preparation {
  flex: 1 1 50%;
  max-width: 50%;
}

.tips-image-ielts-academic-preparation {
  flex: 1 1 50%;
  max-width: 50%;
}

.tips-title-ielts-academic-preparation {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.tips-intro-ielts-academic-preparation {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.tips-list-ielts-academic-preparation {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.tip-item-ielts-academic-preparation {
  font-size: 0.9375rem;
  color: #e2e8f0;
  line-height: 1.7;
  padding-left: 0;
}

.tips-img-ielts-academic-preparation {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .tips-wrapper-ielts-academic-preparation {
    flex-direction: column;
  }

  .tips-content-ielts-academic-preparation,
  .tips-image-ielts-academic-preparation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.scoring-section-ielts-academic-preparation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.scoring-grid-ielts-academic-preparation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.score-card-ielts-academic-preparation {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  text-align: center;
}

.score-range-ielts-academic-preparation {
  font-size: 3rem;
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

.score-level-ielts-academic-preparation {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.score-desc-ielts-academic-preparation {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

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

.cta-section-ielts-academic-preparation {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-content-ielts-academic-preparation {
  text-align: center;
}

.cta-title-ielts-academic-preparation {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-text-ielts-academic-preparation {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #ecf0f1;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-button-ielts-academic-preparation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(2rem, 5vw, 3rem);
  background: #ffffff;
  color: #06b6d4;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: clamp(0.9375rem, 1vw, 1rem);
}

.cta-button-ielts-academic-preparation:hover {
  background: #f0f9fa;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.related-title-ielts-academic-preparation {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3rem;
  text-align: center;
}

.related-grid-ielts-academic-preparation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-ielts-academic-preparation {
  flex: 1 1 320px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-ielts-academic-preparation:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.related-card-image-ielts-academic-preparation {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.related-card-content-ielts-academic-preparation {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-ielts-academic-preparation {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.related-card-text-ielts-academic-preparation {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-ielts-academic-preparation {
  color: #06b6d4;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9375rem;
}

.related-card-link-ielts-academic-preparation:hover {
  color: #22d3ee;
}

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

.disclaimer-section-ielts-academic-preparation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-ielts-academic-preparation {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-ielts-academic-preparation {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-ielts-academic-preparation {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .preparation-steps-section-ielts-academic-preparation {
    padding: 5rem 0;
  }

  .core-skills-section-ielts-academic-preparation {
    padding: 5rem 0;
  }

  .features-section-ielts-academic-preparation {
    padding: 5rem 0;
  }

  .exam-tips-section-ielts-academic-preparation {
    padding: 5rem 0;
  }

  .scoring-section-ielts-academic-preparation {
    padding: 5rem 0;
  }

  .related-section-ielts-academic-preparation {
    padding: 5rem 0;
  }

  .disclaimer-section-ielts-academic-preparation {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-ielts-academic-preparation {
    padding: 6rem 0;
  }

  .intro-section-ielts-academic-preparation {
    padding: 6rem 0;
  }

  .preparation-steps-section-ielts-academic-preparation {
    padding: 6rem 0;
  }

  .core-skills-section-ielts-academic-preparation {
    padding: 6rem 0;
  }

  .features-section-ielts-academic-preparation {
    padding: 6rem 0;
  }

  .exam-tips-section-ielts-academic-preparation {
    padding: 6rem 0;
  }

  .scoring-section-ielts-academic-preparation {
    padding: 6rem 0;
  }

  .cta-section-ielts-academic-preparation {
    padding: 6rem 0;
  }

  .related-section-ielts-academic-preparation {
    padding: 6rem 0;
  }

  .disclaimer-section-ielts-academic-preparation {
    padding: 6rem 0;
  }
}

.main-nederlands-cnavt-diploma {
  width: 100%;
}

.breadcrumbs-nederlands-cnavt-diploma {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw, 0.9375rem);
  margin-bottom: 2rem;
  align-items: center;
}

.breadcrumbs-nederlands-cnavt-diploma a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.breadcrumbs-nederlands-cnavt-diploma a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-nederlands-cnavt-diploma span {
  color: #cbd5e1;
}

.hero-section-nederlands-cnavt-diploma {
  background: var(--color-bg-primary-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

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

.hero-text-block-nederlands-cnavt-diploma {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-nederlands-cnavt-diploma {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-nederlands-cnavt-diploma {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.article-meta-nederlands-cnavt-diploma {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-nederlands-cnavt-diploma {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--color-primary);
}

.meta-badge-nederlands-cnavt-diploma i {
  color: var(--color-primary);
}

.hero-description-nederlands-cnavt-diploma {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-stats-nederlands-cnavt-diploma {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 3vw, 3.5rem);
  margin-top: 2.5rem;
}

.stat-item-nederlands-cnavt-diploma {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-nederlands-cnavt-diploma {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-nederlands-cnavt-diploma {
  font-size: 0.875rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-image-nederlands-cnavt-diploma {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-content-nederlands-cnavt-diploma {
    flex-direction: column;
  }

  .hero-text-block-nederlands-cnavt-diploma,
  .hero-image-block-nederlands-cnavt-diploma {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-nederlands-cnavt-diploma {
    gap: 1.5rem;
  }
}

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

.intro-content-wrapper-nederlands-cnavt-diploma {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-block-nederlands-cnavt-diploma {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-block-nederlands-cnavt-diploma {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-nederlands-cnavt-diploma {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.intro-text-nederlands-cnavt-diploma {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.intro-image-nederlands-cnavt-diploma {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-wrapper-nederlands-cnavt-diploma {
    flex-direction: column;
  }

  .intro-text-block-nederlands-cnavt-diploma,
  .intro-image-block-nederlands-cnavt-diploma {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.why-section-nederlands-cnavt-diploma {
  background: var(--color-bg-secondary-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.section-header-nederlands-cnavt-diploma {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-tag-nederlands-cnavt-diploma {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-title-nederlands-cnavt-diploma {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.why-subtitle-nederlands-cnavt-diploma {
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.why-cards-nederlands-cnavt-diploma {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.why-card-nederlands-cnavt-diploma {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.why-card-nederlands-cnavt-diploma:hover {
  background: rgba(6, 182, 212, 0.1);
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.why-card-icon-nederlands-cnavt-diploma {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.why-card-title-nederlands-cnavt-diploma {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.why-card-text-nederlands-cnavt-diploma {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
}

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

.curriculum-section-nederlands-cnavt-diploma {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.curriculum-content-wrapper-nederlands-cnavt-diploma {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.curriculum-image-block-nederlands-cnavt-diploma {
  flex: 1 1 50%;
  max-width: 50%;
}

.curriculum-text-block-nederlands-cnavt-diploma {
  flex: 1 1 50%;
  max-width: 50%;
}

.curriculum-title-nederlands-cnavt-diploma {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.curriculum-text-nederlands-cnavt-diploma {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.curriculum-image-nederlands-cnavt-diploma {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.curriculum-steps-nederlands-cnavt-diploma {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.curriculum-step-nederlands-cnavt-diploma {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.curriculum-step-number-nederlands-cnavt-diploma {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

.curriculum-step-content-nederlands-cnavt-diploma {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.curriculum-step-title-nederlands-cnavt-diploma {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0f172a;
}

.curriculum-step-text-nederlands-cnavt-diploma {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .curriculum-content-wrapper-nederlands-cnavt-diploma {
    flex-direction: column;
  }

  .curriculum-image-block-nederlands-cnavt-diploma,
  .curriculum-text-block-nederlands-cnavt-diploma {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.features-section-nederlands-cnavt-diploma {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-title-nederlands-cnavt-diploma {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.features-subtitle-nederlands-cnavt-diploma {
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.features-cards-nederlands-cnavt-diploma {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.features-card-nederlands-cnavt-diploma {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.features-card-nederlands-cnavt-diploma:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
}

.features-card-icon-nederlands-cnavt-diploma {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.features-card-title-nederlands-cnavt-diploma {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0f172a;
}

.features-card-text-nederlands-cnavt-diploma {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

.requirements-section-nederlands-cnavt-diploma {
  background: var(--color-bg-secondary-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.requirements-content-wrapper-nederlands-cnavt-diploma {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.requirements-text-block-nederlands-cnavt-diploma {
  flex: 1 1 50%;
  max-width: 50%;
}

.requirements-image-block-nederlands-cnavt-diploma {
  flex: 1 1 50%;
  max-width: 50%;
}

.requirements-title-nederlands-cnavt-diploma {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.requirements-text-nederlands-cnavt-diploma {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.requirements-text-netherlands-cnavt-diploma {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.requirements-highlight-nederlands-cnavt-diploma {
  background: rgba(255, 255, 255, 0.05);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.requirements-highlight-title-nederlands-cnavt-diploma {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.requirements-list-nederlands-cnavt-diploma {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.requirements-list-item-nederlands-cnavt-diploma {
  font-size: 0.9375rem;
  color: #cbd5e1;
  padding-left: 1.75rem;
  position: relative;
}

.requirements-list-item-nederlands-cnavt-diploma::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.requirements-image-nederlands-cnavt-diploma {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .requirements-content-wrapper-nederlands-cnavt-diploma {
    flex-direction: column;
  }

  .requirements-text-block-nederlands-cnavt-diploma,
  .requirements-image-block-nederlands-cnavt-diploma {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-nederlands-cnavt-diploma {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-nederlands-cnavt-diploma {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.quote-text-nederlands-cnavt-diploma {
  font-size: clamp(1.0625rem, 2vw, 1.375rem);
  color: #0f172a;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.quote-cite-nederlands-cnavt-diploma {
  font-size: 0.9375rem;
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

.assessment-section-nederlands-cnavt-diploma {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.assessment-content-wrapper-nederlands-cnavt-diploma {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.assessment-image-block-nederlands-cnavt-diploma {
  flex: 1 1 50%;
  max-width: 50%;
}

.assessment-text-block-nederlands-cnavt-diploma {
  flex: 1 1 50%;
  max-width: 50%;
}

.assessment-title-nederlands-cnavt-diploma {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.assessment-text-nederlands-cnavt-diploma {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.assessment-image-nederlands-cnavt-diploma {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.assessment-steps-nederlands-cnavt-diploma {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.assessment-step-nederlands-cnavt-diploma {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.assessment-step-number-nederlands-cnavt-diploma {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

.assessment-step-content-nederlands-cnavt-diploma {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.assessment-step-title-nederlands-cnavt-diploma {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0f172a;
}

.assessment-step-text-nederlands-cnavt-diploma {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .assessment-content-wrapper-nederlands-cnavt-diploma {
    flex-direction: column;
  }

  .assessment-image-block-nederlands-cnavt-diploma,
  .assessment-text-block-nederlands-cnavt-diploma {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-nederlands-cnavt-diploma {
  background: var(--color-bg-primary-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-nederlands-cnavt-diploma {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-nederlands-cnavt-diploma {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.conclusion-text-nederlands-cnavt-diploma {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-text-netherlands-cnavt-diploma {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.conclusion-cta-box-nederlands-cnavt-diploma {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  margin-top: 2.5rem;
}

.cta-title-nederlands-cnavt-diploma {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-text-nederlands-cnavt-diploma {
  font-size: 0.9375rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.conclusion-cta-box-nederlands-cnavt-diploma .btn {
  margin-top: 1rem;
}

.disclaimer-section-nederlands-cnavt-diploma {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-box-nederlands-cnavt-diploma {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-nederlands-cnavt-diploma {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlands-cnavt-diploma {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

.related-section-nederlands-cnavt-diploma {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-title-nederlands-cnavt-diploma {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.related-subtitle-nederlands-cnavt-diploma {
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.related-cards-nederlands-cnavt-diploma {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-nederlands-cnavt-diploma {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #f8fafc;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.related-card-nederlands-cnavt-diploma:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
}

.related-card-image-nederlands-cnavt-diploma {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-content-nederlands-cnavt-diploma {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.related-card-title-nederlands-cnavt-diploma {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0f172a;
}

.related-card-text-nederlands-cnavt-diploma {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-nederlands-cnavt-diploma {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.3s ease;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.related-card-link-nederlands-cnavt-diploma:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

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

@media (max-width: 1024px) {
  .hero-section-netherlands-cnavt-diploma,
  .intro-section-nederlands-cnavt-diploma,
  .curriculum-section-nederlands-cnavt-diploma,
  .requirements-section-nederlands-cnavt-diploma,
  .assessment-section-nederlands-cnavt-diploma {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-nederlands-cnavt-diploma {
    font-size: 0.75rem;
  }

  .hero-stats-nederlands-cnavt-diploma {
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .stat-number-nederlands-cnavt-diploma {
    font-size: 1.75rem;
  }

  .stat-label-nederlands-cnavt-diploma {
    font-size: 0.75rem;
  }

  .requirements-list-item-nederlands-cnavt-diploma {
    padding-left: 1.5rem;
    font-size: 0.875rem;
  }
}

.main-cambridge-english-certification {
  width: 100%;
  overflow: hidden;
}

.hero-section-cambridge-english-certification {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.hero-text-block-cambridge-english-certification {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-cambridge-english-certification {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-cambridge-english-certification {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.5;
}

.article-meta-cambridge-english-certification {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.meta-badge-cambridge-english-certification {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.hero-stats-cambridge-english-certification {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin: 2rem 0;
  flex-wrap: wrap;
}

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

.stat-number-cambridge-english-certification {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  display: block;
}

.stat-label-cambridge-english-certification {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
  opacity: 0.9;
}

.hero-cta-cambridge-english-certification {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero-image-block-cambridge-english-certification {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-cambridge-english-certification {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-content-cambridge-english-certification {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-text-block-cambridge-english-certification,
  .hero-image-block-cambridge-english-certification {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-cambridge-english-certification {
    gap: 2rem;
  }
}

.introduction-section-cambridge-english-certification {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.introduction-text-cambridge-english-certification {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.introduction-title-cambridge-english-certification {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.introduction-description-cambridge-english-certification {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.introduction-image-cambridge-english-certification {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.introduction-image-cambridge-english-certification {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .introduction-content-cambridge-english-certification {
    flex-direction: column;
    gap: 2rem;
  }

  .introduction-text-cambridge-english-certification,
  .introduction-image-cambridge-english-certification {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.levels-section-cambridge-english-certification {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.levels-header-cambridge-english-certification {
  text-align: center;
  margin-bottom: 3rem;
}

.levels-tag-cambridge-english-certification {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.levels-title-cambridge-english-certification {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.levels-subtitle-cambridge-english-certification {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.levels-steps-cambridge-english-certification {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.levels-step-cambridge-english-certification {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(6, 182, 212, 0.1);
}

.levels-step-number-cambridge-english-certification {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.levels-step-content-cambridge-english-certification {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.levels-step-title-cambridge-english-certification {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.levels-step-text-cambridge-english-certification {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .levels-step-cambridge-english-certification {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .levels-step-number-cambridge-english-certification {
    font-size: 2rem;
    min-width: auto;
  }
}

.preparation-section-cambridge-english-certification {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.preparation-wrapper-cambridge-english-certification {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.preparation-text-cambridge-english-certification {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.preparation-title-cambridge-english-certification {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.preparation-description-cambridge-english-certification {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.featured-quote-cambridge-english-certification {
  padding: 2rem 2.5rem;
  border-left: 4px solid #06b6d4;
  background: #f8fafc;
  margin: 1.5rem 0;
  font-style: italic;
  border-radius: 8px;
}

.featured-quote-cambridge-english-certification p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.featured-quote-cambridge-english-certification cite {
  font-size: 0.875rem;
  color: #64748b;
  opacity: 0.8;
  font-style: normal;
  display: block;
}

.preparation-image-cambridge-english-certification {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preparation-image-cambridge-english-certification {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .preparation-wrapper-cambridge-english-certification {
    flex-direction: column;
    gap: 2rem;
  }

  .preparation-text-cambridge-english-certification,
  .preparation-image-cambridge-english-certification {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.features-section-cambridge-english-certification {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-header-cambridge-english-certification {
  text-align: center;
  margin-bottom: 3rem;
}

.features-tag-cambridge-english-certification {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.features-title-cambridge-english-certification {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.features-subtitle-cambridge-english-certification {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.features-card-cambridge-english-certification {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-card-cambridge-english-certification:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.features-card-icon-cambridge-english-certification {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 12px;
  color: #06b6d4;
  font-size: 1.5rem;
}

.features-card-title-cambridge-english-certification {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

.features-card-text-cambridge-english-certification {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

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

.exam-section-cambridge-english-certification {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.exam-wrapper-cambridge-english-certification {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.exam-image-cambridge-english-certification {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exam-image-cambridge-english-certification {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.exam-text-cambridge-english-certification {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.exam-title-cambridge-english-certification {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.exam-description-cambridge-english-certification {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.exam-cta-cambridge-english-certification {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .exam-wrapper-cambridge-english-certification {
    flex-direction: column;
    gap: 2rem;
  }

  .exam-image-cambridge-english-certification,
  .exam-text-cambridge-english-certification {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-cambridge-english-certification {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-cambridge-english-certification {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-cambridge-english-certification {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.conclusion-description-cambridge-english-certification {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.conclusion-cta-cambridge-english-certification {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.related-section-cambridge-english-certification {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-title-cambridge-english-certification {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3rem;
  text-align: center;
}

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

.related-card-cambridge-english-certification {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #ffffff;
}

.related-card-cambridge-english-certification:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.related-card-image-cambridge-english-certification {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-cambridge-english-certification {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-cambridge-english-certification {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

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

.related-card-text-cambridge-english-certification {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.related-card-link-cambridge-english-certification {
  color: #06b6d4;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.related-card-link-cambridge-english-certification:hover {
  color: #0891b2;
  text-decoration: underline;
}

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

.disclaimer-section-cambridge-english-certification {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-cambridge-english-certification {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.disclaimer-title-cambridge-english-certification {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: #1e293b;
}

.disclaimer-text-cambridge-english-certification {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .hero-section-cambridge-english-certification {
    padding: 6rem 0;
  }

  .introduction-section-cambridge-english-certification {
    padding: 6rem 0;
  }

  .levels-section-cambridge-english-certification {
    padding: 6rem 0;
  }

  .preparation-section-cambridge-english-certification {
    padding: 6rem 0;
  }

  .features-section-cambridge-english-certification {
    padding: 6rem 0;
  }

  .exam-section-cambridge-english-certification {
    padding: 6rem 0;
  }

  .conclusion-section-cambridge-english-certification {
    padding: 6rem 0;
  }

  .related-section-cambridge-english-certification {
    padding: 6rem 0;
  }

  .disclaimer-section-cambridge-english-certification {
    padding: 6rem 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }

  .hero-stats-cambridge-english-certification {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-cta-cambridge-english-certification {
    flex-direction: column;
  }

  .hero-cta-cambridge-english-certification .btn {
    width: 100%;
  }

  .conclusion-cta-cambridge-english-certification {
    flex-direction: column;
  }

  .conclusion-cta-cambridge-english-certification .btn {
    width: 100%;
  }

  .levels-step-cambridge-english-certification {
    padding: 1.5rem;
    gap: 1.25rem;
  }
}

.main-toefl-exam-preparation {
  width: 100%;
}

.hero-section-toefl-exam-preparation {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

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

.hero-text-block-toefl-exam-preparation {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-toefl-exam-preparation {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meta-badge-toefl-exam-preparation {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #22d3ee;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-toefl-exam-preparation i {
  font-size: 0.875rem;
}

.hero-stats-toefl-exam-preparation {
  display: flex;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item-toefl-exam-preparation {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-toefl-exam-preparation {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #06b6d4;
  display: block;
  line-height: 1;
}

.stat-label-toefl-exam-preparation {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.hero-image-block-toefl-exam-preparation {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-toefl-exam-preparation {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.breadcrumbs-toefl-exam-preparation {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumbs-toefl-exam-preparation a {
  color: #38bdf8;
  transition: color 0.2s ease;
}

.breadcrumbs-toefl-exam-preparation a:hover {
  color: #22d3ee;
}

.breadcrumbs-toefl-exam-preparation span {
  color: #64748b;
}

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

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

.intro-text-toefl-exam-preparation {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-toefl-exam-preparation {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.intro-description-toefl-exam-preparation {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-secondary-text-toefl-exam-preparation {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
}

.intro-image-block-toefl-exam-preparation {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-toefl-exam-preparation {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.methodology-section-toefl-exam-preparation {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.methodology-header-toefl-exam-preparation {
  text-align: center;
  margin-bottom: 3rem;
}

.methodology-tag-toefl-exam-preparation {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.methodology-title-toefl-exam-preparation {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.methodology-subtitle-toefl-exam-preparation {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.methodology-steps-toefl-exam-preparation {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.methodology-step-toefl-exam-preparation {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
}

.methodology-step-number-toefl-exam-preparation {
  font-size: 2.5rem;
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.methodology-step-content-toefl-exam-preparation {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.methodology-step-title-toefl-exam-preparation {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.methodology-step-text-toefl-exam-preparation {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

.features-section-toefl-exam-preparation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-header-toefl-exam-preparation {
  text-align: center;
  margin-bottom: 3rem;
}

.features-tag-toefl-exam-preparation {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.features-title-toefl-exam-preparation {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
}

.features-cards-toefl-exam-preparation {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.features-card-toefl-exam-preparation {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-card-toefl-exam-preparation:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.features-card-icon-toefl-exam-preparation {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06b6d4;
  font-size: 1.5rem;
}

.features-card-title-toefl-exam-preparation {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.features-card-text-toefl-exam-preparation {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.content-section-toefl-exam-preparation {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-toefl-exam-preparation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-block-toefl-exam-preparation {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-section-title-toefl-exam-preparation {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.content-section-text-toefl-exam-preparation {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.featured-quote-toefl-exam-preparation {
  padding: 2rem 2.5rem;
  border-left: 4px solid #06b6d4;
  background: #ffffff;
  margin: 2rem 0;
  border-radius: 8px;
}

.quote-text-toefl-exam-preparation {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #1e293b;
  margin-bottom: 1rem;
}

.quote-author-toefl-exam-preparation {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.content-image-block-toefl-exam-preparation {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-toefl-exam-preparation {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.skills-section-toefl-exam-preparation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.skills-wrapper-toefl-exam-preparation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.skills-image-block-toefl-exam-preparation {
  flex: 1 1 50%;
  max-width: 50%;
}

.skills-image-toefl-exam-preparation {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.skills-text-block-toefl-exam-preparation {
  flex: 1 1 50%;
  max-width: 50%;
}

.skills-title-toefl-exam-preparation {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.skills-description-toefl-exam-preparation {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.skills-list-toefl-exam-preparation {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
}

.skill-item-toefl-exam-preparation {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.skill-item-toefl-exam-preparation::before {
  content: "";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: bold;
  font-size: 1.25rem;
}

.conclusion-section-toefl-exam-preparation {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-toefl-exam-preparation {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-toefl-exam-preparation {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.conclusion-text-toefl-exam-preparation {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.conclusion-secondary-text-toefl-exam-preparation {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.conclusion-cta-btn-toefl-exam-preparation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #06b6d4;
  color: #000000;
  border-radius: 12px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
}

.conclusion-cta-btn-toefl-exam-preparation:hover {
  background: #22d3ee;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

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

.related-header-toefl-exam-preparation {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-toefl-exam-preparation {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.related-subtitle-toefl-exam-preparation {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
}

.related-cards-toefl-exam-preparation {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-toefl-exam-preparation {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-toefl-exam-preparation:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.related-card-image-toefl-exam-preparation {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.related-card-content-toefl-exam-preparation {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-toefl-exam-preparation {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.related-card-text-toefl-exam-preparation {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-toefl-exam-preparation {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #06b6d4;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  width: fit-content;
}

.related-card-link-toefl-exam-preparation:hover {
  color: #22d3ee;
  gap: 0.75rem;
}

.related-card-link-toefl-exam-preparation::after {
  content: "";
}

.disclaimer-section-toefl-exam-preparation {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-toefl-exam-preparation {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-toefl-exam-preparation {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-toefl-exam-preparation {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-content-toefl-exam-preparation,
  .intro-content-toefl-exam-preparation,
  .content-wrapper-toefl-exam-preparation,
  .skills-wrapper-toefl-exam-preparation {
    flex-direction: column;
  }

  .hero-text-block-toefl-exam-preparation,
  .hero-image-block-toefl-exam-preparation,
  .intro-text-toefl-exam-preparation,
  .intro-image-block-toefl-exam-preparation,
  .content-text-block-toefl-exam-preparation,
  .content-image-block-toefl-exam-preparation,
  .skills-text-block-toefl-exam-preparation,
  .skills-image-block-toefl-exam-preparation {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-toefl-exam-preparation {
    gap: 1.5rem;
  }

  .methodology-step-toefl-exam-preparation {
    flex-direction: column;
    gap: 1rem;
  }

  .related-card-toefl-exam-preparation {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-meta-toefl-exam-preparation {
    gap: 0.75rem;
  }

  .meta-badge-toefl-exam-preparation {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
  }

  .hero-stats-toefl-exam-preparation {
    gap: 1rem;
  }

  .stat-number-toefl-exam-preparation {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
  }

  .methodology-step-number-toefl-exam-preparation {
    font-size: 2rem;
  }
}

.main-business-dutch-professionals {
  width: 100%;
}

.hero-section-business-dutch-professionals {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-business-dutch-professionals .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.breadcrumbs-business-dutch-professionals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
}

.breadcrumbs-business-dutch-professionals a {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-business-dutch-professionals a:hover {
  color: #22d3ee;
  text-decoration: underline;
}

.breadcrumbs-business-dutch-professionals span {
  color: #64748b;
}

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

.hero-text-wrapper-business-dutch-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-business-dutch-professionals {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-business-dutch-professionals {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.article-meta-business-dutch-professionals {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meta-badge-business-dutch-professionals {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 20px;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #22d3ee;
}

.meta-badge-business-dutch-professionals i {
  color: #06b6d4;
}

.hero-stats-business-dutch-professionals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number-business-dutch-professionals {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

.stat-label-business-dutch-professionals {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.hero-image-business-dutch-professionals {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

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

  .hero-text-wrapper-business-dutch-professionals,
  .hero-image-wrapper-business-dutch-professionals {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-stats-business-dutch-professionals {
    gap: 1.5rem;
  }
}

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

.intro-section-business-dutch-professionals .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

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

.intro-text-wrapper-business-dutch-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-business-dutch-professionals {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-business-dutch-professionals {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.intro-description-business-dutch-professionals:last-child {
  margin-bottom: 0;
}

.intro-image-wrapper-business-dutch-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-business-dutch-professionals {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-business-dutch-professionals {
    flex-direction: column;
  }

  .intro-text-wrapper-business-dutch-professionals,
  .intro-image-wrapper-business-dutch-professionals {
    flex: 1 1 100%;
    max-width: none;
  }
}

.methodology-section-business-dutch-professionals {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.methodology-section-business-dutch-professionals .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.methodology-header-business-dutch-professionals {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag-business-dutch-professionals {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 20px;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.methodology-title-business-dutch-professionals {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.methodology-subtitle-business-dutch-professionals {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.steps-wrapper-business-dutch-professionals {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.step-card-business-dutch-professionals {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.step-number-business-dutch-professionals {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

.step-content-business-dutch-professionals {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-business-dutch-professionals {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: #1e293b;
}

.step-description-business-dutch-professionals {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .step-card-business-dutch-professionals {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .step-number-business-dutch-professionals {
    min-width: auto;
  }
}

.features-section-business-dutch-professionals {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-section-business-dutch-professionals .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.features-header-business-dutch-professionals {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

.features-subtitle-business-dutch-professionals {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid-business-dutch-professionals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.feature-card-business-dutch-professionals {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  transition: all 0.3s ease;
}

.feature-card-business-dutch-professionals:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(6, 182, 212, 0.4);
  transform: translateY(-4px);
}

.feature-icon-business-dutch-professionals {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  color: #06b6d4;
  font-size: 1.75rem;
}

.feature-card-title-business-dutch-professionals {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: #ffffff;
}

.feature-card-text-business-dutch-professionals {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #cbd5e1;
  line-height: 1.6;
}

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

.content-section-business-dutch-professionals {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-section-business-dutch-professionals .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

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

.content-text-business-dutch-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-section-title-business-dutch-professionals {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-section-text-business-dutch-professionals {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.highlight-box-business-dutch-professionals {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #f0f9ff;
  border-left: 4px solid #06b6d4;
  border-radius: 6px;
  margin: 1.5rem 0;
}

.highlight-text-business-dutch-professionals {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #0c4a6e;
  line-height: 1.6;
}

.content-image-business-dutch-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-item-business-dutch-professionals {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-business-dutch-professionals {
    flex-direction: column;
  }

  .content-text-business-dutch-professionals,
  .content-image-business-dutch-professionals {
    flex: 1 1 100%;
    max-width: none;
  }
}

.skills-section-business-dutch-professionals {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.skills-section-business-dutch-professionals .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.skills-wrapper-business-dutch-professionals {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.skills-image-business-dutch-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.skills-image-item-business-dutch-professionals {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.skills-text-business-dutch-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.skills-title-business-dutch-professionals {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.skills-description-business-dutch-professionals {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.skills-list-business-dutch-professionals {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skills-list-item-business-dutch-professionals {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #cbd5e1;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.skills-list-item-business-dutch-professionals::before {
  content: "";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: bold;
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .skills-wrapper-business-dutch-professionals {
    flex-direction: column;
  }

  .skills-image-business-dutch-professionals,
  .skills-text-business-dutch-professionals {
    flex: 1 1 100%;
    max-width: none;
  }
}

.quote-section-business-dutch-professionals {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.quote-section-business-dutch-professionals .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.featured-quote-business-dutch-professionals {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #06b6d4;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 8px;
  margin: 0;
}

.quote-text-business-dutch-professionals {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: #ffffff;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.quote-author-business-dutch-professionals {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: #cbd5e1;
  font-style: normal;
  display: block;
}

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

.conclusion-section-business-dutch-professionals .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

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

.conclusion-title-business-dutch-professionals {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-business-dutch-professionals {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.cta-button-business-dutch-professionals {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #06b6d4;
  color: #000000;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.cta-button-business-dutch-professionals:hover {
  background: #22d3ee;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(6, 182, 212, 0.3);
}

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

.related-section-business-dutch-professionals .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.related-title-business-dutch-professionals {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.related-subtitle-business-dutch-professionals {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: #64748b;
  text-align: center;
  margin-bottom: 3rem;
}

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

.related-card-business-dutch-professionals {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-business-dutch-professionals:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.related-card-image-business-dutch-professionals {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

.related-card-title-business-dutch-professionals {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.related-card-text-business-dutch-professionals {
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  color: #64748b;
  line-height: 1.6;
}

.related-card-link-business-dutch-professionals {
  display: inline-block;
  color: #06b6d4;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  transition: color 0.3s ease;
}

.related-card-link-business-dutch-professionals:hover {
  color: #22d3ee;
  text-decoration: underline;
}

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

.disclaimer-section-business-dutch-professionals {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-section-business-dutch-professionals .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.disclaimer-content-business-dutch-professionals {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(6, 182, 212, 0.08);
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
}

.disclaimer-title-business-dutch-professionals {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.disclaimer-text-business-dutch-professionals {
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.disclaimer-text-business-dutch-professionals:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero-stats-business-dutch-professionals {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .cta-button-business-dutch-professionals {
    width: 100%;
  }
}

.language-certification-about {
  font-family: var(--font-primary);
  color: var(--color-text-primary-light);
}

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

.hero-pathway-about {
  background: var(--color-bg-primary-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-pathway-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.hero-pathway-title-about {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-primary-light);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-pathway-subtitle-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  line-height: 1.6;
  color: var(--color-text-secondary-light);
  max-width: 700px;
}

.hero-pathway-image-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 1rem 0 0 0;
}

.expertise-metrics-about {
  background: var(--color-bg-primary-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 2px solid var(--color-bg-secondary-light);
  position: relative;
  overflow: hidden;
}

.metrics-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  justify-content: center;
}

.metric-card-about {
  flex: 1 1 200px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

.metric-number-about {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.metric-label-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  font-weight: 500;
}

.methodology-section-about {
  background: var(--color-bg-secondary-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.methodology-header-about {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.methodology-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.methodology-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: 1rem;
}

.methodology-subtitle-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  max-width: 650px;
  margin: 0 auto;
}

.methodology-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.step-item-about {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--color-bg-primary-light);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.step-number-about {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

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

.step-title-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: var(--color-text-primary-light);
}

.step-description-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
  color: var(--color-text-secondary-light);
}

.certification-features-about {
  background: var(--color-bg-primary-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 2px solid var(--color-bg-secondary-light);
  position: relative;
  overflow: hidden;
}

.features-intro-about {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.features-intro-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: 1rem;
}

.features-intro-text-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  max-width: 700px;
  margin: 0 auto;
}

.features-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.feature-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary-light);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-about:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-title-about {
  font-size: clamp(1.0625rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary-light);
}

.feature-description-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
  color: var(--color-text-secondary-light);
}

.vision-section-about {
  background: var(--color-bg-secondary-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.vision-wrapper-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.vision-content-about {
  flex: 1 1 350px;
  min-width: 300px;
}

.vision-label-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.vision-heading-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.vision-text-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary-light);
  margin-bottom: 1.5rem;
}

.vision-highlight-about {
  padding: 1.5rem;
  background: var(--color-bg-primary-light);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
}

.vision-highlight-text-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  font-style: italic;
  color: var(--color-text-primary-light);
  line-height: 1.6;
}

.vision-image-about {
  flex: 1 1 350px;
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .vision-wrapper-about {
    flex-direction: column;
  }

  .vision-image-about {
    flex: 1 1 100%;
  }

  .step-item-about {
    flex-direction: column;
  }

  .step-number-about {
    min-width: auto;
  }

  .feature-card-about {
    flex: 1 1 100%;
    max-width: none;
  }
}

.disclaimer-section-about {
  background: var(--color-bg-secondary-light);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-about {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.disclaimer-icon-about {
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: var(--color-text-primary-light);
}

.disclaimer-text-about {
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.7;
  color: var(--color-text-secondary-light);
}

@media (min-width: 768px) {
  .hero-pathway-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .expertise-metrics-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .methodology-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .certification-features-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .vision-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .disclaimer-section-about {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-pathway-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .expertise-metrics-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .methodology-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .certification-features-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .vision-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
}

.legal-hub {
  font-family: var(--font-primary);
  background: var(--color-bg-primary-light);
  color: var(--color-text-primary-light);
}

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

.privacy-hero-section {
  background: var(--color-bg-primary-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.privacy-hero-section .container {
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.privacy-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
}

.privacy-hero-title {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-hero-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.privacy-updated {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #94a3b8;
  font-style: italic;
}

@media (min-width: 768px) {
  .privacy-hero-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .privacy-hero-section {
    padding: 6rem 0;
  }
}

.privacy-content-section {
  background: var(--color-bg-primary-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.privacy-content-section .container {
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.privacy-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
  max-width: 900px;
}

.privacy-section-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.privacy-section-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  line-height: 1.2;
}

.privacy-section-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-section-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
  margin-left: 1.5rem;
}

.privacy-section-list-item {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
  position: relative;
}

.privacy-section-list-item::before {
  content: "";
  position: absolute;
  left: -1rem;
  color: var(--color-primary);
  font-weight: bold;
}

.privacy-contact-section {
  background: var(--color-bg-secondary-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.privacy-contact-section .container {
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.privacy-contact-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
}

.privacy-contact-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  line-height: 1.2;
}

.privacy-contact-intro {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
}

.privacy-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.privacy-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.privacy-contact-label {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  color: var(--color-text-primary-light);
}

.privacy-contact-value {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .privacy-content-section {
    padding: 5rem 0;
  }
  
  .privacy-contact-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .privacy-content-section {
    padding: 6rem 0;
  }
  
  .privacy-contact-section {
    padding: 6rem 0;
  }
}

.thank-you-page {
  width: 100%;
}

.thank-section {
  background: var(--color-bg-primary-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(2rem, 5vw, 3rem);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px, 15vw, 120px);
  height: clamp(80px, 15vw, 120px);
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.1);
  animation: iconPulse 0.6s ease-out;
}

.thank-icon i {
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--color-primary);
}

@keyframes iconPulse {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.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-dark);
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  letter-spacing: -0.5px;
}

.thank-lead {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-primary);
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

.thank-message {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 600px;
  margin: 0 auto;
}

.thank-message p {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-highlights {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
  max-width: 500px;
  margin: clamp(1rem, 3vw, 2rem) auto;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(6, 182, 212, 0.08);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.highlight-item i {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-primary);
}

.highlight-item span {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary-dark);
  font-weight: 500;
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.75rem, 4vw, 2.5rem);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
  line-height: 1.5;
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(6, 182, 212, 0.2);
}

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

  .thank-highlights {
    flex-direction: row;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .highlight-item {
    flex: 1;
    border-left: none;
    border-top: 4px solid var(--color-primary);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

  .thank-content {
    gap: clamp(2.5rem, 6vw, 4rem);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
  }

  .thank-content {
    gap: 4rem;
  }
}

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  background: var(--color-bg-primary-dark);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.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: inline-block;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw + 1rem, 8rem);
  font-weight: 900;
  line-height: 1;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  margin: 0;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 30px rgba(6, 182, 212, 0.2);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-decoration {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: clamp(0.5rem, 2vw, 1rem);
  justify-content: center;
  z-index: 1;
}

.error-decoration i {
  font-size: clamp(0.75rem, 1.5vw, 1.25rem);
  color: var(--color-primary);
  opacity: 0.4;
  animation: float 3s ease-in-out infinite;
}

.error-decoration i:nth-child(1) {
  animation-delay: 0s;
}

.error-decoration i:nth-child(2) {
  animation-delay: 0.2s;
}

.error-decoration i:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.error-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.5rem);
  max-width: 600px;
  width: 100%;
}

.error-message h2 {
  color: var(--color-text-primary-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-subtitle {
  color: var(--color-text-secondary-dark);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-description {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  margin: clamp(0.5rem, 2vw, 1rem) 0;
}

.error-description p {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-reasons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.error-reasons li {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-reasons i {
  color: var(--color-primary);
  flex-shrink: 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.error-actions {
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(6, 182, 212, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn i {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
}

.error-help {
  width: 100%;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.help-text {
  color: var(--color-text-muted-dark);
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.9375rem);
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

  .error-content {
    gap: clamp(2.5rem, 6vw, 4rem);
  }

  .error-code {
    text-shadow: 0 0 40px rgba(6, 182, 212, 0.25);
  }

  .error-decoration {
    gap: clamp(0.75rem, 3vw, 1.5rem);
  }

  .error-message {
    gap: clamp(1.25rem, 3vw, 2rem);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: 6rem 0;
  }

  .error-content {
    gap: 4rem;
  }

  .error-description {
    padding: 2rem;
    margin: 1.5rem 0;
  }

  .error-reasons {
    gap: 1rem;
  }

  .btn:hover {
    transform: translateY(-4px);
  }
}

@media (min-width: 1440px) {
  .error-code {
    text-shadow: 0 0 50px rgba(6, 182, 212, 0.3);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.error-visual {
  animation: slideInDown 0.6s ease-out;
}

.error-message {
  animation: slideInDown 0.6s ease-out 0.2s both;
}

.error-actions {
  animation: slideInDown 0.6s ease-out 0.4s both;
}

@media (prefers-reduced-motion: reduce) {
  .error-decoration i,
  .error-visual,
  .error-message,
  .error-actions,
  .btn {
    animation: none !important;
    transition: none !important;
  }
}

@media print {
  .error-page {
    min-height: auto;
  }

  .error-section {
    min-height: auto;
    background: #ffffff;
  }

  .error-code {
    color: #000000;
    text-shadow: none;
  }

  .error-message h2,
  .error-message p,
  .error-description,
  .help-text {
    color: #000000;
  }

  .error-decoration,
  .error-actions {
    display: none;
  }
}
.header-language-forge-mobile-toggle[aria-expanded="true"]{
  display: none;
} 