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

:root {
  
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;
  
  
  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  
  
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-primary-light: #10b981;
  --color-secondary: #0891b2;
  --color-secondary-light: #06b6d4;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-outline:hover {
  background: rgba(5, 150, 105, 0.1);
}

.btn-light {
  background: var(--color-bg-secondary);
  color: var(--color-primary);
  border-color: var(--color-bg-tertiary);
}

.btn-light:hover {
  background: var(--color-bg-tertiary);
}

input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: var(--space-md);
  border: 2px solid var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

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

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

label {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

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

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

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(5, 150, 105, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
}

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

.card-title {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
}

.card-description {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.flex-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

section {
  position: relative;
}

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

.section-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.hero-section {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 8rem) 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.hero-section h1 {
  color: var(--color-text-primary);
  max-width: 700px;
}

.hero-section p {
  color: var(--color-text-secondary);
  max-width: 600px;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
}

.hero-cta {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-xl);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--color-bg-tertiary);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.stat-label {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin-top: var(--space-xs);
}

.features-section {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 8rem) 0;
}

.features-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.features-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.features-header h2 {
  color: var(--color-text-primary);
  max-width: 600px;
}

.features-header p {
  color: var(--color-text-secondary);
  max-width: 500px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.feature-card {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-bg-tertiary);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.2) 0%, rgba(5, 150, 105, 0.05) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.75rem;
}

.feature-title {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
}

.feature-description {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.about-section {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 8rem) 0;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: clamp(3rem, 5vw, 4rem);
  align-items: center;
}

.about-text h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

.about-text p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.highlight-item {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  align-items: flex-start;
}

.highlight-icon {
  width: 32px;
  height: 32px;
  background: rgba(5, 150, 105, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.highlight-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.highlight-title {
  color: var(--color-text-primary);
  font-weight: 600;
}

.highlight-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.benefits-section {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 8rem) 0;
}

.benefits-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.benefits-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.benefits-header h2 {
  color: var(--color-text-primary);
  max-width: 650px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.benefit-item {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.benefit-number {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.benefit-title {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}

.benefit-description {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.testimonials-section {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 8rem) 0;
}

.testimonials-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.testimonials-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

.testimonials-header h2 {
  color: var(--color-text-primary);
  max-width: 600px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.testimonial-card {
  background: var(--color-bg-primary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-tertiary);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.testimonial-text {
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  align-items: center;
  border-top: 1px solid var(--color-bg-tertiary);
  padding-top: var(--space-lg);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.125rem;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  color: var(--color-text-primary);
  font-weight: 600;
}

.author-role {
  color: var(--color-text-secondary);
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
}

.testimonial-rating {
  display: flex;
  flex-direction: row;
  gap: 4px;
  margin-top: var(--space-sm);
}

.star {
  color: #fbbf24;
  font-size: 1rem;
}

.pricing-section {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 8rem) 0;
}

.pricing-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.pricing-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.pricing-header h2 {
  color: var(--color-text-primary);
  max-width: 650px;
}

.pricing-header p {
  color: var(--color-text-secondary);
  max-width: 500px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.pricing-card {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 2.5rem);
  border-radius: var(--radius-xl);
  border: 2px solid var(--color-bg-tertiary);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: var(--color-primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.pricing-card:hover:not(.featured) {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--color-primary);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-title {
  color: var(--color-text-primary);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.pricing-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.pricing-price {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: var(--space-sm);
}

.price-amount {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
}

.price-currency {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
}

.price-period {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  border-top: 1px solid var(--color-bg-tertiary);
  border-bottom: 1px solid var(--color-bg-tertiary);
  padding: var(--space-lg) 0;
}

.feature-check {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  align-items: flex-start;
  color: var(--color-text-secondary);
}

.check-icon {
  width: 20px;
  height: 20px;
  background: rgba(5, 150, 105, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.875rem;
}

.pricing-cta {
  width: 100%;
}

.contact-section {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 8rem) 0;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: clamp(3rem, 5vw, 4rem);
}

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

.contact-form h2 {
  color: var(--color-text-primary);
}

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

.contact-form-group label {
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.contact-form-group input,
.contact-form-group textarea {
  padding: var(--space-md);
  border: 2px solid var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
}

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

.form-submit-btn {
  width: 100%;
  padding: clamp(0.75rem, 2vw, 1rem);
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 2.5rem);
}

.contact-info h2 {
  color: var(--color-text-primary);
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.info-item {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  align-items: flex-start;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: rgba(5, 150, 105, 0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  font-size: 1.25rem;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-title {
  color: var(--color-text-primary);
  font-weight: 600;
}

.info-text {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.info-text a {
  color: var(--color-primary);
  font-weight: 500;
}

.info-text a:hover {
  text-decoration: underline;
}

.faq-section {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 8rem) 0;
}

.faq-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.faq-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.faq-header h2 {
  color: var(--color-text-primary);
}

.faq-header p {
  color: var(--color-text-secondary);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.faq-item {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: var(--space-lg);
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--color-bg-tertiary);
}

.faq-icon {
  color: var(--color-primary);
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--color-bg-primary);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-text {
  padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  text-align: center;
}

.cta-section h2 {
  color: #ffffff;
  max-width: 650px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  max-width: 500px;
}

.cta-buttons {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

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

.cta-buttons .btn-light:hover {
  background: rgba(255, 255, 255, 0.9);
}

.stats-section {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid var(--color-bg-tertiary);
  border-bottom: 1px solid var(--color-bg-tertiary);
}

.stats-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.stat-value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.stat-unit {
  font-size: clamp(0.75rem, 1vw, 1rem);
  color: var(--color-text-secondary);
}

.stat-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
}

.courses-section {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 8rem) 0;
}

.courses-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.courses-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

.courses-header h2 {
  color: var(--color-text-primary);
  max-width: 650px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.course-card {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.course-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.2) 0%, rgba(5, 150, 105, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 3rem;
  overflow: hidden;
}

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

.course-body {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex-grow: 1;
}

.course-level {
  display: inline-block;
  background: rgba(5, 150, 105, 0.15);
  color: var(--color-primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  width: fit-content;
}

.course-title {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}

.course-description {
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.course-meta {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-bg-tertiary);
}

.meta-item {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
}

.meta-icon {
  color: var(--color-primary);
}

.course-footer {
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-bg-tertiary);
}

.course-footer .btn {
  width: 100%;
}

@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
    gap: var(--space-md);
  }

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

  .about-content {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .cta-buttons {
    flex-direction: column;
    gap: var(--space-md);
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .feature-check {
    font-size: 0.875rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

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

  .stats-content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .feature-check {
    font-size: 0.8125rem;
  }

  .faq-question {
    padding: var(--space-md);
  }

  .info-item {
    gap: var(--space-md);
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-bg-tertiary);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.cookie-banner.active {
  max-height: 300px;
}

.cookie-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin: 0;
}

.cookie-text a {
  color: var(--color-primary);
  font-weight: 500;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: var(--space-sm) var(--space-lg);
  font-size: clamp(0.8125rem, 1vw, 1rem);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    flex: 1;
    min-width: 120px;
  }
}

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

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

.text-secondary {
  color: var(--color-text-secondary);
}

.text-muted {
  color: var(--color-text-muted);
}

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

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

.bg-primary {
  background: var(--color-bg-primary);
}

.bg-secondary {
  background: var(--color-bg-secondary);
}

.bg-tertiary {
  background: var(--color-bg-tertiary);
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.shadow-xl {
  box-shadow: var(--shadow-xl);
}

.rounded-sm {
  border-radius: var(--radius-sm);
}

.rounded-md {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

.mt-xs {
  margin-top: var(--space-xs);
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mb-xs {
  margin-bottom: var(--space-xs);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.pt-xs {
  padding-top: var(--space-xs);
}

.pt-sm {
  padding-top: var(--space-sm);
}

.pt-md {
  padding-top: var(--space-md);
}

.pt-lg {
  padding-top: var(--space-lg);
}

.pt-xl {
  padding-top: var(--space-xl);
}

.pb-xs {
  padding-bottom: var(--space-xs);
}

.pb-sm {
  padding-bottom: var(--space-sm);
}

.pb-md {
  padding-bottom: var(--space-md);
}

.pb-lg {
  padding-bottom: var(--space-lg);
}

.pb-xl {
  padding-bottom: var(--space-xl);
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

.header-language-bridge {
  position: static;
  width: 100%;
  background: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-text-muted);
  border-bottom-color: rgba(155, 163, 175, 0.2);
  padding: clamp(0.75rem, 2vw, 1.25rem) 0;
  z-index: 100;
}

.header-language-bridge-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-language-bridge-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
  flex-shrink: 0;
}

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

.header-language-bridge-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

.header-language-bridge-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0;
  padding: 0;
}

.header-language-bridge-nav-link {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 300ms ease-in-out;
  position: relative;
}

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

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

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

.header-language-bridge-cta-button {
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.header-language-bridge-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.25);
}

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

.header-language-bridge-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid var(--color-text-primary);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  padding: 0;
  margin: 0;
}

.header-language-bridge-mobile-toggle:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.header-language-bridge-mobile-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.header-language-bridge-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-secondary);
  padding-top: clamp(4rem, 10vw, 6rem);
  padding-bottom: 2rem;
  padding-left: clamp(1rem, 4vw, 2rem);
  padding-right: clamp(1rem, 4vw, 2rem);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
}

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

.header-language-bridge-mobile-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(155, 163, 175, 0.2);
}

.header-language-bridge-mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid var(--color-text-primary);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  padding: 0;
  margin: 0;
}

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

.header-language-bridge-mobile-close:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.header-language-bridge-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.header-language-bridge-mobile-link {
  display: block;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1rem, 3vw, 1.5rem);
  color: var(--color-text-primary);
  text-decoration: none;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all 300ms ease-in-out;
}

.header-language-bridge-mobile-link:hover {
  background: rgba(5, 150, 105, 0.08);
  color: var(--color-primary);
}

.header-language-bridge-mobile-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.header-language-bridge-mobile-cta {
  display: block;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1rem, 3vw, 1.5rem);
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 300ms ease-in-out;
  margin-top: 1rem;
}

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

.header-language-bridge-mobile-cta:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .header-language-bridge-desktop-nav {
    display: flex;
  }

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

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

  .header-language-bridge-container {
    padding: 0 clamp(2rem, 5vw, 3rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-language-bridge,
  .header-language-bridge-nav-link,
  .header-language-bridge-nav-link::after,
  .header-language-bridge-cta-button,
  .header-language-bridge-mobile-toggle,
  .header-language-bridge-mobile-menu,
  .header-language-bridge-mobile-close,
  .header-language-bridge-mobile-link,
  .header-language-bridge-mobile-cta {
    transition: none;
    animation: none;
  }
}

    .dutch-learning-hub {
  width: 100%;
}

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

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

.hero-deco-glow-top-index {
  position: absolute;
  top: 50px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(15, 118, 110, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-shape-index {
  position: absolute;
  bottom: 100px;
  right: 10%;
  width: 280px;
  height: 280px;
  background: rgba(5, 150, 105, 0.04);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

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

.hero-deco-float-index {
  position: absolute;
  bottom: 150px;
  left: 10%;
  width: 150px;
  height: 150px;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(5, 150, 105, 0.08);
  border-radius: 20px;
  z-index: 1;
  pointer-events: none;
  transform: rotate(-15deg);
}

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

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

.hero-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.15;
  max-width: 700px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-index {
  color: #475569;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  max-width: 600px;
  line-height: 1.6;
}

.hero-cta-index {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.btn-primary-index {
  background: #059669;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn-primary-index:hover {
  background: #047857;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary-index {
  background: transparent;
  color: #059669;
  border-color: #059669;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: 2px solid #059669;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn-secondary-index:hover {
  background: rgba(5, 150, 105, 0.1);
  transform: translateY(-3px);
}

.hero-stats-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-xl);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid #e2e8f0;
}

.stat-item-index {
  text-align: center;
}

.stat-number-index {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #059669;
  font-family: var(--font-heading);
  display: block;
}

.stat-label-index {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin-top: var(--space-xs);
}

.benefits-section-index {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

.benefits-deco-orb-index {
  position: absolute;
  bottom: -50px;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.benefits-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  z-index: 10;
}

.benefits-header-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

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

.benefits-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  max-width: 600px;
  line-height: 1.2;
}

.benefits-grid-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.benefit-item-index {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #059669;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.benefit-number-index {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #059669;
  font-family: var(--font-heading);
}

.benefit-title-index {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}

.benefit-text-index {
  color: #475569;
  line-height: 1.6;
}

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

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

.courses-deco-shape-2-index {
  position: absolute;
  bottom: 100px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: rgba(15, 118, 110, 0.04);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.courses-deco-glow-index {
  position: absolute;
  top: 200px;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.courses-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  z-index: 10;
}

.courses-header-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.courses-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  max-width: 650px;
  line-height: 1.2;
}

.courses-subtitle-index {
  color: #475569;
  max-width: 500px;
}

.courses-grid-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.course-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

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

.course-image-index {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.2) 0%, rgba(5, 150, 105, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 3rem;
  overflow: hidden;
}

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

.course-body-index {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex-grow: 1;
}

.course-level-index {
  display: inline-block;
  background: rgba(5, 150, 105, 0.15);
  color: #059669;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  width: fit-content;
}

.course-title-index {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}

.course-description-index {
  color: #475569;
  line-height: 1.6;
  flex-grow: 1;
}

.course-meta-index {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: #64748b;
  padding-top: var(--space-md);
  border-top: 1px solid #e2e8f0;
}

.meta-item-index {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
}

.meta-icon-index {
  color: #059669;
}

.course-footer-index {
  padding-top: var(--space-md);
  border-top: 1px solid #e2e8f0;
}

.course-footer-index .btn-primary-index {
  width: 100%;
}

.courses-footer-index {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xl);
}

.btn-outline-index {
  background: transparent;
  color: #059669;
  border: 2px solid #059669;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn-outline-index:hover {
  background: rgba(5, 150, 105, 0.1);
  transform: translateY(-3px);
}

.process-section-index {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.process-deco-accent-index {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 180px;
  height: 180px;
  background: rgba(5, 150, 105, 0.06);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.process-deco-float-index {
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 150px;
  height: 100px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 50% 40% 60% 50% / 40% 50% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

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

.process-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  z-index: 10;
}

.process-header-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

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

.process-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  max-width: 600px;
  line-height: 1.2;
}

.process-steps-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-step-index {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-index:hover {
  box-shadow: var(--shadow-md);
}

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

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

.process-step-title-index {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
}

.process-step-text-index {
  color: #475569;
  line-height: 1.6;
}

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

.features-deco-mesh-index {
  position: absolute;
  top: -50px;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.features-deco-blob-index {
  position: absolute;
  bottom: 50px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(15, 118, 110, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.features-deco-glow-index {
  position: absolute;
  top: 50%;
  right: -80px;
  width: 250px;
  height: 250px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.features-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  z-index: 10;
}

.features-header-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

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

.features-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  max-width: 650px;
}

.features-grid-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.feature-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-index:hover {
  border-color: #059669;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.feature-icon-index {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.2) 0%, rgba(5, 150, 105, 0.05) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 1.75rem;
}

.feature-title-index {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}

.feature-text-index {
  color: #475569;
  line-height: 1.6;
}

.testimonials-section-index {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.testimonials-deco-accent-index {
  position: absolute;
  top: 50px;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(5, 150, 105, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.testimonials-deco-shape-index {
  position: absolute;
  bottom: -50px;
  right: 10%;
  width: 280px;
  height: 280px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.testimonials-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  z-index: 10;
}

.testimonials-header-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

.testimonials-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  max-width: 600px;
}

.featured-quote-index {
  padding: clamp(2rem, 4vw, 2.5rem);
  border-left: 4px solid #059669;
  background: #ffffff;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
  border-radius: var(--radius-lg);
}

.quote-text-index {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #0f172a;
  margin-bottom: 1rem;
}

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

.testimonials-grid-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

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

.testimonial-text-index {
  color: #475569;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author-index {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  align-items: center;
  border-top: 1px solid #e2e8f0;
  padding-top: var(--space-lg);
}

.author-avatar-index {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.125rem;
}

.author-info-index {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name-index {
  color: #0f172a;
  font-weight: 600;
}

.author-role-index {
  color: #64748b;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
}

.testimonial-rating-index {
  display: flex;
  flex-direction: row;
  gap: 4px;
  margin-top: var(--space-sm);
}

.star-index {
  color: #fbbf24;
  font-size: 1rem;
}

.contact-section-index {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.contact-deco-glow-index {
  position: absolute;
  top: 50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.contact-deco-shape-index {
  position: absolute;
  bottom: 100px;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(34, 211, 238, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.contact-content-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: clamp(3rem, 5vw, 4rem);
  position: relative;
  z-index: 10;
}

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

.contact-form-title-index {
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.contact-form-subtitle-index {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.contact-form-index {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

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

.contact-label-index {
  color: #e2e8f0;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.contact-input-index,
.contact-textarea-index {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
}

.contact-input-index:focus,
.contact-textarea-index:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.form-submit-btn-index {
  width: 100%;
  padding: clamp(0.75rem, 2vw, 1rem);
  background: #059669;
  color: #ffffff;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-primary);
}

.form-submit-btn-index:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-privacy-index {
  color: #9ca3af;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  text-align: center;
}

.contact-link-index {
  color: #60a5fa;
  text-decoration: underline;
  transition: color 300ms ease;
}

.contact-link-index:hover {
  color: #93c5fd;
}

.contact-info-wrapper-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 2.5rem);
}

.contact-info-title-index {
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.faq-list-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item-index {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question-index {
  width: 100%;
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

.faq-question-index:hover {
  background: rgba(255, 255, 255, 0.08);
}

.faq-icon-index {
  color: #3b82f6;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.faq-item-index.active .faq-icon-index {
  transform: rotate(180deg);
}

.faq-answer-index {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
}

.faq-item-index.active .faq-answer-index {
  max-height: 500px;
}

.faq-answer-text-index {
  padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
  color: #cbd5e1;
  line-height: 1.8;
}

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

.cta-deco-glow-top-index {
  position: absolute;
  top: -80px;
  right: 10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.cta-deco-glow-bottom-index {
  position: absolute;
  bottom: -80px;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.cta-content-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  text-align: center;
  position: relative;
  z-index: 10;
}

.cta-title-index {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 650px;
  line-height: 1.2;
}

.cta-subtitle-index {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  max-width: 500px;
}

.cta-buttons-index {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

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

.cta-buttons-index .btn-primary-index:hover {
  background: rgba(255, 255, 255, 0.9);
}

.cta-buttons-index .btn-secondary-index {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.cta-buttons-index .btn-secondary-index:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-banner-index {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e293b;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-lg) var(--space-md);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.cookie-banner-index.active {
  max-height: 300px;
}

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

.cookie-content-index {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cookie-banner-text-index {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-banner-buttons-index {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 500;
  font-size: clamp(0.8125rem, 1vw, 1rem);
  border: none;
  transition: all 300ms ease;
  font-family: var(--font-primary);
}

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

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

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

.cookie-btn-decline-index:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

@media (max-width: 768px) {
  .hero-cta-index {
    flex-direction: column;
    gap: var(--space-md);
  }

  .hero-cta-index .btn-primary-index,
  .hero-cta-index .btn-secondary-index {
    width: 100%;
  }

  .contact-content-index {
    grid-template-columns: 1fr;
  }

  .cta-buttons-index {
    flex-direction: column;
    gap: var(--space-md);
  }

  .cta-buttons-index .btn-primary-index,
  .cta-buttons-index .btn-secondary-index {
    width: 100%;
  }

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

  .course-card-index {
    flex: 1 1 100%;
    max-width: none;
  }

  .testimonial-card-index {
    flex: 1 1 100%;
    max-width: none;
  }

  .cookie-content-index {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-buttons-index {
    width: 100%;
  }

  .cookie-banner-buttons-index .cookie-btn-accept-index,
  .cookie-banner-buttons-index .cookie-btn-decline-index {
    flex: 1;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .hero-section-index {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .hero-stats-index {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .benefits-grid-index,
  .features-grid-index {
    grid-template-columns: 1fr;
  }

  .benefit-item-index,
  .feature-card-index {
    flex: 1 1 100%;
    max-width: none;
  }

  .process-step-index {
    padding: var(--space-md);
  }

  .faq-question-index {
    padding: var(--space-md);
  }

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

@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-tertiary);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  border-top: 1px solid #e5e7eb;
}

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

.footer-content {
  display: block;
}

.footer-about {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  border-bottom: 1px solid #e5e7eb;
}

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

.footer-about-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 520px;
}

.footer-navigation,
.footer-legal {
  display: block;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.footer-nav-title,
.footer-contact-title,
.footer-legal-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-nav-list,
.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.footer-nav-link,
.footer-legal-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

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

.footer-nav-link::after,
.footer-legal-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.footer-contact {
  display: block;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
}

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

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

.footer-contact-item {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.95rem);
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

.footer-contact-label {
  display: inline;
  font-weight: 500;
  color: var(--color-text-primary);
}

.footer-contact-value {
  display: inline;
  color: var(--color-text-secondary);
}

.footer-legal {
  margin-bottom: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
  border-bottom: 1px solid #e5e7eb;
}

.footer-bottom {
  text-align: center;
  padding-top: clamp(1.5rem, 3vw, 2rem);
}

.footer-copyright {
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 1vw + 0.4rem, 0.9rem);
  color: var(--color-text-muted);
  margin: 0;
  letter-spacing: 0.3px;
}

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: start;
  }

  .footer-about {
    grid-column: 1 / -1;
    margin-bottom: 0;
    padding-bottom: clamp(2rem, 5vw, 3rem);
  }

  .footer-navigation,
  .footer-legal {
    margin-bottom: 0;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-column: 1 / -1;
    margin-top: clamp(1rem, 3vw, 2rem);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
  }

  .footer-about {
    grid-column: 1;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .footer-navigation {
    grid-column: 2;
  }

  .footer-contact {
    grid-column: 3 / -1;
  }

  .footer-legal {
    grid-column: 2 / -1;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid #e5e7eb;
    padding-top: clamp(2rem, 4vw, 2.5rem);
    margin-top: clamp(2rem, 4vw, 2.5rem);
  }
}

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

  .footer-nav-link::after,
  .footer-legal-link::after {
    transition: none;
  }
}
    

.category-page-dutch-courses {
  width: 100%;
}

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

.hero-content-dutch-courses {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.hero-tag-dutch-courses {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(5, 150, 105, 0.15);
  color: #059669;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title-dutch-courses {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 800px;
}

.hero-description-dutch-courses {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #475569;
  line-height: 1.7;
  max-width: 700px;
}

.hero-cta-dutch-courses {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.hero-stats-dutch-courses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(5, 150, 105, 0.2);
  width: 100%;
  max-width: 500px;
}

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

.stat-number-dutch-courses {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #059669;
  font-family: 'Poppins', sans-serif;
}

.stat-label-dutch-courses {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  font-weight: 500;
}

.posts-section-dutch-courses {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 8rem) 0;
  overflow: hidden;
}

.posts-header-dutch-courses {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.posts-title-dutch-courses {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.posts-subtitle-dutch-courses {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  line-height: 1.6;
}

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

.card-dutch-courses {
  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;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-dutch-courses:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.card-dutch-courses img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.card-title-dutch-courses {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

.card-description-dutch-courses {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.card-link-dutch-courses {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #059669;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  padding-top: 0.75rem;
  border-top: 1px solid #e2e8f0;
  margin-top: 0.5rem;
}

.card-link-dutch-courses:hover {
  color: #047857;
  transform: translateX(3px);
}

.learning-path-section-dutch-courses {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 8rem) 0;
  overflow: hidden;
}

.learning-path-header-dutch-courses {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.learning-path-title-dutch-courses {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
}

.learning-path-subtitle-dutch-courses {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
}

.learning-steps-dutch-courses {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
}

.learning-step-dutch-courses {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.step-number-dutch-courses {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  font-family: 'Poppins', sans-serif;
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

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

.step-title-dutch-courses {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #1e293b;
}

.step-description-dutch-courses {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.benefits-section-dutch-courses {
  background: linear-gradient(135deg, #f0f9ff 0%, #f8fafc 100%);
  padding: clamp(3rem, 8vw, 8rem) 0;
  overflow: hidden;
}

.benefits-header-dutch-courses {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.benefits-title-dutch-courses {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
}

.benefits-subtitle-dutch-courses {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
}

.featured-quote-dutch-courses {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #059669;
  background: #ffffff;
  border-radius: 8px;
  margin: clamp(2rem, 4vw, 3rem) auto;
  max-width: 700px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.quote-text-dutch-courses {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quote-author-dutch-courses {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #64748b;
  font-style: normal;
}

.benefits-grid-dutch-courses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.benefit-item-dutch-courses {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.benefit-item-dutch-courses:hover {
  border-color: #059669;
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.1);
  transform: translateY(-2px);
}

.benefit-icon-dutch-courses {
  font-size: clamp(2rem, 4vw, 2.5rem);
  display: block;
  line-height: 1;
}

.benefit-title-dutch-courses {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #1e293b;
}

.benefit-text-dutch-courses {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-cta-dutch-courses {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-cta-dutch-courses .btn {
    width: 100%;
  }

  .learning-step-dutch-courses {
    gap: 1rem;
  }

  .card-dutch-courses {
    flex: 1 1 100%;
    max-width: none;
  }

  .benefits-grid-dutch-courses {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-section-dutch-courses {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .hero-stats-dutch-courses {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .learning-step-dutch-courses {
    flex-direction: column;
  }

  .step-number-dutch-courses {
    min-width: auto;
  }

  .posts-grid-dutch-courses {
    gap: 1rem;
  }

  .card-dutch-courses {
    padding: 1rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

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

.btn-outline:hover {
  background: rgba(5, 150, 105, 0.1);
  border-color: #047857;
  color: #047857;
}

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

.main-nederlands-expats-nederland {
  width: 100%;
  background: var(--color-bg-primary);
}

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

.hero-section-nederlands-expats-nederland {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-content-nederlands-expats-nederland {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.hero-title-nederlands-expats-nederland {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1e293b;
  max-width: 700px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-nederlands-expats-nederland {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  color: #64748b;
  max-width: 600px;
}

.hero-meta-netherlands-expats-nederland {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

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

.meta-badge-nederlands-expats-nederland i {
  color: #059669;
}

.hero-image-wrapper-nederlands-expats-nederland {
  width: 100%;
  max-width: 600px;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.hero-image-nederlands-expats-nederland {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

.breadcrumbs-nederlands-expats-nederland {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
}

.breadcrumb-link-nederlands-expats-nederland {
  color: #059669;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.breadcrumb-link-nederlands-expats-nederland:hover {
  text-decoration: underline;
  color: #047857;
}

.breadcrumb-separator-nederlands-expats-nederland {
  color: #cbd5e1;
}

.breadcrumb-current-nederlands-expats-nederland {
  color: #64748b;
  font-weight: 500;
}

.intro-section-nederlands-expats-nederland {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.intro-title-nederlands-expats-nederland {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-text-nederlands-expats-nederland {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #64748b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-nederlands-expats-nederland {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

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

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

.benefits-section-nederlands-expats-nederland {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.benefits-header-nederlands-expats-nederland {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.benefits-title-nederlands-expats-nederland {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  color: #1e293b;
  margin-bottom: 1rem;
}

.benefits-subtitle-nederlands-expats-nederland {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.benefits-grid-nederlands-expats-nederland {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.benefit-card-nederlands-expats-nederland {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border-left: 4px solid #059669;
}

.benefit-number-nederlands-expats-nederland {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #059669;
  font-family: var(--font-heading);
  line-height: 1;
}

.benefit-title-nederlands-expats-nederland {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #1e293b;
}

.benefit-text-nederlands-expats-nederland {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #64748b;
}

.content-section-one-nederlands-expats-nederland,
.content-section-two-nederlands-expats-nederland,
.content-section-three-nederlands-expats-nederland,
.content-section-four-nederlands-expats-nederland {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 8rem) 0;
}

.content-section-one-nederlands-expats-nederland,
.content-section-three-nederlands-expats-nederland {
  background: var(--color-bg-primary);
}

.content-section-two-nederlands-expats-nederland,
.content-section-four-nederlands-expats-nederland {
  background: var(--color-bg-secondary);
}

.content-wrapper-one-nederlands-expats-nederland,
.content-wrapper-two-nederlands-expats-nederland,
.content-wrapper-three-nederlands-expats-nederland,
.content-wrapper-four-nederlands-expats-nederland {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-one-nederlands-expats-nederland,
.content-text-two-nederlands-expats-nederland,
.content-text-three-nederlands-expats-nederland,
.content-text-four-nederlands-expats-nederland {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-nederlands-expats-nederland,
.content-image-two-nederlands-expats-nederland,
.content-image-three-nederlands-expats-nederland,
.content-image-four-nederlands-expats-nederland {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-heading-one-nederlands-expats-nederland,
.content-heading-two-nederlands-expats-nederland,
.content-heading-three-nederlands-expats-nederland,
.content-heading-four-nederlands-expats-nederland {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  color: #1e293b;
}

.content-text-block-nederlands-expats-nederland {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #64748b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-img-one-nederlands-expats-nederland,
.content-img-two-nederlands-expats-nederland,
.content-img-three-nederlands-expats-nederland,
.content-img-four-nederlands-expats-nederland {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

.highlight-box-nederlands-expats-nederland {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(5, 150, 105, 0.1);
  border-left: 4px solid #059669;
  border-radius: var(--radius-lg);
  margin: clamp(1rem, 2vw, 2rem) 0;
}

.highlight-text-nederlands-expats-nederland {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #1e293b;
}

.content-list-nederlands-expats-nederland {
  list-style: none;
  padding: 0;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.list-item-nederlands-expats-nederland {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #64748b;
  padding-left: 1.5rem;
  position: relative;
}

.list-item-nederlands-expats-nederland::before {
  content: "";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: bold;
}

.featured-quote-nederlands-expats-nederland {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #059669;
  background: rgba(5, 150, 105, 0.05);
  margin: clamp(2rem, 4vw, 3rem) 0;
  border-radius: var(--radius-lg);
}

.quote-text-nederlands-expats-nederland {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  line-height: 1.6;
  color: #1e293b;
  margin-bottom: 1rem;
  font-style: italic;
}

.quote-author-nederlands-expats-nederland {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: #64748b;
  font-style: normal;
}

.step-item-nederlands-expats-nederland {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  align-items: flex-start;
}

.step-number-nederlands-expats-nederland {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #059669;
  font-family: var(--font-heading);
  flex-shrink: 0;
  min-width: 50px;
  text-align: center;
}

.step-content-nederlands-expats-nederland {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-nederlands-expats-nederland {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

.step-text-nederlands-expats-nederland {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  color: #64748b;
}

@media (max-width: 768px) {
  .content-wrapper-one-nederlands-expats-nederland,
  .content-wrapper-two-nederlands-expats-nederland,
  .content-wrapper-three-nederlands-expats-nederland,
  .content-wrapper-four-nederlands-expats-nederland {
    flex-direction: column;
  }

  .content-text-one-nederlands-expats-nederland,
  .content-text-two-nederlands-expats-nederland,
  .content-text-three-nederlands-expats-nederland,
  .content-text-four-nederlands-expats-nederland,
  .content-image-one-nederlands-expats-nederland,
  .content-image-two-nederlands-expats-nederland,
  .content-image-three-nederlands-expats-nederland,
  .content-image-four-nederlands-expats-nederland {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-nederlands-expats-nederland {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-content-nederlands-expats-nederland {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-nederlands-expats-nederland {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  color: #1e293b;
}

.conclusion-text-nederlands-expats-nederland {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #64748b;
}

.cta-box-nederlands-expats-nederland {
  background: linear-gradient(135deg, #059669 0%, #0891b2 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  text-align: center;
  margin-top: clamp(1rem, 2vw, 2rem);
}

.cta-title-nederlands-expats-nederland {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-text-nederlands-expats-nederland {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.btn-primary-cta-nederlands-expats-nederland {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #059669;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary-cta-nederlands-expats-nederland:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.disclaimer-section-nederlands-expats-nederland {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-nederlands-expats-nederland {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-left: 4px solid #94a3b8;
  border-radius: var(--radius-lg);
}

.disclaimer-title-nederlands-expats-nederland {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.disclaimer-text-nederlands-expats-nederland {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.8;
  color: #64748b;
}

.related-section-nederlands-expats-nederland {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 8rem) 0;
  border-top: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.related-header-nederlands-expats-nederland {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-nederlands-expats-nederland {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.related-subtitle-nederlands-expats-nederland {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
}

.related-cards-grid-nederlands-expats-nederland {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-link-nederlands-expats-nederland {
  flex: 1 1 300px;
  max-width: 380px;
  text-decoration: none;
  color: inherit;
}

.related-card-nederlands-expats-nederland {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.related-card-link-nederlands-expats-nederland:hover .related-card-nederlands-expats-nederland {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.related-card-image-nederlands-expats-nederland {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.2) 0%, rgba(5, 150, 105, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.related-img-nederlands-expats-nederland {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-body-nederlands-expats-nederland {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.related-card-title-nederlands-expats-nederland {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #1e293b;
}

.related-card-description-nederlands-expats-nederland {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: #64748b;
  flex-grow: 1;
}

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

@media (max-width: 480px) {
  .hero-section-nederlands-expats-nederland {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .breadcrumbs-nederlands-expats-nederland {
    flex-wrap: wrap;
  }

  .benefits-grid-nederlands-expats-nederland {
    flex-direction: column;
  }

  .benefit-card-nederlands-expats-nederland {
    flex: 1 1 100%;
    max-width: none;
  }

  .step-item-nederlands-expats-nederland {
    flex-direction: column;
    align-items: flex-start;
  }
}

.main-nederlandse-leerstrategieen {
  width: 100%;
  background: var(--color-bg-primary);
  overflow-x: hidden;
}

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

.hero-section-nederlandse-leerstrategieen {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.breadcrumbs-nederlandse-leerstrategieen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
}

.breadcrumb-link-nederlandse-leerstrategieen {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumb-link-nederlandse-leerstrategieen:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumb-separator-nederlandse-leerstrategieen {
  color: #cbd5e1;
}

.breadcrumb-current-nederlandse-leerstrategieen {
  color: #64748b;
}

.hero-content-nederlandse-leerstrategieen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-text-block-nederlandse-leerstrategieen {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-nederlandse-leerstrategieen {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-nederlandse-leerstrategieen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #64748b;
  line-height: 1.6;
}

.hero-meta-nederlandse-leerstrategieen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.meta-item-nederlandse-leerstrategieen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  font-weight: 500;
}

.meta-item-nederlandse-leerstrategieen i {
  font-size: 1rem;
}

.hero-image-block-nederlandse-leerstrategieen {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-nederlandse-leerstrategieen {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.hero-stats-nederlandse-leerstrategieen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid #e2e8f0;
}

.stat-item-nederlandse-leerstrategieen {
  text-align: center;
}

.stat-number-nederlandse-leerstrategieen {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: 1;
}

.stat-label-nederlandse-leerstrategieen {
  font-size: clamp(0.8125rem, 1vw, 1rem);
  color: #64748b;
  margin-top: var(--space-xs);
}

.intro-section-nederlandse-leerstrategieen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-wrapper-nederlandse-leerstrategieen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-Nederlandse-leerstrategieen {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

.intro-description-nederlandse-leerstrategieen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
}

.intro-image-nederlandse-leerstrategieen {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-img-nederlandse-leerstrategieen {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

.method-section-nederlandse-leerstrategieen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.method-content-nederlandse-leerstrategieen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.method-title-nederlandse-leerstrategieen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  text-align: center;
  line-height: 1.2;
}

.methods-grid-nederlandse-leerstrategieen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.method-card-nederlandse-leerstrategieen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.method-card-nederlandse-leerstrategieen:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.method-number-nederlandse-leerstrategieen {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: 1;
}

.method-card-title-nederlandse-leerstrategieen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.2;
}

.method-card-text-nederlandse-leerstrategieen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.practice-section-nederlandse-leerstrategieen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-wrapper-nederlandse-leerstrategieen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.practice-image-nederlandse-leerstrategieen {
  flex: 1 1 50%;
  order: 2;
}

.practice-img-nederlandse-leerstrategieen {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.practice-text-nederlandse-leerstrategieen {
  flex: 1 1 50%;
  order: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

.practice-lead-nederlandse-leerstrategieen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  font-weight: 600;
  font-style: italic;
  line-height: 1.6;
}

.practice-highlight-nederlandse-leerstrategieen {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(5, 150, 105, 0.1);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.practice-text-block-nederlandse-leerstrategieen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
}

.practice-list-nederlandse-leerstrategieen {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1vw, 1rem);
  list-style: none;
}

.practice-list-item-nederlandse-leerstrategieen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.practice-list-item-nederlandse-leerstrategieen::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 800;
}

.progress-section-nederlandse-leerstrategieen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.progress-header-nederlandse-leerstrategieen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.progress-title-nederlandse-leerstrategieen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.progress-subtitle-nederlandse-leerstrategieen {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
}

.progress-steps-nederlandse-leerstrategieen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.progress-step-nederlandse-leerstrategieen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.progress-step-number-nederlandse-leerstrategieen {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: 1;
  white-space: nowrap;
  min-width: 80px;
}

.progress-step-content-nederlandse-leerstrategieen {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 1rem);
}

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

.progress-step-text-nederlandse-leerstrategieen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.tools-section-nederlandse-leerstrategieen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-wrapper-nederlandse-leerstrategieen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.tools-text-nederlandse-leerstrategieen {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

.tools-intro-nederlandse-leerstrategieen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
}

.tools-categories-nederlandse-leerstrategieen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.tools-category-nederlandse-leerstrategieen {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.tools-category-title-nederlandse-leerstrategieen {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #111827;
}

.tools-list-nederlandse-leerstrategieen {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  list-style: none;
  padding-left: 0;
}

.tools-list-item-nederlandse-leerstrategieen {
  font-size: clamp(0.8125rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  padding-left: 1.25rem;
  position: relative;
}

.tools-list-item-nederlandse-leerstrategieen::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.tools-image-nederlandse-leerstrategieen {
  flex: 1 1 50%;
}

.tools-img-nederlandse-leerstrategieen {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

.quote-section-nederlandse-leerstrategieen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.featured-quote-nederlandse-leerstrategieen {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
}

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

.quote-cite-nederlandse-leerstrategieen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  font-style: normal;
}

.tips-section-nederlandse-leerstrategieen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-content-nederlandse-leerstrategieen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.tips-title-nederlandse-leerstrategieen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  text-align: center;
  line-height: 1.2;
}

.tips-grid-nederlandse-leerstrategieen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.tips-card-nederlandse-leerstrategieen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.tips-card-nederlandse-leerstrategieen:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.tips-card-icon-nederlandse-leerstrategieen {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  font-size: 1.5rem;
}

.tips-card-title-nederlandse-leerstrategieen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.2;
}

.tips-card-text-nederlandse-leerstrategieen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.conclusion-section-nederlandse-leerstrategieen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-nederlandse-leerstrategieen {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-title-nederlandse-leerstrategieen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  text-align: center;
  line-height: 1.2;
}

.conclusion-text-nederlandse-leerstrategieen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  text-align: center;
}

.conclusion-cta-nederlandse-leerstrategieen {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.cta-heading-nederlandse-leerstrategieen {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.cta-text-nederlandse-leerstrategieen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.cta-btn-nederlandse-leerstrategieen {
  display: inline-block;
  background: #ffffff;
  color: var(--color-primary);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn-nederlandse-leerstrategieen:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.related-section-nederlandse-leerstrategieen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-nederlandse-leerstrategieen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-nederlandse-leerstrategieen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  text-align: center;
  line-height: 1.2;
}

.related-subtitle-nederlandse-leerstrategieen {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  text-align: center;
}

.related-cards-nederlandse-leerstrategieen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-nederlandse-leerstrategieen {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.related-card-image-nederlandse-leerstrategieen {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.2) 0%, rgba(5, 150, 105, 0.05) 100%);
}

.related-img-nederlandse-leerstrategieen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body-nederlandse-leerstrategieen {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-grow: 1;
}

.related-card-title-nederlandse-leerstrategieen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.2;
}

.related-card-description-nederlandse-leerstrategieen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-nederlandse-leerstrategieen {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.related-card-link-nederlandse-leerstrategieen:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.disclaimer-section-nederlandse-leerstrategieen {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.disclaimer-content-nederlandse-leerstrategieen {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.disclaimer-title-nederlandse-leerstrategieen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
}

.disclaimer-text-nederlandse-leerstrategieen {
  font-size: clamp(0.8125rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-content-nederlandse-leerstrategieen,
  .intro-wrapper-nederlandse-leerstrategieen,
  .practice-wrapper-nederlandse-leerstrategieen,
  .tools-wrapper-nederlandse-leerstrategieen {
    flex-direction: column;
  }

  .practice-image-nederlandse-leerstrategieen {
    order: 1;
  }

  .practice-text-nederlandse-leerstrategieen {
    order: 2;
  }

  .hero-stats-nederlandse-leerstrategieen {
    grid-template-columns: repeat(2, 1fr);
  }

  .progress-step-nederlandse-leerstrategieen {
    flex-direction: column;
  }

  .progress-step-number-nederlandse-leerstrategieen {
    min-width: auto;
  }

  .related-card-nederlandse-leerstrategieen {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-stats-nederlandse-leerstrategieen {
    grid-template-columns: 1fr;
  }

  .methods-grid-nederlandse-leerstrategieen,
  .tips-grid-nederlandse-leerstrategieen {
    flex-direction: column;
  }

  .method-card-nederlandse-leerstrategieen,
  .tips-card-nederlandse-leerstrategieen,
  .related-card-nederlandse-leerstrategieen {
    flex: 1 1 100%;
    max-width: none;
  }

  .breadcrumbs-nederlandse-leerstrategieen {
    font-size: 0.75rem;
  }

  .cta-btn-nederlandse-leerstrategieen {
    width: 100%;
  }
}

.main-groepscursussen-individueel-leren {
  width: 100%;
  background: var(--color-bg-primary);
}

.breadcrumbs-groepscursussen-individueel-leren {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  align-items: center;
}

.breadcrumb-link-groepscursussen-individueel-leren {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.breadcrumb-link-groepscursussen-individueel-leren:hover {
  text-decoration: underline;
  color: var(--color-primary-hover);
}

.breadcrumb-separator-groepscursussen-individueel-leren {
  color: var(--color-text-secondary);
}

.breadcrumb-current-groepscursussen-individueel-leren {
  color: var(--color-text-secondary);
}

.hero-section-groepscursussen-individueel-leren {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-groepscursussen-individueel-leren {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  text-align: center;
}

.hero-title-groepscursussen-individueel-leren {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 750px;
}

.hero-subtitle-groepscursussen-individueel-leren {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  max-width: 650px;
  line-height: 1.6;
}

.hero-meta-groepscursussen-individueel-leren {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin: 1rem 0;
}

.meta-item-groepscursussen-individueel-leren {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  font-weight: 500;
}

.meta-item-groepscursussen-individueel-leren i {
  font-size: 0.9rem;
}

.hero-image-groepscursussen-individueel-leren {
  width: 100%;
  max-width: 700px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-groepscursussen-individueel-leren img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 450px;
  object-fit: cover;
}

.hero-stats-groepscursussen-individueel-leren {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--color-bg-tertiary);
  width: 100%;
}

.stat-item-groepscursussen-individueel-leren {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  text-align: center;
}

.stat-number-groepscursussen-individueel-leren {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: 1;
}

.stat-label-groepscursussen-individueel-leren {
  color: var(--color-text-secondary);
  font-size: clamp(0.8125rem, 1vw, 1rem);
  font-weight: 500;
}

.intro-section-groepscursussen-individueel-leren {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-groepscursussen-individueel-leren {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 5vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.intro-text-groepscursussen-individueel-leren {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.intro-title-groepscursussen-individueel-leren {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.intro-description-groepscursussen-individueel-leren {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.intro-image-groepscursussen-individueel-leren {
  flex: 1 1 350px;
  min-width: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-image-groepscursussen-individueel-leren img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-groepscursussen-individueel-leren {
    flex-direction: column;
  }

  .intro-text-groepscursussen-individueel-leren,
  .intro-image-groepscursussen-individueel-leren {
    flex: 1 1 100%;
  }
}

.comparison-section-groepscursussen-individueel-leren {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.comparison-header-groepscursussen-individueel-leren {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.comparison-title-groepscursussen-individueel-leren {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  max-width: 650px;
}

.comparison-subtitle-groepscursussen-individueel-leren {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  max-width: 500px;
}

.comparison-table-groepscursussen-individueel-leren {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.comparison-row-groepscursussen-individueel-leren {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  align-items: start;
}

.comparison-aspect-groepscursussen-individueel-leren {
  display: flex;
  align-items: center;
}

.comparison-label-groepscursussen-individueel-leren {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
}

.comparison-group-groepscursussen-individueel-leren,
.comparison-individual-groepscursussen-individueel-leren {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.comparison-feature-groepscursussen-individueel-leren {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.feature-label-groepscursussen-individueel-leren {
  color: var(--color-primary);
  font-weight: 600;
  font-size: clamp(0.9375rem, 1vw, 1rem);
}

.feature-text-groepscursussen-individueel-leren {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .comparison-row-groepscursussen-individueel-leren {
    grid-template-columns: 1fr;
  }
}

.benefits-section-groepscursussen-individueel-leren {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.benefits-header-groepscursussen-individueel-leren {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.benefits-title-groepscursussen-individueel-leren {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  max-width: 650px;
}

.benefits-subtitle-groepscursussen-individueel-leren {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
}

.benefits-content-groepscursussen-individueel-leren {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 5vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.benefits-text-groepscursussen-individueel-leren {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.benefit-card-groepscursussen-individueel-leren {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  align-items: flex-start;
}

.benefit-number-groepscursussen-individueel-leren {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  flex-shrink: 0;
  min-width: 60px;
}

.benefit-body-groepscursussen-individueel-leren {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.benefit-title-groepscursussen-individueel-leren {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
}

.benefit-text-groepscursussen-individueel-leren {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  line-height: 1.6;
}

.benefits-image-groepscursussen-individueel-leren {
  flex: 1 1 350px;
  min-width: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.benefits-image-groepscursussen-individueel-leren img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .benefits-content-groepscursussen-individueel-leren {
    flex-direction: column;
  }

  .benefits-text-groepscursussen-individueel-leren,
  .benefits-image-groepscursussen-individueel-leren {
    flex: 1 1 100%;
  }
}

.individual-benefits-section-groepscursussen-individueel-leren {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.individual-header-groepscursussen-individueel-leren {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.individual-title-groepscursussen-individueel-leren {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  max-width: 650px;
}

.individual-subtitle-groepscursussen-individueel-leren {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
}

.individual-content-groepscursussen-individueel-leren {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 5vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.individual-image-groepscursussen-individueel-leren {
  flex: 1 1 350px;
  min-width: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.individual-image-groepscursussen-individueel-leren img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.individual-text-groepscursussen-individueel-leren {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.individual-card-groepscursussen-individueel-leren {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  align-items: flex-start;
}

.individual-number-groepscursussen-individueel-leren {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  flex-shrink: 0;
  min-width: 60px;
}

.individual-body-groepscursussen-individueel-leren {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.individual-card-title-groepscursussen-individueel-leren {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
}

.individual-card-text-groepscursussen-individueel-leren {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .individual-content-groepscursussen-individueel-leren {
    flex-direction: column-reverse;
  }

  .individual-text-groepscursussen-individueel-leren,
  .individual-image-groepscursussen-individueel-leren {
    flex: 1 1 100%;
  }
}

.decision-section-groepscursussen-individueel-leren {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.decision-content-groepscursussen-individueel-leren {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.decision-title-groepscursussen-individueel-leren {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.decision-grid-groepscursussen-individueel-leren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
}

.decision-card-groepscursussen-individueel-leren {
  flex: 1 1 300px;
  max-width: 500px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.decision-card-title-groepscursussen-individueel-leren {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
}

.decision-list-groepscursussen-individueel-leren {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  list-style: none;
}

.decision-item-groepscursussen-individueel-leren {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.decision-item-groepscursussen-individueel-leren::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.decision-quote-groepscursussen-individueel-leren {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.quote-block-groepscursussen-individueel-leren {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  margin: 0;
}

.quote-text-groepscursussen-individueel-leren {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 var(--space-lg) 0;
}

.quote-author-groepscursussen-individueel-leren {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-style: normal;
  display: block;
}

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

.conclusion-section-groepscursussen-individueel-leren {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-groepscursussen-individueel-leren {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-groepscursussen-individueel-leren {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-groepscursussen-individueel-leren {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.conclusion-paragraph-groepscursussen-individueel-leren {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.conclusion-cta-groepscursussen-individueel-leren {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}

.cta-button-groepscursussen-individueel-leren {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  background: var(--color-primary);
  color: #ffffff;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-groepscursussen-individueel-leren:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.related-section-groepscursussen-individueel-leren {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-groepscursussen-individueel-leren {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.related-title-groepscursussen-individueel-leren {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}

.related-subtitle-groepscursussen-individueel-leren {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
}

.related-grid-groepscursussen-individueel-leren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-groepscursussen-individueel-leren {
  flex: 1 1 280px;
  max-width: 400px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-tertiary);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  transition: all 0.3s ease;
}

.related-card-groepscursussen-individueel-leren:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.related-card-header-groepscursussen-individueel-leren {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.related-card-title-groepscursussen-individueel-leren {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-description-groepscursussen-individueel-leren {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-groepscursussen-individueel-leren {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.2s ease;
}

.related-card-link-groepscursussen-individueel-leren:hover {
  text-decoration: underline;
  color: var(--color-primary-hover);
}

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

.disclaimer-section-groepscursussen-individueel-leren {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-bg-tertiary);
}

.disclaimer-content-groepscursussen-individueel-leren {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-groepscursussen-individueel-leren {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.disclaimer-text-groepscursussen-individueel-leren {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.8;
  background: var(--color-bg-primary);
  padding: clamp(1rem, 3vw, 1.5rem);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
  .hero-section-groepscursussen-individueel-leren {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .hero-stats-groepscursussen-individueel-leren {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .breadcrumbs-groepscursussen-individueel-leren {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-stats-groepscursussen-individueel-leren {
    grid-template-columns: 1fr;
  }

  .decision-grid-groepscursussen-individueel-leren {
    flex-direction: column;
  }

  .comparison-row-groepscursussen-individueel-leren {
    grid-template-columns: 1fr;
  }
}

.main-nederlandse-uitspraak-perfectie {
  width: 100%;
  background: var(--color-bg-primary);
}

.main-nederlandse-uitspraak-perfectie section {
  width: 100%;
  overflow: hidden;
}

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

.hero-section-nederlandse-uitspraak-perfectie {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.breadcrumbs-nederlandse-uitspraak-perfectie {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.9375rem);
}

.breadcrumb-link-nederlandse-uitspraak-perfectie {
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.breadcrumb-link-nederlandse-uitspraak-perfectie:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.breadcrumb-separator-nederlandse-uitspraak-perfectie {
  color: #cbd5e1;
  margin: 0 0.25rem;
}

.breadcrumb-current-nederlandse-uitspraak-perfectie {
  color: #64748b;
}

.hero-content-nederlandse-uitspraak-perfectie {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  text-align: center;
}

.hero-title-nederlandse-uitspraak-perfectie {
  color: #1e293b;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 750px;
}

.hero-subtitle-nederlandse-uitspraak-perfectie {
  color: #64748b;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  max-width: 650px;
}

.hero-meta-nederlandse-uitspraak-perfectie {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: var(--space-md);
}

.meta-badge-nederlandse-uitspraak-perfectie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.9375rem);
  font-weight: 500;
}

.meta-badge-nederlandse-uitspraak-perfectie i {
  font-size: 0.875rem;
}

.hero-image-wrapper-nederlandse-uitspraak-perfectie {
  width: 100%;
  max-width: 650px;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-nederlandse-uitspraak-perfectie {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.intro-section-nederlandse-uitspraak-perfectie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.intro-content-nederlandse-uitspraak-perfectie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.intro-text-block-nederlandse-uitspraak-perfectie {
  flex: 1 1 350px;
  min-width: 280px;
}

.intro-title-nederlandse-uitspraak-perfectie {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.intro-description-nederlandse-uitspraak-perfectie {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.intro-image-block-nederlandse-uitspraak-perfectie {
  flex: 1 1 350px;
  min-width: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.intro-image-nederlandse-uitspraak-perfectie {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .intro-content-nederlandse-uitspraak-perfectie {
    flex-direction: column;
  }

  .intro-text-block-nederlandse-uitspraak-perfectie,
  .intro-image-block-nederlandse-uitspraak-perfectie {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

.content-section-nederlandse-uitspraak-perfectie {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.content-wrapper-nederlandse-uitspraak-perfectie {
  display: flex;
  flex-direction: row;
  gap: clamp(2.5rem, 4vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.content-wrapper-reversed-nederlandse-uitspraak-perfectie {
  display: flex;
  flex-direction: row-reverse;
  gap: clamp(2.5rem, 4vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.content-text-block-nederlandse-uitspraak-perfectie {
  flex: 1 1 350px;
  min-width: 280px;
}

.content-heading-nederlandse-uitspraak-perfectie {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.content-text-nederlandse-uitspraak-perfectie {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.content-list-nederlandse-uitspraak-perfectie {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-left: 0;
}

.list-item-nederlandse-uitspraak-perfectie {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.list-item-nederlandse-uitspraak-perfectie::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.content-highlight-box-nederlandse-uitspraak-perfectie {
  background: #f1f5f9;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
}

.highlight-title-nederlandse-uitspraak-perfectie {
  color: #1e293b;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.highlight-text-nederlandse-uitspraak-perfectie {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

.content-image-block-nederlandse-uitspraak-perfectie {
  flex: 1 1 350px;
  min-width: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.content-image-nederlandse-uitspraak-perfectie {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .content-wrapper-nederlandse-uitspraak-perfectie,
  .content-wrapper-reversed-nederlandse-uitspraak-perfectie {
    flex-direction: column !important;
  }

  .content-text-block-nederlandse-uitspraak-perfectie,
  .content-image-block-nederlandse-uitspraak-perfectie {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

.techniques-section-nederlandse-uitspraak-perfectie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.techniques-header-nederlandse-uitspraak-perfectie {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.techniques-title-nederlandse-uitspraak-perfectie {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}

.techniques-subtitle-nederlandse-uitspraak-perfectie {
  color: #64748b;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  max-width: 600px;
  margin: 0 auto;
}

.techniques-grid-nederlandse-uitspraak-perfectie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.technique-card-nederlandse-uitspraak-perfectie {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all 0.3s ease;
}

.technique-card-nederlandse-uitspraak-perfectie:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.technique-number-nederlandse-uitspraak-perfectie {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: 1;
}

.technique-title-nederlandse-uitspraak-perfectie {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
}

.technique-text-nederlandse-uitspraak-perfectie {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

.quote-section-nederlandse-uitspraak-perfectie {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.featured-quote-nederlandse-uitspraak-perfectie {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.75rem, 3vw, 2.5rem);
  border-left: 5px solid var(--color-primary);
  background: #f1f5f9;
  border-radius: var(--radius-lg);
  text-align: center;
}

.quote-text-nederlandse-uitspraak-perfectie {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.quote-author-nederlandse-uitspraak-perfectie {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-style: normal;
  display: block;
  font-weight: 600;
}

.advanced-section-nederlandse-uitspraak-perfectie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.advanced-content-wrapper-nederlandse-uitspraak-perfectie {
  display: flex;
  flex-direction: row;
  gap: clamp(2.5rem, 4vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.advanced-text-block-nederlandse-uitspraak-perfectie {
  flex: 1 1 350px;
  min-width: 280px;
}

.advanced-title-nederlandse-uitspraak-perfectie {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.advanced-text-nederlandse-uitspraak-perfectie {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.advanced-callout-nederlandse-uitspraak-perfectie {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  margin: var(--space-lg) 0;
}

.callout-text-nederlandse-uitspraak-perfectie {
  color: #166534;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.6;
}

.advanced-image-block-nederlandse-uitspraak-perfectie {
  flex: 1 1 350px;
  min-width: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.advanced-image-nederlandse-uitspraak-perfectie {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .advanced-content-wrapper-nederlandse-uitspraak-perfectie {
    flex-direction: column;
  }

  .advanced-text-block-nederlandse-uitspraak-perfectie,
  .advanced-image-block-nederlandse-uitspraak-perfectie {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

.resources-section-nederlandse-uitspraak-perfectie {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.resources-content-nederlandse-uitspraak-perfectie {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.resources-title-nederlandse-uitspraak-perfectie {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
}

.resources-grid-nederlandse-uitspraak-perfectie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.resource-item-nederlandse-uitspraak-perfectie {
  flex: 1 1 240px;
  max-width: 300px;
  background: #f1f5f9;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
}

.resource-icon-nederlandse-uitspraak-perfectie {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  background: rgba(5, 150, 105, 0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.75rem;
}

.resource-name-nederlandse-uitspraak-perfectie {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
}

.resource-description-nederlandse-uitspraak-perfectie {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

.conclusion-section-nederlandse-uitspraak-perfectie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.conclusion-content-nederlandse-uitspraak-perfectie {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.conclusion-title-nederlandse-uitspraak-perfectie {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-nederlandse-uitspraak-perfectie {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.conclusion-checklist-nederlandse-uitspraak-perfectie {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 2px solid #e2e8f0;
}

.checklist-title-nederlandse-uitspraak-perfectie {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.checklist-items-nederlandse-uitspraak-perfectie {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding-left: 0;
}

.checklist-item-nederlandse-uitspraak-perfectie {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1.0625rem);
  line-height: 1.6;
  padding-left: 1.75rem;
  position: relative;
}

.checklist-item-nederlandse-uitspraak-perfectie::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.125rem;
}

.related-posts-section-nederlandse-uitspraak-perfectie {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.related-header-nederlandse-uitspraak-perfectie {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.related-title-nederlandse-uitspraak-perfectie {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.related-subtitle-nederlandse-uitspraak-perfectie {
  color: #64748b;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
}

.related-grid-nederlandse-uitspraak-perfectie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-nederlandse-uitspraak-perfectie {
  flex: 1 1 300px;
  max-width: 380px;
  background: #f1f5f9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.related-card-nederlandse-uitspraak-perfectie:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.related-image-placeholder-nederlandse-uitspraak-perfectie {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.15) 0%, rgba(5, 150, 105, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 2.5rem;
}

.related-body-nederlandse-uitspraak-perfectie {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex-grow: 1;
}

.related-card-title-nederlandse-uitspraak-perfectie {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
}

.related-card-description-nederlandse-uitspraak-perfectie {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  flex-grow: 1;
}

.related-link-nederlandse-uitspraak-perfectie {
  color: var(--color-primary);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  margin-top: var(--space-sm);
}

.related-link-nederlandse-uitspraak-perfectie:hover {
  gap: 0.75rem;
}

.disclaimer-section-nederlandse-uitspraak-perfectie {
  background: #fef3c7;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  border-top: 2px solid #f59e0b;
  border-bottom: 2px solid #f59e0b;
}

.disclaimer-content-nederlandse-uitspraak-perfectie {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #fffbeb;
  border-radius: var(--radius-lg);
  border-left: 5px solid #f59e0b;
}

.disclaimer-title-nederlandse-uitspraak-perfectie {
  color: #92400e;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.disclaimer-text-nederlandse-uitspraak-perfectie {
  color: #78350f;
  font-size: clamp(0.875rem, 1vw, 1.0625rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .techniques-grid-nederlandse-uitspraak-perfectie {
    gap: 1rem;
  }

  .technique-card-nederlandse-uitspraak-perfectie {
    flex: 1 1 100%;
    max-width: none;
  }

  .resources-grid-nederlandse-uitspraak-perfectie {
    gap: 1rem;
  }

  .resource-item-nederlandse-uitspraak-perfectie {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-grid-nederlandse-uitspraak-perfectie {
    gap: 1rem;
  }

  .related-card-nederlandse-uitspraak-perfectie {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-content-nederlandse-uitspraak-perfectie {
    text-align: left;
    align-items: flex-start;
  }

  .hero-title-nederlandse-uitspraak-perfectie,
  .hero-subtitle-nederlandse-uitspraak-perfectie {
    max-width: 100%;
  }

  .hero-meta-nederlandse-uitspraak-perfectie {
    justify-content: flex-start;
  }

  .related-header-nederlandse-uitspraak-perfectie {
    text-align: left;
  }

  .techniques-header-nederlandse-uitspraak-perfectie {
    text-align: left;
  }

  .resources-content-nederlandse-uitspraak-perfectie {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-nederlandse-uitspraak-perfectie {
    font-size: 0.6875rem;
    gap: 0.25rem;
  }

  .hero-meta-nederlandse-uitspraak-perfectie {
    gap: 0.5rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .meta-badge-nederlandse-uitspraak-perfectie {
    font-size: 0.6875rem;
    padding: 0.375rem 0.75rem;
  }

  .technique-card-nederlandse-uitspraak-perfectie {
    flex: 1 1 100%;
  }

  .resource-item-nederlandse-uitspraak-perfectie {
    flex: 1 1 100%;
  }

  .conclusion-checklist-nederlandse-uitspraak-perfectie {
    padding: 1rem;
  }

  .checklist-item-nederlandse-uitspraak-perfectie {
    font-size: 0.875rem;
  }
}

.main-nederlandse-taalcertificaten {
  width: 100%;
  background: var(--color-bg-primary);
}

.hero-section-nederlandse-taalcertificaten {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

.breadcrumb-link-nederlandse-taalcertificaten {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumb-link-nederlandse-taalcertificaten:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumb-separator-nederlandse-taalcertificaten {
  color: var(--color-text-muted);
  margin: 0 0.25rem;
}

.breadcrumb-current-nederlandse-taalcertificaten {
  color: var(--color-text-secondary);
}

.hero-content-nederlandse-taalcertificaten {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  text-align: center;
}

.hero-title-nederlandse-taalcertificaten {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  line-height: 1.15;
  max-width: 800px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-nederlandse-taalcertificaten {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  max-width: 700px;
  line-height: 1.6;
}

.hero-image-wrapper-nederlandse-taalcertificaten {
  width: 100%;
  max-width: 700px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin: 1rem 0;
}

.hero-image-nederlandse-taalcertificaten {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
}

.hero-stats-nederlandse-taalcertificaten {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  width: 100%;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--color-bg-tertiary);
}

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

.stat-number-nederlandse-taalcertificaten {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: 1;
}

.stat-label-nederlandse-taalcertificaten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.introduction-section-nederlandse-taalcertificaten {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

.introduction-text-nederlandse-taalcertificaten {
  flex: 1 1 350px;
  max-width: 50%;
}

.introduction-title-nederlandse-taalcertificaten {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.introduction-paragraph-nederlandse-taalcertificaten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.introduction-image-nederlandse-taalcertificaten {
  flex: 1 1 350px;
  max-width: 50%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.introduction-image-file-nederlandse-taalcertificaten {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}

@media (max-width: 768px) {
  .introduction-text-nederlandse-taalcertificaten {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .introduction-image-nederlandse-taalcertificaten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.certificates-section-nederlandse-taalcertificaten {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

.certificates-header-nederlandse-taalcertificaten {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.certificates-title-nederlandse-taalcertificaten {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.certificates-subtitle-nederlandse-taalcertificaten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.certificates-grid-nederlandse-taalcertificaten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.certificate-card-nederlandse-taalcertificaten {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-tertiary);
  transition: all 0.3s ease;
}

.certificate-card-nederlandse-taalcertificaten:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.certificate-number-nederlandse-taalcertificaten {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: 1;
}

.certificate-name-nederlandse-taalcertificaten {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
}

.certificate-subtitle-nederlandse-taalcertificaten {
  color: var(--color-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  margin-top: -0.5rem;
}

.certificate-description-nederlandse-taalcertificaten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1.0625rem);
  line-height: 1.6;
}

.certificate-features-nederlandse-taalcertificaten {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-bg-tertiary);
  list-style: none;
}

.feature-item-nederlandse-taalcertificaten {
  color: var(--color-text-secondary);
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  padding-left: 1.5rem;
  position: relative;
}

.feature-item-nederlandse-taalcertificaten::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

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

.preparation-section-nederlandse-taalcertificaten {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

.preparation-content-nederlandse-taalcertificaten {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
  flex-wrap: wrap;
}

.preparation-text-nederlandse-taalcertificaten {
  flex: 1 1 350px;
  max-width: 50%;
}

.preparation-title-nederlandse-taalcertificaten {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.preparation-paragraph-nederlandse-taalcertificaten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.preparation-steps-nederlandse-taalcertificaten {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.preparation-step-nederlandse-taalcertificaten {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.step-number-nederlandse-taalcertificaten {
  font-size: clamp(1.75rem, 2vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  flex-shrink: 0;
  min-width: 50px;
  line-height: 1;
}

.step-content-nederlandse-taalcertificaten {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-nederlandse-taalcertificaten {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
}

.step-description-nederlandse-taalcertificaten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

.preparation-image-nederlandse-taalcertificaten {
  flex: 1 1 350px;
  max-width: 50%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.preparation-image-file-nederlandse-taalcertificaten {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}

@media (max-width: 768px) {
  .preparation-text-nederlandse-taalcertificaten {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .preparation-image-nederlandse-taalcertificaten {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .preparation-step-nederlandse-taalcertificaten {
    flex-direction: column;
  }
}

.examen-structure-nederlandse-taalcertificaten {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

.examen-header-nederlandse-taalcertificaten {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.examen-title-nederlandse-taalcertificaten {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.examen-subtitle-nederlandse-taalcertificaten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.examen-components-nederlandse-taalcertificaten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.component-box-nederlandse-taalcertificaten {
  flex: 1 1 250px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-tertiary);
}

.component-title-nederlandse-taalcertificaten {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-primary);
}

.component-description-nederlandse-taalcertificaten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1.0625rem);
  line-height: 1.6;
}

.component-info-nederlandse-taalcertificaten {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-bg-tertiary);
}

.info-label-nederlandse-taalcertificaten {
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
}

.info-value-nederlandse-taalcertificaten {
  color: var(--color-primary);
  font-weight: 500;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
}

@media (max-width: 768px) {
  .component-box-nederlandse-taalcertificaten {
    flex: 1 1 100%;
    max-width: none;
  }
}

.tips-section-nederlandse-taalcertificaten {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

.tips-content-nederlandse-taalcertificaten {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
  flex-wrap: wrap;
}

.tips-text-nederlandse-taalcertificaten {
  flex: 1 1 350px;
  max-width: 50%;
}

.tips-title-nederlandse-taalcertificaten {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.tips-intro-nederlandse-taalcertificaten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.tips-list-nederlandse-taalcertificaten {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.tip-item-nederlandse-taalcertificaten {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-bg-tertiary);
}

.tip-item-nederlandse-taalcertificaten:last-child {
  border-bottom: none;
}

.tip-heading-nederlandse-taalcertificaten {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
}

.tip-text-nederlandse-taalcertificaten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

.tips-image-nederlandse-taalcertificaten {
  flex: 1 1 350px;
  max-width: 50%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.tips-image-file-nederlandse-taalcertificaten {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}

@media (max-width: 768px) {
  .tips-text-nederlandse-taalcertificaten {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .tips-image-nederlandse-taalcertificaten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-nederlandse-taalcertificaten {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.featured-quote-nederlandse-taalcertificaten {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--color-bg-primary);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  text-align: center;
}

.quote-text-nederlandse-taalcertificaten {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.quote-author-nederlandse-taalcertificaten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-style: normal;
  display: block;
}

.costs-section-nederlandse-taalcertificaten {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

.costs-title-nederlandse-taalcertificaten {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  line-height: 1.2;
}

.costs-grid-nederlandse-taalcertificaten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.costs-card-nederlandse-taalcertificaten {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-tertiary);
}

.costs-card-title-nederlandse-taalcertificaten {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-primary);
}

.costs-card-text-nederlandse-taalcertificaten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1.0625rem);
  line-height: 1.6;
}

.costs-list-nederlandse-taalcertificaten {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: var(--space-md);
  list-style: none;
}

.costs-item-nederlandse-taalcertificaten {
  color: var(--color-text-secondary);
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  padding-left: 1.5rem;
  position: relative;
}

.costs-item-nederlandse-taalcertificaten::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

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

.conclusion-section-nederlandse-taalcertificaten {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

.conclusion-content-nederlandse-taalcertificaten {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.conclusion-title-nederlandse-taalcertificaten {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
}

.conclusion-text-nederlandse-taalcertificaten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.conclusion-action-nederlandse-taalcertificaten {
  margin-top: var(--space-lg);
}

.cta-button-nederlandse-taalcertificaten {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.disclaimer-section-nederlandse-taalcertificaten {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

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

.disclaimer-content-nederlandse-taalcertificaten {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius-lg);
}

.disclaimer-title-nederlandse-taalcertificaten {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.disclaimer-text-nederlandse-taalcertificaten {
  color: var(--color-text-secondary);
  font-size: clamp(0.8125rem, 1vw, 1rem);
  line-height: 1.7;
}

.related-section-nederlandse-taalcertificaten {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

.related-title-nederlandse-taalcertificaten {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  line-height: 1.2;
}

.related-grid-nederlandse-taalcertificaten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-nederlandse-taalcertificaten {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.related-image-wrapper-nederlandse-taalcertificaten {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.15) 0%, rgba(5, 150, 105, 0.05) 100%);
}

.related-image-nederlandse-taalcertificaten {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-body-nederlandse-taalcertificaten {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.related-card-title-nederlandse-taalcertificaten {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-nederlandse-taalcertificaten {
  color: var(--color-text-secondary);
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.6;
}

.related-link-nederlandse-taalcertificaten {
  color: var(--color-primary);
  font-weight: 600;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: auto;
}

.related-link-nederlandse-taalcertificaten:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

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

@media (min-width: 768px) {
  .hero-section-nederlandse-taalcertificaten {
    padding: clamp(4rem, 10vw, 10rem) 0;
  }

  .certificates-section-nederlandse-taalcertificaten,
  .examen-structure-nederlandse-taalcertificaten,
  .costs-section-nederlandse-taalcertificaten {
    padding: clamp(4rem, 10vw, 10rem) 0;
  }
}

@media (max-width: 480px) {
  .hero-stats-nederlandse-taalcertificaten {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .preparation-step-nederlandse-taalcertificaten,
  .step-number-nederlandse-taalcertificaten {
    flex-direction: column;
  }

  .step-number-nederlandse-taalcertificaten {
    min-width: auto;
  }
}

:root {
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;
  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-primary-light: #10b981;
  --color-secondary: #0891b2;
  --color-secondary-light: #06b6d4;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

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

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

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

.dutch-learning-about {
  width: 100%;
}

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

.hero-landing-about .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 4vw, 3rem);
}

.hero-landing-content-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  max-width: 700px;
}

.hero-landing-title-about {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  font-family: var(--font-heading);
}

.hero-landing-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
}

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

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

.hero-landing-stat-number-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  font-family: var(--font-heading);
}

.hero-landing-stat-label-about {
  font-size: 0.875rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-landing-image-about {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .hero-landing-about {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .hero-landing-about .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-landing-content-about {
    text-align: left;
    max-width: 500px;
    flex: 1;
  }
}

.journey-section-about {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.journey-section-about .container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.journey-header-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.journey-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
}

.journey-title-about {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.journey-description-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  max-width: 650px;
}

.journey-timeline-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.journey-milestone-about {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.journey-milestone-marker-about {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 60px;
  background: var(--color-primary);
  border-radius: 50%;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.journey-milestone-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

.journey-milestone-year-about {
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.journey-milestone-title-about {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.journey-milestone-text-about {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
}

.journey-image-about {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: 1rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .journey-section-about {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .journey-milestone-about {
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
  }
}

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

.approach-section-about .container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.approach-header-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.approach-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
  margin: 0 auto;
}

.approach-title-about {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.approach-subtitle-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
}

.approach-pillars-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.approach-pillar-about {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.approach-pillar-about:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-4px);
}

.approach-pillar-icon-about {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #10b981;
  border-radius: var(--radius-md);
  color: #0f172a;
  font-size: 1.5rem;
}

.approach-pillar-title-about {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}

.approach-pillar-text-about {
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .approach-section-about {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .approach-header-about {
    text-align: center;
  }

  .approach-pillar-about {
    flex: 1 1 300px;
  }
}

.commitment-section-about {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.commitment-section-about .container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.commitment-header-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.commitment-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
}

.commitment-title-about {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.commitment-intro-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  max-width: 650px;
}

.commitment-values-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.commitment-value-card-about {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.commitment-value-card-about:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.commitment-value-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  font-family: var(--font-heading);
}

.commitment-value-title-about {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.commitment-value-text-about {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
}

.commitment-image-about {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: 1rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .commitment-section-about {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .commitment-value-card-about {
    flex: 1 1 300px;
  }
}

.mission-quote-section-about {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.mission-quote-section-about .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mission-blockquote-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(2rem, 4vw, 3rem);
  background: #ffffff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  max-width: 650px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.mission-quote-text-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #0f172a;
  line-height: 1.8;
  font-family: var(--font-heading);
}

.mission-quote-author-about {
  font-size: 0.9375rem;
  color: #4b5563;
  font-weight: 600;
  font-style: normal;
}

@media (min-width: 768px) {
  .mission-quote-section-about {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .mission-blockquote-about {
    padding: clamp(2.5rem, 5vw, 3.5rem);
  }
}

.disclaimer-section-about {
  background: #0f172a;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.disclaimer-section-about .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  font-size: 1.25rem;
  color: #10b981;
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}

.disclaimer-text-about {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .disclaimer-section-about {
    padding: clamp(3rem, 6vw, 5rem) 0;
  }

  .disclaimer-text-about {
    font-size: 0.9375rem;
  }
}

.legal-portal {
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

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

.legal-portal-hero {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.legal-portal-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-portal-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-portal-hero-meta {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.legal-portal-content {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.legal-portal-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.legal-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 3vw + 0.5rem, 2rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
}

.legal-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.legal-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.legal-section li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 600;
}

.legal-portal-contact {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  margin-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid #e5e7eb;
  overflow: hidden;
}

.legal-portal-contact-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-portal-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 3vw + 0.5rem, 2rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
}

.legal-portal-contact-intro {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

.contact-detail {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.contact-detail strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

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

  .legal-portal-content {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .legal-portal-contact {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .legal-section {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .legal-portal-hero {
    padding: clamp(4rem, 12vw, 6rem) 0;
  }

  .legal-portal-content {
    padding: clamp(5rem, 12vw, 7rem) 0;
  }

  .legal-portal-contact {
    padding: clamp(4rem, 12vw, 6rem) 0;
  }

  .legal-section {
    gap: 1.75rem;
  }

  .legal-section h2 {
    margin-top: 0.5rem;
  }
}

.legal-section a {
  color: var(--color-secondary);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.legal-section a:hover {
  color: var(--color-primary);
}

.thank-page {
  display: flex;
  flex-direction: column;
}

.thank-section {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.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;
  justify-content: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.thank-icon {
  width: clamp(60px, 12vw, 100px);
  height: clamp(60px, 12vw, 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  animation: pulse-success 2s ease-in-out infinite;
}

.thank-icon i {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--color-primary);
}

.thank-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.thank-lead {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.4;
}

.thank-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.btn-primary:active {
  transform: translateY(0);
}

@keyframes pulse-success {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

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

  .thank-icon {
    width: clamp(70px, 12vw, 120px);
    height: clamp(70px, 12vw, 120px);
  }

  .thank-icon i {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: 6rem 0;
  }

  .thank-content {
    gap: 2.5rem;
  }

  .btn {
    padding: 1rem 2.5rem;
  }

  .btn-primary:hover {
    transform: translateY(-3px);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
  }

  .thank-icon {
    width: 120px;
    height: 120px;
  }

  .thank-icon i {
    font-size: 4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-icon {
    animation: none;
  }

  .btn {
    transition: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f3a 100%);
  width: 100%;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  position: relative;
}

.error-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(5, 150, 105, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(8, 145, 178, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.error-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(2rem, 5vw, 3rem);
}

.error-illustration {
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.error-code-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.error-code {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  font-family: var(--font-heading);
  text-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.error-icon {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: #06b6d4;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.error-message {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.error-title {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.error-subtitle {
  color: #10b981;
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  line-height: 1.4;
  margin: 0;
  font-weight: 600;
}

.error-description {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1.5vw + 0.25rem, 1.0625rem);
  line-height: 1.7;
  margin: 0;
  font-family: var(--font-primary);
}

.error-suggestions {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  margin: clamp(0.5rem, 2vw, 1rem) 0;
}

.suggestions-label {
  color: #10b981;
  font-size: clamp(0.875rem, 1.5vw + 0.25rem, 1rem);
  line-height: 1.5;
  margin: 0 0 0.75rem 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.suggestions-label i {
  font-size: 1.125rem;
}

.suggestions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.suggestions-list li {
  color: #cbd5e1;
  font-size: clamp(0.8125rem, 1.25vw + 0.25rem, 0.9375rem);
  line-height: 1.5;
  padding-left: 1.5rem;
  position: relative;
}

.suggestions-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 4px;
  height: 4px;
  background: #06b6d4;
  border-radius: 50%;
}

.btn {
  display: inline-block;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.75rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1.5vw + 0.25rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  line-height: 1.5;
}

.btn-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  margin-top: clamp(0.5rem, 2vw, 1rem);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.btn-primary:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .error-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }
  
  .error-content {
    gap: clamp(2.5rem, 6vw, 4rem);
  }
  
  .error-code {
    text-shadow: 0 0 40px rgba(16, 185, 129, 0.3);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: clamp(4rem, 10vw, 6rem) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .error-content {
    gap: clamp(3rem, 8vw, 4rem);
  }
}

@media (min-width: 768px) {
  .error-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: rotate 20s linear infinite;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.error-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 480px) {
  .error-code-wrapper {
    gap: 0.5rem;
  }
  
  .error-suggestions {
    padding: 1rem;
  }
  
  .suggestions-list li {
    padding-left: 1.25rem;
  }
}