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

:root {
  
  
  
  
  --color-bg-dark-primary: #042f2e;
  --color-bg-dark-secondary: #064e4a;
  --color-bg-dark-tertiary: #0f766e;
  --color-bg-dark-card: rgba(20, 184, 166, 0.1);
  
  
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-light-card: #ffffff;
  
  
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #99f6e4;
  --color-text-dark-muted: #a7f3d0;
  
  
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #64748b;
  
  
  --color-primary: #14b8a6;
  --color-primary-hover: #0d9488;
  --color-secondary: #2dd4bf;
  --color-accent-warm: #f59e0b;
  
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', 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.2);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

@media (min-width: 1440px) {
  .container {
    padding: 0 var(--space-2xl);
  }
}

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

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

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

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

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

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

p {
  line-height: 1.7;
}

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

ul,
ol {
  list-style: none;
}

.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);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: var(--font-body);
}

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

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

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

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

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

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

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-lg);
}

.icon.primary {
  background: rgba(20, 184, 166, 0.15);
  color: var(--color-primary);
}

.icon.secondary {
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-accent-warm);
}

.card {
  background: var(--color-bg-light-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 {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

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

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

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

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

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

.dark-section a:not(.btn) {
  color: var(--color-secondary);
}

.dark-section a:not(.btn):hover {
  color: var(--color-text-dark-primary);
}

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

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

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

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

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

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

.light-section a:not(.btn) {
  color: var(--color-primary);
}

.light-section a:not(.btn):hover {
  color: var(--color-primary-hover);
}

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

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    gap: var(--space-3xl);
  }
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.hero-title {
  color: var(--color-text-dark-primary);
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
}

.hero-subtitle {
  color: var(--color-text-dark-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 400;
}

.hero-description {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

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

@media (min-width: 640px) {
  .hero-cta-group {
    flex-direction: row;
    align-items: center;
  }
}

.hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

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

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

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

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

.features-subtitle {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.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-light-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.feature-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
}

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

.feature-description {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

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

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

@media (min-width: 1024px) {
  .about-content {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 6vw, 4rem);
  }
}

.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

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

.about-description {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

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

.about-list-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.about-list-icon {
  flex-shrink: 0;
  color: var(--color-secondary);
  margin-top: 2px;
}

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

.about-visual {
  flex: 1;
  min-height: 350px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.pricing-section {
  background: var(--color-bg-light-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

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

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

.pricing-subtitle {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
}

.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-light-card);
  padding: clamp(2rem, 4vw, 2.5rem);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: var(--color-primary);
  transform: scale(1.02);
}

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

.pricing-name {
  color: var(--color-text-light-primary);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
}

.pricing-amount {
  color: var(--color-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
}

.pricing-currency {
  font-size: 1rem;
  font-weight: 400;
}

.pricing-period {
  color: var(--color-text-light-secondary);
  font-size: 0.9rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1;
}

.pricing-feature {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  color: var(--color-text-light-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.pricing-feature-icon {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-cta {
  width: 100%;
  justify-content: center;
}

.testimonials-section {
  background: var(--color-bg-dark-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

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

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

.testimonials-subtitle {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
}

.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-dark-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(20, 184, 166, 0.2);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(20, 184, 166, 0.5);
  background: rgba(20, 184, 166, 0.15);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--color-accent-warm);
  font-size: 0.9rem;
}

.testimonial-text {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  font-style: italic;
}

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

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

.testimonial-role {
  color: var(--color-secondary);
  font-size: 0.875rem;
}

.contact-section {
  background: var(--color-bg-light-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

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

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

.contact-subtitle {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
}

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

@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}

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

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

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

.form-input,
.form-textarea {
  padding: var(--space-md);
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-light-primary);
  background: #ffffff;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit-btn {
  background: var(--color-primary);
  color: #ffffff;
  padding: var(--space-md) var(--space-xl);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.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: var(--space-xl);
}

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

.info-icon {
  font-size: 1.75rem;
  color: var(--color-primary);
}

.info-title {
  color: var(--color-text-light-primary);
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.125rem);
}

.info-text {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.info-text a {
  color: var(--color-primary);
  text-decoration: none;
}

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

.cta-section {
  background: linear-gradient(135deg, var(--color-bg-dark-primary) 0%, var(--color-bg-dark-secondary) 100%);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.cta-title {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.cta-description {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

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

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.stats-section {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: center;
}

.stat-number {
  color: var(--color-primary);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
}

.stat-label {
  color: var(--color-text-light-primary);
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.125rem);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-dark-primary);
  padding: var(--space-lg);
  border-top: 2px solid var(--color-primary);
  z-index: 1000;
  box-shadow: var(--shadow-xl);
}

.cookie-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-text {
  color: var(--color-text-dark-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}

.cookie-text a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: var(--color-text-dark-primary);
}

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

.cookie-accept-btn {
  background: var(--color-primary);
  color: #ffffff;
  padding: var(--space-sm) var(--space-lg);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.cookie-accept-btn:hover {
  background: var(--color-primary-hover);
}

.cookie-decline-btn {
  background: transparent;
  color: var(--color-text-dark-muted);
  padding: var(--space-sm) var(--space-lg);
  border: 1px solid var(--color-text-dark-muted);
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.cookie-decline-btn:hover {
  border-color: var(--color-text-dark-primary);
  color: var(--color-text-dark-primary);
}

@media (max-width: 767px) {
  .hero-section {
    padding: 3rem 0;
  }

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

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

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

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

  .cta-buttons {
    flex-direction: column;
  }
}

@media (min-width: 1440px) {
  section {
    scroll-behavior: smooth;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');

:root {
  --color-bg-dark-primary: #042f2e;
  --color-bg-dark-secondary: #064e4a;
  --color-bg-dark-tertiary: #0f766e;
  --color-bg-dark-card: rgba(20, 184, 166, 0.1);
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-light-card: #ffffff;
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #99f6e4;
  --color-text-dark-muted: #a7f3d0;
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #64748b;
  --color-primary: #14b8a6;
  --color-primary-hover: #0d9488;
  --color-secondary: #2dd4bf;
  --color-accent-warm: #f59e0b;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', 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.2);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --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-body);
  line-height: 1.6;
}

.header-groei-nav {
  position: static;
  background: var(--color-bg-dark-primary);
  padding: clamp(1rem, 2vw, 1.5rem) 0;
  border-bottom: 1px solid rgba(20, 184, 166, 0.15);
  z-index: 100;
}

.header-groei-nav-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-groei-nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-groei-nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin-right: 0.25rem;
  flex-shrink: 0;
}

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

.header-groei-nav-desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex: 1;
}

.header-groei-nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #99f6e4;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding-bottom: 0.25rem;
}

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

.header-groei-nav-link:hover {
  color: var(--color-secondary);
}

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

.header-groei-nav-cta-button {
  display: none;
  padding: 0.75rem 1.75rem;
  background: var(--color-primary);
  color: #042f2e;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.header-groei-nav-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.25);
}

.header-groei-nav-cta-button:active {
  transform: translateY(0);
  transition-duration: 150ms;
}

.header-groei-nav-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-right: -0.5rem;
  flex-shrink: 0;
}

.header-groei-nav-hamburger {
  width: 24px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.header-groei-nav-mobile-toggle[aria-expanded="true"] .header-groei-nav-hamburger:nth-child(2) {
  opacity: 0;
}

.header-groei-nav-mobile-toggle[aria-expanded="true"] .header-groei-nav-hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-groei-nav-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 47, 46, 0.98);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
}

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

.header-groei-nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.25rem, 4vw, 2rem);
  border-bottom: 1px solid rgba(20, 184, 166, 0.1);
}

.header-groei-nav-mobile-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.header-groei-nav-mobile-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header-groei-nav-mobile-close:hover {
  color: var(--color-secondary);
  transform: rotate(90deg);
}

.header-groei-nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(1rem, 3vw, 1.5rem) 0;
  flex: 1;
  overflow-y: auto;
}

.header-groei-nav-mobile-link {
  padding: clamp(1rem, 3vw, 1.25rem) clamp(1.25rem, 4vw, 2rem);
  color: #99f6e4;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 3px solid transparent;
}

.header-groei-nav-mobile-link:hover {
  background: rgba(20, 184, 166, 0.1);
  color: var(--color-secondary);
  border-left-color: var(--color-primary);
  padding-left: clamp(1.5rem, 4vw, 2.25rem);
}

.header-groei-nav-mobile-cta {
  padding: clamp(1rem, 3vw, 1.25rem) clamp(1.25rem, 4vw, 2rem);
  margin: clamp(1rem, 3vw, 1.5rem);
  background: var(--color-primary);
  color: #042f2e;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header-groei-nav-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.25);
}

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

  .header-groei-nav-cta-button {
    display: block;
  }

  .header-groei-nav-mobile-toggle {
    display: none;
  }

  .header-groei-nav-mobile-menu {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .header-groei-nav-link {
    font-size: 0.9rem;
  }

  .header-groei-nav-logo-text {
    font-size: 1.125rem;
  }
}

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

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

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

@media (min-width: 768px) {
  .container {
    padding: 0 clamp(1.5rem, 5vw, 3rem);
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

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

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

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

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

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

p {
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  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: 12px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  font-family: 'Inter', sans-serif;
}

.btn-primary-index,
.btn-primary-cta-index {
  background: #14b8a6;
  color: #0f172a;
}

.btn-primary-index:hover,
.btn-primary-cta-index:hover {
  background: #0d9488;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
}

.btn-secondary-index,
.btn-secondary-cta-index {
  border: 2px solid #14b8a6;
  color: #14b8a6;
  background: transparent;
}

.btn-secondary-index:hover,
.btn-secondary-cta-index:hover {
  background: #14b8a6;
  color: #0f172a;
  transform: translateY(-3px);
}

.hero-section-index {
  background: #042f2e;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.hero-deco-glow-index {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

.hero-gradient-mesh-index {
  position: absolute;
  bottom: 10%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-shape-1-index {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 150px;
  height: 200px;
  background: rgba(20, 184, 166, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-floating-shape-2-index {
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 200px;
  height: 180px;
  background: rgba(45, 212, 191, 0.05);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
}

.hero-accent-orb-index {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 120px;
  height: 120px;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.hero-line-accent-index {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

@media (min-width: 1024px) {
  .hero-content-index {
    flex-direction: row;
    align-items: center;
    gap: clamp(3rem, 6vw, 5rem);
  }
}

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

.hero-title-index {
  color: #ffffff;
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
}

.hero-subtitle-index {
  color: #2dd4bf;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 400;
}

.hero-description-index {
  color: #a7f3d0;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.hero-cta-group-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

@media (min-width: 640px) {
  .hero-cta-group-index {
    flex-direction: row;
    align-items: center;
  }
}

.hero-visual-index {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.hero-image-index {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  max-width: 450px;
}

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

.hero-stat-item-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  flex: 0 1 auto;
}

.hero-stat-number-index {
  color: #14b8a6;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.hero-stat-label-index {
  color: #a7f3d0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 500;
}

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

.features-deco-left-index {
  position: absolute;
  top: 10%;
  left: -5%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

.features-deco-right-index {
  position: absolute;
  bottom: 15%;
  right: -3%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

.features-deco-center-index {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.features-deco-accent-1-index {
  position: absolute;
  top: 25%;
  right: 15%;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.features-deco-accent-2-index {
  position: absolute;
  bottom: 30%;
  left: 10%;
  width: 100px;
  height: 100px;
  background: rgba(20, 184, 166, 0.03);
  border: 1px solid rgba(20, 184, 166, 0.08);
  border-radius: 12px;
  z-index: 1;
  pointer-events: none;
  transform: rotate(15deg);
}

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

.features-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.features-title-index {
  color: #0f172a;
  margin-bottom: 1rem;
}

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

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

.features-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.features-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(20, 184, 166, 0.15);
  border-color: rgba(20, 184, 166, 0.2);
}

.features-card-icon-index {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(20, 184, 166, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14b8a6;
  font-size: 1.75rem;
}

.features-card-title-index {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
}

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

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

.about-section-index {
  background: #064e4a;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.about-deco-left-glow-index {
  position: absolute;
  top: 5%;
  left: -8%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

.about-deco-right-shape-index {
  position: absolute;
  top: 40%;
  right: -5%;
  width: 250px;
  height: 280px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 70% 30% 40% 60% / 30% 70% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.about-deco-bottom-index {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: linear-gradient(180deg, transparent 0%, rgba(20, 184, 166, 0.03) 100%);
  z-index: 1;
  pointer-events: none;
}

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

@media (min-width: 1024px) {
  .about-content-index {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 6vw, 4rem);
  }
}

.about-text-index {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-title-index {
  color: #ffffff;
}

.about-description-index {
  color: #a7f3d0;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.about-highlights-index {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-highlight-item-index {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.about-highlight-number-index {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #14b8a6;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
  min-width: 50px;
}

.about-highlight-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-highlight-title-index {
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
}

.about-highlight-text-index {
  color: #a7f3d0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.about-visual-index {
  flex: 1;
  min-height: 350px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

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

.process-deco-top-index {
  position: absolute;
  top: -5%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.07) 0%, transparent 70%);
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

.process-deco-bottom-index {
  position: absolute;
  bottom: 5%;
  left: 10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

.process-deco-accent-index {
  position: absolute;
  top: 50%;
  right: 3%;
  width: 150px;
  height: 150px;
  background: rgba(20, 184, 166, 0.04);
  border: 1px solid rgba(20, 184, 166, 0.1);
  border-radius: 12px;
  z-index: 1;
  pointer-events: none;
  transform: rotate(25deg);
}

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

.process-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.process-title-index {
  color: #0f172a;
  margin-bottom: 1rem;
}

.process-subtitle-index {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-index {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.process-step-index {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-index:hover {
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.1);
  border-color: rgba(20, 184, 166, 0.2);
}

.process-step-number-index {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #14b8a6;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

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

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

.process-step-text-index {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.courses-section-index {
  background: #042f2e;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.courses-deco-left-index {
  position: absolute;
  top: 10%;
  left: -6%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

.courses-deco-right-index {
  position: absolute;
  bottom: 10%;
  right: -4%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.07) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

.courses-deco-center-index {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 180px;
  background: rgba(20, 184, 166, 0.04);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

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

.courses-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  color: #2dd4bf;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.courses-title-index {
  color: #ffffff;
}

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 14px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card-index:hover {
  transform: translateY(-8px);
  background: rgba(20, 184, 166, 0.12);
  border-color: rgba(20, 184, 166, 0.4);
  box-shadow: 0 15px 40px rgba(20, 184, 166, 0.15);
}

.featured-card-title-index {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
}

.featured-card-description-index {
  color: #a7f3d0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.featured-card-image-index {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

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

.courses-cta-text-index {
  color: #a7f3d0;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: 1rem;
}

.testimonials-section-index {
  background: #0f766e;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.testimonials-deco-1-index {
  position: absolute;
  top: 8%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

.testimonials-deco-2-index {
  position: absolute;
  top: 45%;
  right: 3%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
  filter: blur(55px);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

.testimonials-deco-3-index {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 150px;
  height: 150px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.testimonials-deco-4-index {
  position: absolute;
  bottom: 20%;
  right: 8%;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.15), transparent);
  z-index: 1;
  pointer-events: none;
}

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

.testimonials-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(45, 212, 191, 0.15);
  color: #2dd4bf;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.testimonials-title-index {
  color: #ffffff;
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(20, 184, 166, 0.06);
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: 12px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card-index:hover {
  background: rgba(20, 184, 166, 0.1);
  border-color: rgba(45, 212, 191, 0.4);
  transform: translateY(-4px);
}

.testimonial-stars-index {
  display: flex;
  gap: 0.25rem;
  color: #f59e0b;
  font-size: 0.85rem;
}

.testimonial-text-index {
  color: #a7f3d0;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.testimonial-name-index {
  color: #ffffff;
  font-weight: 600;
}

.testimonial-role-index {
  color: #2dd4bf;
  font-size: 0.875rem;
}

.cta-section-index {
  background: linear-gradient(135deg, #042f2e 0%, #064e4a 100%);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-deco-glow-index {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.12) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

.cta-deco-shape-index {
  position: absolute;
  bottom: -15%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

.cta-deco-accent-index {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 100px;
  height: 100px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.cta-content-index {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

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

.cta-description-index {
  color: #a7f3d0;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.cta-buttons-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons-index {
    flex-direction: row;
  }
}

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

.contact-deco-1-index {
  position: absolute;
  top: 5%;
  right: -5%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.07) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

.contact-deco-2-index {
  position: absolute;
  bottom: 10%;
  left: -3%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

.contact-deco-3-index {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 100px;
  height: 100px;
  background: rgba(20, 184, 166, 0.03);
  border: 1px solid rgba(20, 184, 166, 0.08);
  border-radius: 12px;
  z-index: 1;
  pointer-events: none;
}

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

.contact-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.contact-title-index {
  color: #0f172a;
  margin-bottom: 1rem;
}

.contact-subtitle-index {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.contact-content-index {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .contact-content-index {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-wrapper-index {
  display: flex;
  flex-direction: column;
}

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

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

.contact-label-index {
  color: #0f172a;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.contact-input-index,
.contact-textarea-index {
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #0f172a;
  background: #ffffff;
  transition: all 0.3s ease;
}

.contact-input-index:focus,
.contact-textarea-index:focus {
  outline: none;
  border-color: #14b8a6;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

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

.contact-submit-index {
  background: #14b8a6;
  color: #0f172a;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', sans-serif;
  margin-top: 0.5rem;
}

.contact-submit-index:hover {
  background: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
}

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

.contact-info-index {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.contact-info-title-index {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
}

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

.contact-faq-item-index {
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid #14b8a6;
}

.contact-faq-q-index {
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
}

.contact-faq-a-index {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  margin: 0;
}

.contact-response-time-index {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  line-height: 1.7;
}

.contact-support-index {
  padding: 1.25rem;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(20, 184, 166, 0.1);
}

.contact-support-title-index {
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-support-text-index {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  margin: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #042f2e;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-top: 2px solid #14b8a6;
  z-index: 9999;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

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

.cookie-banner-text {
  color: #a7f3d0;
  margin: 0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.95rem);
  line-height: 1.5;
  flex: 1;
}

.cookie-banner-text a {
  color: #2dd4bf;
  text-decoration: underline;
}

.cookie-banner-text a:hover {
  color: #ffffff;
}

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

@media (min-width: 768px) {
  .cookie-banner-buttons {
    margin-top: 0;
  }
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.cookie-btn-accept {
  background: #14b8a6;
  color: #0f172a;
  border: none;
}

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

.cookie-btn-decline {
  background: transparent;
  color: #a7f3d0;
  border: 1px solid rgba(20, 184, 166, 0.3);
}

.cookie-btn-decline:hover {
  border-color: rgba(20, 184, 166, 0.6);
  color: #2dd4bf;
}

@media (min-width: 768px) {
  .hero-stats-index {
    gap: 3rem;
  }

  .process-section-index {
    padding: 5rem 0;
  }

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

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

  .features-section-index {
    padding: 6rem 0;
  }

  .about-section-index {
    padding: 6rem 0;
  }

  .courses-section-index {
    padding: 6rem 0;
  }

  .testimonials-section-index {
    padding: 6rem 0;
  }
}

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

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

.footer-content {
  display: block;
}

.footer-about {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
  border-bottom: 1px solid var(--color-bg-dark-secondary);
}

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

.footer-about-text {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.7;
  color: var(--color-text-dark-secondary);
  max-width: 500px;
}

.footer-navigation {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

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

.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.footer-nav-link {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

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

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

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

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

.footer-contact {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(1.5rem, 4vw, 2rem);
  background: rgba(20, 184, 166, 0.06);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-dark-secondary);
}

.footer-contact-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  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-body);
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  line-height: 1.6;
  color: var(--color-text-dark-secondary);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-contact-label {
  font-weight: 500;
  color: var(--color-text-dark-primary);
  font-size: clamp(0.75rem, 1.25vw, 0.875rem);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  opacity: 0.8;
}

.footer-contact-value {
  color: var(--color-text-dark-secondary);
  font-weight: 400;
}

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

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

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.footer-legal-link {
  font-family: var(--font-body);
  font-size: clamp(0.8125rem, 1.25vw, 0.875rem);
  color: var(--color-text-dark-muted);
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

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

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

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

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

.footer-copyright {
  padding-top: clamp(2rem, 5vw, 2.5rem);
  border-top: 1px solid var(--color-bg-dark-secondary);
  text-align: center;
}

.footer-copyright-text {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.25vw, 0.8125rem);
  color: var(--color-text-dark-muted);
  margin: 0;
  letter-spacing: 0.3px;
}

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2.5rem, 5vw, 3.5rem);
    grid-template-areas:
      "about about"
      "nav contact"
      "legal legal"
      "copyright copyright";
  }

  .footer-about {
    grid-area: about;
    margin-bottom: 0;
    padding-bottom: clamp(2rem, 4vw, 2.5rem);
  }

  .footer-navigation {
    grid-area: nav;
    margin-bottom: 0;
  }

  .footer-contact {
    grid-area: contact;
    margin-bottom: 0;
  }

  .footer-legal {
    grid-area: legal;
    margin-bottom: 0;
  }

  .footer-copyright {
    grid-area: copyright;
  }

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

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

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    grid-template-areas:
      "about nav contact legal"
      "copyright copyright copyright copyright";
    gap: clamp(2rem, 4vw, 3rem);
  }

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

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

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

  .footer-contact {
    background: transparent;
    border: none;
    padding: 0;
  }
}

@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-language-integration {
  width: 100%;
}

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

.hero-glow-dutch {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(80px);
}

.hero-shape-dutch-1 {
  position: absolute;
  top: 20%;
  left: -50px;
  width: 280px;
  height: 280px;
  background: rgba(45, 212, 191, 0.08);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  pointer-events: none;
  z-index: 1;
  filter: blur(40px);
}

.hero-shape-dutch-2 {
  position: absolute;
  bottom: -100px;
  right: 10%;
  width: 350px;
  height: 350px;
  background: rgba(20, 184, 166, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(60px);
}

.hero-accent-dutch {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 100px;
  height: 100px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(40px);
}

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

@media (min-width: 1024px) {
  .hero-content-dutch {
    flex-direction: row;
    align-items: center;
    gap: clamp(3rem, 6vw, 5rem);
  }
}

.hero-text-dutch {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.hero-title-dutch {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-dutch {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-secondary);
  font-weight: 500;
}

.hero-description-dutch {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-muted);
  line-height: 1.8;
}

.hero-cta-group-dutch {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

@media (min-width: 640px) {
  .hero-cta-group-dutch {
    flex-direction: row;
    align-items: center;
  }
}

.hero-visual-dutch {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.hero-image-dutch {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  max-width: 100%;
}

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

.stat-item-dutch {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: center;
}

.stat-number-dutch {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  font-family: var(--font-heading);
}

.stat-label-dutch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-muted);
  font-weight: 500;
}

.posts-section-dutch-integration {
  background: var(--color-bg-light-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.posts-tag-dutch {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.posts-title-dutch {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-md);
}

.posts-subtitle-dutch {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.card-dutch-integration {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-light-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

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

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

.card-title-dutch {
  font-size: clamp(1.125rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.3;
}

.card-description-dutch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-dutch {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin: var(--space-sm) 0;
}

.meta-badge-dutch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: rgba(20, 184, 166, 0.1);
  color: var(--color-primary);
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 500;
}

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

.card-link-dutch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  width: fit-content;
}

.card-link-dutch:hover {
  background: var(--color-primary-hover);
  transform: translateX(4px);
}

.benefits-section-dutch-integration {
  background: var(--color-bg-dark-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.benefits-shape-dutch-1 {
  position: absolute;
  top: -50px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  pointer-events: none;
  z-index: 1;
  filter: blur(60px);
}

.benefits-glow-dutch {
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(80px);
}

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

@media (min-width: 1024px) {
  .benefits-content-dutch {
    flex-direction: row;
    align-items: center;
    gap: clamp(3rem, 6vw, 5rem);
  }
}

.benefits-text-dutch {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.benefits-title-dutch {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
}

.benefits-intro-dutch {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
}

.benefits-list-dutch {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.benefit-item-dutch {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.benefit-number-dutch {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
  font-family: var(--font-heading);
  flex-shrink: 0;
  min-width: 70px;
}

.benefit-content-dutch {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.benefit-title-dutch {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.3rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
}

.benefit-text-dutch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-muted);
  line-height: 1.7;
}

.benefits-visual-dutch {
  flex: 1;
  min-height: 350px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.benefits-image-dutch {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.methods-section-dutch-integration {
  background: var(--color-bg-light-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.methods-accent-dutch {
  position: absolute;
  top: 50%;
  left: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(80px);
}

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

.methods-title-dutch {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-md);
}

.methods-subtitle-dutch {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
}

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

.method-card-dutch {
  flex: 1 1 280px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-card);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  text-align: center;
}

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

.method-icon-dutch {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.method-title-dutch {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
}

.method-text-dutch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

.quote-section-dutch-integration {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.quote-background-dutch {
  position: absolute;
  top: -50px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(80px);
}

.quote-glow-dutch {
  position: absolute;
  bottom: -100px;
  left: 10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(60px);
}

.featured-quote-dutch {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(20, 184, 166, 0.08);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.quote-text-dutch {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: var(--color-text-dark-primary);
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}

.quote-author-dutch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-secondary);
  font-style: normal;
  font-weight: 500;
}

.cta-section-dutch-integration {
  background: linear-gradient(135deg, var(--color-bg-dark-primary) 0%, var(--color-bg-dark-secondary) 100%);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-shape-dutch-1 {
  position: absolute;
  top: -100px;
  right: -50px;
  width: 350px;
  height: 350px;
  background: rgba(45, 212, 191, 0.1);
  border-radius: 50% 40% 60% 40% / 60% 50% 30% 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(60px);
}

.cta-glow-dutch {
  position: absolute;
  bottom: -100px;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(80px);
}

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

.cta-title-dutch {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
}

.cta-description-dutch {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-muted);
  max-width: 600px;
  margin: 0 auto;
}

.cta-buttons-dutch {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-md);
}

@media (min-width: 640px) {
  .cta-buttons-dutch {
    flex-direction: row;
  }
}

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

.btn-secondary:hover {
  background: var(--color-secondary);
  color: #0a0f1e;
}

@media (max-width: 767px) {
  .hero-section-dutch-integration {
    padding: 2.5rem 0;
  }

  .posts-grid-dutch {
    flex-direction: column;
    align-items: center;
  }

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

  .benefits-content-dutch {
    flex-direction: column;
  }

  .benefits-visual-dutch {
    min-height: 300px;
  }

  .cta-buttons-dutch {
    flex-direction: column;
  }

  .cta-buttons-dutch .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .hero-section-dutch-integration {
    padding: 4rem 0;
  }

  .posts-section-dutch-integration {
    padding: 5rem 0;
  }

  .benefits-section-dutch-integration {
    padding: 5rem 0;
  }

  .methods-section-dutch-integration {
    padding: 5rem 0;
  }
}

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

  .posts-section-dutch-integration {
    padding: 6rem 0;
  }

  .benefits-section-dutch-integration {
    padding: 6rem 0;
  }

  .methods-section-dutch-integration {
    padding: 6rem 0;
  }

  .card-dutch-integration {
    flex: 1 1 350px;
  }

  .method-card-dutch {
    flex: 1 1 300px;
  }
}

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

.main-nederlands-beginner-cursus {
  width: 100%;
  background: #ffffff;
}

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

.hero-section-nederlands-beginner-cursus {
  background: linear-gradient(135deg, #042f2e 0%, #064e4a 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-nederlands-beginner-cursus::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumbs-nederlands-beginner-cursus {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.9rem);
}

.breadcrumb-link-nederlands-beginner-cursus {
  color: #99f6e4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-nederlands-beginner-cursus:hover {
  color: #ffffff;
}

.breadcrumb-separator-nederlands-beginner-cursus {
  color: #64e4d9;
  margin: 0 0.25rem;
}

.breadcrumb-current-nederlands-beginner-cursus {
  color: #a7f3d0;
  font-weight: 500;
}

.hero-content-nederlands-beginner-cursus {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4rem);
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-content-nederlands-beginner-cursus {
    flex-direction: row;
    align-items: center;
  }
}

.hero-text-nederlands-beginner-cursus {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

.hero-subtitle-nederlands-beginner-cursus {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #99f6e4;
  font-weight: 500;
}

.hero-description-nederlands-beginner-cursus {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.8;
}

.hero-meta-nederlands-beginner-cursus {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.meta-badge-nederlands-beginner-cursus {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #99f6e4;
}

.meta-badge-nederlands-beginner-cursus i {
  color: #14b8a6;
  font-size: 0.875rem;
}

.hero-buttons-nederlands-beginner-cursus {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons-nederlands-beginner-cursus {
    flex-direction: row;
    align-items: center;
  }
}

.btn {
  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: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}

.btn-primary-Nederlands-beginner-cursus,
.btn-primary-cta-nederlands-beginner-cursus {
  background: #14b8a6;
  color: #ffffff;
}

.btn-primary-Nederlands-beginner-cursus:hover,
.btn-primary-cta-nederlands-beginner-cursus:hover {
  background: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
}

.btn-outline-nederlands-beginner-cursus {
  border-color: #14b8a6;
  color: #14b8a6;
  background: transparent;
}

.btn-outline-nederlands-beginner-cursus:hover {
  background: #14b8a6;
  color: #ffffff;
}

.btn-secondary-cta-nederlands-beginner-cursus {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-secondary-cta-nederlands-beginner-cursus:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-visual-nederlands-beginner-cursus {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.hero-image-nederlands-beginner-cursus {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  display: block;
}

.introduction-section-nederlands-beginner-cursus {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.introduction-content-nederlands-beginner-cursus {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4rem);
}

@media (min-width: 1024px) {
  .introduction-content-nederlands-beginner-cursus {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 6vw, 4rem);
  }
}

.introduction-text-nederlands-beginner-cursus {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.introduction-paragraph-nederlands-beginner-cursus {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.introduction-image-nederlands-beginner-cursus {
  flex: 1;
  min-height: 350px;
  border-radius: 12px;
  overflow: hidden;
}

.introduction-image-item-nederlands-beginner-cursus {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.greetings-section-nederlands-beginner-cursus {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

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

.section-tag-nederlands-beginner-cursus {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title-nederlands-beginner-cursus {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.section-subtitle-nederlands-beginner-cursus {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.greetings-content-nederlands-beginner-cursus {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4rem);
}

@media (min-width: 1024px) {
  .greetings-content-nederlands-beginner-cursus {
    flex-direction: row;
    align-items: center;
  }
}

.greetings-text-nederlands-beginner-cursus {
  flex: 1;
}

.greetings-paragraph-nederlands-beginner-cursus {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.phrases-list-nederlands-beginner-cursus {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.phrase-item-nederlands-beginner-cursus {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 8px;
  border-left: 4px solid #14b8a6;
}

.phrase-dutch-nederlands-beginner-cursus {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  font-weight: 600;
  color: #0f172a;
}

.phrase-english-nederlands-beginner-cursus {
  font-size: 0.85rem;
  color: #64748b;
  font-style: italic;
}

.greetings-image-nederlands-beginner-cursus {
  flex: 1;
  min-height: 350px;
  border-radius: 12px;
  overflow: hidden;
}

.greetings-image-item-nederlands-beginner-cursus {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.practical-section-nederlands-beginner-cursus {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.practical-content-nederlands-beginner-cursus {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4rem);
}

@media (min-width: 1024px) {
  .practical-content-nederlands-beginner-cursus {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 6vw, 4rem);
  }
}

.practical-image-nederlands-beginner-cursus {
  flex: 1;
  order: -1;
  min-height: 350px;
  border-radius: 12px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .practical-image-nederlands-beginner-cursus {
    order: 0;
  }
}

.practical-image-item-nederlands-beginner-cursus {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.practical-text-nederlands-beginner-cursus {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practical-paragraph-nederlands-beginner-cursus {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.situations-list-nederlands-beginner-cursus {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.situation-block-nederlands-beginner-cursus {
  padding: 1.25rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #14b8a6;
}

.situation-title-nederlands-beginner-cursus {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.situation-phrase-nederlands-beginner-cursus {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.numbers-section-nederlands-beginner-cursus {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.numbers-content-nederlands-beginner-cursus {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4rem);
}

@media (min-width: 1024px) {
  .numbers-content-nederlands-beginner-cursus {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 6vw, 4rem);
  }
}

.numbers-text-nederlands-beginner-cursus {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.numbers-paragraph-nederlands-beginner-cursus {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.featured-quote-nederlands-beginner-cursus {
  padding: 2rem 2.5rem;
  border-left: 4px solid #14b8a6;
  background: #ffffff;
  margin: 1.5rem 0;
  border-radius: 8px;
}

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

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

.numbers-image-nederlands-beginner-cursus {
  flex: 1;
  min-height: 350px;
  border-radius: 12px;
  overflow: hidden;
}

.numbers-image-item-nederlands-beginner-cursus {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.learning-path-nederlands-beginner-cursus {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.steps-container-nederlands-beginner-cursus {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-nederlands-beginner-cursus {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 10px;
}

.step-number-nederlands-beginner-cursus {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #14b8a6;
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

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

.step-title-nederlands-beginner-cursus {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.step-description-nederlands-beginner-cursus {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
}

.tips-section-nederlands-beginner-cursus {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

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

.tip-card-nederlands-beginner-cursus {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.tip-card-nederlands-beginner-cursus:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.tip-icon-nederlands-beginner-cursus {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 10px;
  color: #14b8a6;
  font-size: 1.5rem;
}

.tip-title-nederlands-beginner-cursus {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.tip-text-nederlands-beginner-cursus {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
}

.cta-section-nederlands-beginner-cursus {
  background: linear-gradient(135deg, #042f2e 0%, #064e4a 100%);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-section-nederlands-beginner-cursus::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content-nederlands-beginner-cursus {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title-nederlands-beginner-cursus {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
}

.cta-description-nederlands-beginner-cursus {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  max-width: 600px;
  margin: 0 auto;
}

.cta-buttons-nederlands-beginner-cursus {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons-nederlands-beginner-cursus {
    flex-direction: row;
  }
}

.disclaimer-section-nederlands-beginner-cursus {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.disclaimer-content-nederlands-beginner-cursus {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: #f8fafc;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-nederlands-beginner-cursus {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlands-beginner-cursus {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.8;
}

.related-section-nederlands-beginner-cursus {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

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

.related-subtitle-nederlands-beginner-cursus {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto clamp(2rem, 4vw, 4rem);
}

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

.related-card-nederlands-beginner-cursus {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.related-card-nederlands-beginner-cursus:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.related-card-image-nederlands-beginner-cursus {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-nederlands-beginner-cursus img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-nederlands-beginner-cursus {
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-nederlands-beginner-cursus {
  font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.related-card-text-nederlands-beginner-cursus {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-nederlands-beginner-cursus {
  color: #14b8a6;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.related-card-link-nederlands-beginner-cursus:hover {
  color: #0d9488;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-cards-nederlands-beginner-cursus {
    flex-direction: column;
  }

  .related-card-nederlands-beginner-cursus {
    flex: 1 1 100%;
    max-width: none;
  }

  .tips-grid-nederlands-beginner-cursus {
    flex-direction: column;
  }

  .tip-card-nederlands-beginner-cursus {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 clamp(1.5rem, 5vw, 2.5rem);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 clamp(2rem, 6vw, 3rem);
  }
}

.main-nederlands-professioneel-beroep {
  width: 100%;
  background: #ffffff;
}

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

section {
  width: 100%;
  overflow: hidden;
}

.hero-section-nederlands-professioneel-beroep {
  background: linear-gradient(135deg, #042f2e 0%, #064e4a 100%);
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-nederlands-professioneel-beroep::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content-nederlands-professioneel-beroep {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 8vw, 5rem);
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-content-nederlands-professioneel-beroep {
    flex-direction: row;
    align-items: center;
    gap: clamp(3rem, 10vw, 6rem);
  }
}

.breadcrumbs-nederlands-professioneel-beroep {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-nederlands-professioneel-beroep {
  color: #99f6e4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-nederlands-professioneel-beroep:hover {
  color: #ffffff;
}

.breadcrumb-separator-nederlands-professioneel-beroep {
  color: #64b5a6;
}

.breadcrumb-current-nederlands-professioneel-beroep {
  color: #ffffff;
  font-weight: 500;
}

.hero-text-block-nederlands-professioneel-beroep {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.hero-title-nederlands-professioneel-beroep {
  color: #ffffff;
  font-size: clamp(2.25rem, 6vw + 0.5rem, 4rem);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-nederlands-professioneel-beroep {
  color: #99f6e4;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 500;
}

.hero-description-nederlands-professioneel-beroep {
  color: #a7f3d0;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.hero-stats-nederlands-professioneel-beroep {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2rem) 0;
  border-top: 1px solid rgba(20, 184, 166, 0.2);
  border-bottom: 1px solid rgba(20, 184, 166, 0.2);
}

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

.stat-number-nederlands-professioneel-beroep {
  color: #14b8a6;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.stat-label-nederlands-professioneel-beroep {
  color: #99f6e4;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
}

.hero-cta-group-nederlands-professioneel-beroep {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .hero-cta-group-nederlands-professioneel-beroep {
    flex-direction: row;
    align-items: center;
  }
}

.btn-primary-nederlands-professioneel-beroep,
.btn-secondary-nederlands-professioneel-beroep,
.btn-outline-nederlands-professioneel-beroep,
.conclusion-btn-primary-nederlands-professioneel-beroep,
.conclusion-btn-secondary-nederlands-professioneel-beroep {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: inherit;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary-nederlands-professioneel-beroep {
  background: #14b8a6;
  color: #0f172a;
}

.btn-primary-nederlands-professioneel-beroep:hover {
  background: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
}

.btn-outline-nederlands-professioneel-beroep {
  background: transparent;
  border-color: #14b8a6;
  color: #14b8a6;
}

.btn-outline-nederlands-professioneel-beroep:hover {
  background: #14b8a6;
  color: #0f172a;
}

.hero-visual-block-nederlands-professioneel-beroep {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.hero-image-nederlands-professioneel-beroep {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.intro-section-nederlands-professioneel-beroep {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.intro-content-wrapper-nederlands-professioneel-beroep {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 1024px) {
  .intro-content-wrapper-nederlands-professioneel-beroep {
    flex-direction: row;
    align-items: center;
  }
}

.intro-text-block-nederlands-professioneel-beroep {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.intro-title-nederlands-professioneel-beroep {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
}

.intro-text-nederlands-professioneel-beroep {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.intro-visual-block-nederlands-professioneel-beroep {
  flex: 1;
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.intro-image-nederlands-professioneel-beroep {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-section-one-nederlands-professioneel-beroep {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.content-wrapper-one-nederlands-professioneel-beroep {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 1024px) {
  .content-wrapper-one-nederlands-professioneel-beroep {
    flex-direction: row;
    align-items: center;
    gap: clamp(3rem, 6vw, 5rem);
  }
}

.content-text-one-nederlands-professioneel-beroep {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-title-one-nederlands-professioneel-beroep {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
}

.content-text-one-nederlands-professioneel-beroep {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.skills-list-nederlands-professioneel-beroep {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skill-item-nederlands-professioneel-beroep {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: #475569;
}

.skill-icon-nederlands-professioneel-beroep {
  flex-shrink: 0;
  color: #14b8a6;
  font-weight: 800;
  font-size: 1.25rem;
}

.skill-text-nederlands-professioneel-beroep {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.content-image-one-nederlands-professioneel-beroep {
  flex: 1;
  min-height: 350px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.content-image-one-img-nederlands-professioneel-beroep {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.learning-path-section-nederlands-professioneel-beroep {
  background: linear-gradient(135deg, #064e4a 0%, #0f766e 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.learning-path-section-nederlands-professioneel-beroep::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.learning-path-header-nederlands-professioneel-beroep {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}

.learning-path-title-nederlands-professioneel-beroep {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.learning-path-subtitle-nederlands-professioneel-beroep {
  color: #99f6e4;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
}

.steps-container-nederlands-professioneel-beroep {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 1;
}

.step-item-nederlands-professioneel-beroep {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(20, 184, 166, 0.1);
  transition: all 0.3s ease;
}

.step-item-nederlands-professioneel-beroep:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(20, 184, 166, 0.3);
}

.step-number-nederlands-professioneel-beroep {
  flex-shrink: 0;
  color: #14b8a6;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  min-width: 80px;
}

.step-content-nederlands-professioneel-beroep {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.step-title-nederlands-professioneel-beroep {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
}

.step-text-nederlands-professioneel-beroep {
  color: #a7f3d0;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.features-section-nederlands-professioneel-beroep {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.features-header-nederlands-professioneel-beroep {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.features-title-nederlands-professioneel-beroep {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.features-subtitle-nederlands-professioneel-beroep {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
}

.features-grid-nederlands-professioneel-beroep {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.feature-card-nederlands-professioneel-beroep {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-card-nederlands-professioneel-beroep:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.feature-icon-nederlands-professioneel-beroep {
  font-size: 2.5rem;
}

.feature-title-nederlands-professioneel-beroep {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
}

.feature-text-nederlands-professioneel-beroep {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.practical-section-nederlands-professioneel-beroep {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.practical-wrapper-nederlands-professioneel-beroep {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 1024px) {
  .practical-wrapper-nederlands-professioneel-beroep {
    flex-direction: row;
    align-items: center;
    gap: clamp(3rem, 6vw, 5rem);
  }
}

.practical-visual-block-nederlands-professioneel-beroep {
  flex: 1;
  min-height: 350px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.practical-image-nederlands-professioneel-beroep {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.practical-text-block-Nederlands-professioneel-beroep {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practical-title-nederlands-professioneel-beroep {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
}

.practical-text-nederlands-professioneel-beroep {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.practical-quote-nederlands-professioneel-beroep {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #14b8a6;
  background: #f1f5f9;
  border-radius: 8px;
}

.practical-quote-text-nederlands-professioneel-beroep {
  color: #0f172a;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

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

.conclusion-section-nederlands-professioneel-beroep {
  background: linear-gradient(135deg, #042f2e 0%, #064e4a 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-section-nederlands-professioneel-beroep::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.conclusion-content-nederlands-professioneel-beroep {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-nederlands-professioneel-beroep {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
}

.conclusion-text-nederlands-professioneel-beroep {
  color: #a7f3d0;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.conclusion-text-secondary-nederlands-professioneel-beroep {
  color: #99f6e4;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.conclusion-cta-group-nederlands-professioneel-beroep {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .conclusion-cta-group-nederlands-professioneel-beroep {
    flex-direction: row;
  }
}

.conclusion-btn-primary-nederlands-professioneel-beroep {
  background: #14b8a6;
  color: #0f172a;
}

.conclusion-btn-primary-nederlands-professioneel-beroep:hover {
  background: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
}

.conclusion-btn-secondary-nederlands-professioneel-beroep {
  background: transparent;
  border-color: #14b8a6;
  color: #14b8a6;
}

.conclusion-btn-secondary-nederlands-professioneel-beroep:hover {
  background: #14b8a6;
  color: #0f172a;
}

.related-section-nederlands-professioneel-beroep {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.related-header-nederlands-professioneel-beroep {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.related-title-nederlands-professioneel-beroep {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.related-subtitle-nederlands-professioneel-beroep {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
}

.related-cards-grid-nederlands-professioneel-beroep {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-nederlands-professioneel-beroep {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.related-card-nederlands-professioneel-beroep:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.related-card-image-nederlands-professioneel-beroep {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-nederlands-professioneel-beroep img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-title-nederlands-professioneel-beroep {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  padding: 0 1.5rem;
  padding-top: 1.5rem;
}

.related-card-text-nederlands-professioneel-beroep {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  padding: 0 1.5rem;
}

.related-card-link-nederlands-professioneel-beroep {
  color: #14b8a6;
  text-decoration: none;
  font-weight: 600;
  padding: 0 1.5rem 1.5rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
}

.related-card-link-nederlands-professioneel-beroep:hover {
  color: #0d9488;
  text-decoration: underline;
}

.disclaimer-section-nederlands-professioneel-beroep {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.disclaimer-content-nederlands-professioneel-beroep {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f1f5f9;
  border-left: 4px solid #64748b;
  border-radius: 8px;
}

.disclaimer-title-nederlands-professioneel-beroep {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlands-professioneel-beroep {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .hero-cta-group-nederlands-professioneel-beroep,
  .conclusion-cta-group-nederlands-professioneel-beroep {
    flex-direction: column;
  }

  .related-card-nederlands-professioneel-beroep {
    flex: 1 1 100%;
    max-width: none;
  }

  .feature-card-nederlands-professioneel-beroep {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .hero-section-nederlands-professioneel-beroep {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .intro-section-nederlands-professioneel-beroep {
    padding: clamp(5rem, 8vw, 7rem) 0;
  }
}

@media (min-width: 1440px) {
  section {
    scroll-behavior: smooth;
  }
}

.main-nederlands-cultuur-conversatie {
  width: 100%;
}

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

@media (min-width: 768px) {
  .container {
    padding: 0 clamp(1.5rem, 5vw, 3rem);
  }
}

.hero-section-nederlands-cultuur-conversatie {
  background: #042f2e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-nederlands-cultuur-conversatie::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-section-nederlands-cultuur-conversatie::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.breadcrumbs-nederlands-cultuur-conversatie {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.875rem);
  position: relative;
  z-index: 1;
}

.breadcrumb-link-nederlands-cultuur-conversatie {
  color: #99f6e4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-nederlands-cultuur-conversatie:hover {
  color: #ffffff;
}

.breadcrumb-separator-nederlands-cultuur-conversatie {
  color: #a7f3d0;
}

.breadcrumb-current-nederlands-cultuur-conversatie {
  color: #ffffff;
  font-weight: 600;
}

.hero-content-nederlands-cultuur-conversatie {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4rem);
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .hero-content-nederlands-cultuur-conversatie {
    flex-direction: row;
    align-items: center;
    gap: clamp(2.5rem, 6vw, 5rem);
  }
}

.hero-text-nederlands-cultuur-conversatie {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-nederlands-cultuur-conversatie {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-nederlands-cultuur-conversatie {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #2dd4bf;
  font-weight: 600;
  line-height: 1.3;
}

.hero-description-nederlands-cultuur-conversatie {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.8;
  max-width: 550px;
}

.hero-cta-group-nederlands-cultuur-conversatie {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

@media (min-width: 640px) {
  .hero-cta-group-nederlands-cultuur-conversatie {
    flex-direction: row;
    gap: 1rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
}

.btn-primary-nederlands-cultuur-conversatie {
  background: #14b8a6;
  color: #0f172a;
}

.btn-primary-nederlands-cultuur-conversatie:hover {
  background: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
}

.btn-outline-nederlands-cultuur-conversatie {
  border: 2px solid #14b8a6;
  color: #14b8a6;
  background: transparent;
}

.btn-outline-nederlands-cultuur-conversatie:hover {
  background: #14b8a6;
  color: #0f172a;
}

.hero-visual-nederlands-cultuur-conversatie {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.hero-image-nederlands-cultuur-conversatie {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.hero-stats-nederlands-cultuur-conversatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
  justify-content: center;
  position: relative;
  z-index: 1;
  padding-top: 2rem;
  border-top: 1px solid rgba(20, 184, 166, 0.2);
}

.stat-item-nederlands-cultuur-conversatie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.stat-number-nederlands-cultuur-conversatie {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #2dd4bf;
  line-height: 1;
}

.stat-label-nederlands-cultuur-conversatie {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #a7f3d0;
  font-weight: 500;
}

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

.intro-content-nederlands-cultuur-conversatie {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4rem);
}

@media (min-width: 1024px) {
  .intro-content-nederlands-cultuur-conversatie {
    flex-direction: row;
    align-items: center;
    gap: clamp(3rem, 6vw, 5rem);
  }
}

.intro-text-nederlands-cultuur-conversatie {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.intro-title-nederlands-cultuur-conversatie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.intro-description-nederlands-cultuur-conversatie {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.intro-visual-nederlands-cultuur-conversatie {
  flex: 1;
  min-height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.intro-image-nederlands-cultuur-conversatie {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-section-1-nederlands-cultuur-conversatie {
  background: #064e4a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.content-section-1-nederlands-cultuur-conversatie::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.content-wrapper-1-nederlands-cultuur-conversatie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 1023px) {
  .content-wrapper-1-nederlands-cultuur-conversatie {
    flex-direction: column;
  }
}

.content-text-1-nederlands-cultuur-conversatie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 1023px) {
  .content-text-1-nederlands-cultuur-conversatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-title-1-nederlands-cultuur-conversatie {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.content-para-1-nederlands-cultuur-conversatie {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.8;
}

.content-highlight-1-nederlands-cultuur-conversatie {
  background: rgba(20, 184, 166, 0.15);
  border-left: 4px solid #14b8a6;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: 0.5rem;
}

.highlight-text-1-nederlands-cultuur-conversatie {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: #99f6e4;
  line-height: 1.6;
}

.content-image-1-nederlands-cultuur-conversatie {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 350px;
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .content-image-1-nederlands-cultuur-conversatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-img-1-nederlands-cultuur-conversatie {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-section-2-nederlands-cultuur-conversatie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

@media (max-width: 1023px) {
  .content-wrapper-2-nederlands-cultuur-conversatie {
    flex-direction: column;
  }
}

.content-image-2-nederlands-cultuur-conversatie {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 350px;
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .content-image-2-nederlands-cultuur-conversatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-img-2-nederlands-cultuur-conversatie {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-text-2-nederlands-cultuur-conversatie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 1023px) {
  .content-text-2-nederlands-cultuur-conversatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-title-2-nederlands-cultuur-conversatie {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.content-para-2-nederlands-cultuur-conversatie {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.content-list-2-nederlands-cultuur-conversatie {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.list-item-2-nederlands-cultuur-conversatie {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: #334155;
  line-height: 1.6;
}

.list-item-2-nederlands-cultuur-conversatie::before {
  content: '';
  color: #14b8a6;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.content-section-3-nederlands-cultuur-conversatie {
  background: #0f766e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.content-section-3-nederlands-cultuur-conversatie::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.content-wrapper-3-nederlands-cultuur-conversatie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 1023px) {
  .content-wrapper-3-nederlands-cultuur-conversatie {
    flex-direction: column;
  }
}

.content-text-3-nederlands-cultuur-conversatie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 1023px) {
  .content-text-3-nederlands-cultuur-conversatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-title-3-nederlands-cultuur-conversatie {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.content-para-3-nederlands-cultuur-conversatie {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.8;
}

.content-image-3-nederlands-cultuur-conversatie {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 350px;
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .content-image-3-nederlands-cultuur-conversatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-img-3-nederlands-cultuur-conversatie {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.conclusion-title-nederlands-cultuur-conversatie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-nederlands-cultuur-conversatie {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  text-align: center;
}

.conclusion-quote-nederlands-cultuur-conversatie {
  background: #f1f5f9;
  border-left: 4px solid #14b8a6;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin: 1rem 0;
  border-radius: 8px;
  font-style: italic;
}

.quote-text-nederlands-cultuur-conversatie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #0f172a;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.quote-author-nederlands-cultuur-conversatie {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #64748b;
  font-style: normal;
}

.conclusion-cta-nederlands-cultuur-conversatie {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .conclusion-cta-nederlands-cultuur-conversatie {
    flex-direction: row;
  }
}

.btn-primary-cta-nederlands-cultuur-conversatie {
  background: #14b8a6;
  color: #0f172a;
}

.btn-primary-cta-nederlands-cultuur-conversatie:hover {
  background: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
}

.btn-secondary-cta-nederlands-cultuur-conversatie {
  border: 2px solid #14b8a6;
  color: #14b8a6;
  background: transparent;
}

.btn-secondary-cta-nederlands-cultuur-conversatie:hover {
  background: #14b8a6;
  color: #0f172a;
}

.disclaimer-section-nederlands-cultuur-conversatie {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  border-top: 2px solid #e2e8f0;
  overflow: hidden;
}

.disclaimer-content-nederlands-cultuur-conversatie {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-title-nederlands-cultuur-conversatie {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: #0f172a;
}

.disclaimer-text-nederlands-cultuur-conversatie {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #64748b;
  line-height: 1.8;
}

.related-section-nederlands-cultuur-conversatie {
  background: #042f2e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-section-nederlands-cultuur-conversatie::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.related-header-nederlands-cultuur-conversatie {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  z-index: 1;
}

.related-title-nederlands-cultuur-conversatie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.related-subtitle-nederlands-cultuur-conversatie {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
}

.related-cards-nederlands-cultuur-conversatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 1;
}

.related-card-nederlands-cultuur-conversatie {
  flex: 1 1 300px;
  max-width: 400px;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-nederlands-cultuur-conversatie:hover {
  background: rgba(20, 184, 166, 0.2);
  border-color: rgba(20, 184, 166, 0.6);
  transform: translateY(-4px);
}

.related-card-content-nederlands-cultuur-conversatie {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-nederlands-cultuur-conversatie {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.related-card-text-nederlands-cultuur-conversatie {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: #a7f3d0;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-nederlands-cultuur-conversatie {
  display: inline-block;
  color: #2dd4bf;
  font-weight: 600;
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}

.related-card-nederlands-cultuur-conversatie:hover .related-card-link-nederlands-cultuur-conversatie {
  color: #ffffff;
}

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

  .content-wrapper-1-nederlands-cultuur-conversatie,
  .content-wrapper-2-nederlands-cultuur-conversatie,
  .content-wrapper-3-nederlands-cultuur-conversatie {
    flex-direction: column;
  }

  .content-text-1-nederlands-cultuur-conversatie,
  .content-text-2-nederlands-cultuur-conversatie,
  .content-text-3-nederlands-cultuur-conversatie,
  .content-image-1-nederlands-cultuur-conversatie,
  .content-image-2-nederlands-cultuur-conversatie,
  .content-image-3-nederlands-cultuur-conversatie {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-content-nederlands-cultuur-conversatie {
    flex-direction: column;
  }

  .intro-visual-nederlands-cultuur-conversatie {
    min-height: 300px;
  }

  .hero-content-nederlands-cultuur-conversatie {
    flex-direction: column;
  }

  .hero-visual-nederlands-cultuur-conversatie {
    min-height: 250px;
  }
}

.main-nederlands-examen-voorbereiding {
  width: 100%;
}

.hero-section-nederlands-examen-voorbereiding {
  background: #042f2e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-nederlands-examen-voorbereiding::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-content-nederlands-examen-voorbereiding {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-content-nederlands-examen-voorbereiding {
    flex-direction: row;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }
}

.hero-text-block-nederlands-examen-voorbereiding {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.hero-title-nederlands-examen-voorbereiding {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-nederlands-examen-voorbereiding {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #2dd4bf;
  font-weight: 600;
}

.hero-description-nederlands-examen-voorbereiding {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.8;
}

.hero-stats-nederlands-examen-voorbereiding {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 1rem;
}

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

.stat-number-nederlands-examen-voorbereiding {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #14b8a6;
  line-height: 1;
}

.stat-label-nederlands-examen-voorbereiding {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #99f6e4;
  font-weight: 500;
}

.hero-cta-group-nederlands-examen-voorbereiding {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .hero-cta-group-nederlands-examen-voorbereiding {
    flex-direction: row;
    align-items: center;
  }
}

.btn-primary-nederlands-examen-voorbereiding {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #14b8a6;
  color: #0f172a;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary-netherlands-examen-voorbereiding:hover {
  background: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
}

.btn-outline-nederlands-examen-voorbereiding {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: transparent;
  color: #2dd4bf;
  border: 2px solid #2dd4bf;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline-nederlands-examen-voorbereiding:hover {
  background: #2dd4bf;
  color: #0f172a;
}

.hero-visual-block-nederlands-examen-voorbereiding {
  flex: 1;
  min-height: 300px;
}

.hero-image-nederlands-examen-voorbereiding {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  display: block;
}

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

.breadcrumbs-nederlands-examen-voorbereiding a {
  color: #2dd4bf;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-nederlands-examen-voorbereiding a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.breadcrumb-separator-nederlands-examen-voorbereiding {
  color: #64748b;
  margin: 0 0.25rem;
}

.breadcrumb-current-nederlands-examen-voorbereiding {
  color: #a7f3d0;
  font-weight: 500;
}

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

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

@media (min-width: 1024px) {
  .intro-content-nederlands-examen-voorbereiding {
    flex-direction: row;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }
}

.intro-text-block-nederlands-examen-voorbereiding {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.intro-title-nederlands-examen-voorbereiding {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.intro-description-nederlands-examen-voorbereiding {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.intro-secondary-text-nederlands-examen-voorbereiding {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
}

.intro-visual-block-nederlands-examen-voorbereiding {
  flex: 1;
  min-height: 280px;
}

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

.content-section-one-nederlands-examen-voorbereiding {
  background: #064e4a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.content-section-one-nederlands-examen-voorbereiding::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -50px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.content-wrapper-one-nederlands-examen-voorbereiding {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .content-wrapper-one-nederlands-examen-voorbereiding {
    flex-direction: row;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }
}

.content-text-block-one-nederlands-examen-voorbereiding {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.content-title-one-nederlands-examen-voorbereiding {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.content-text-one-nederlands-examen-voorbereiding {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.8;
}

.content-steps-one-nederlands-examen-voorbereiding {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  margin-top: 1rem;
}

.step-item-one-nederlands-examen-voorbereiding {
  display: flex;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  align-items: flex-start;
}

.step-number-one-nederlands-examen-voorbereiding {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #14b8a6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-one-nederlands-examen-voorbereiding {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.step-title-one-nederlands-examen-voorbereiding {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: #ffffff;
}

.step-text-one-nederlands-examen-voorbereiding {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: #99f6e4;
  line-height: 1.7;
}

.content-image-block-one-nederlands-examen-voorbereiding {
  flex: 1;
  min-height: 300px;
}

.content-image-one-nederlands-examen-voorbereiding {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: block;
}

.content-section-two-nederlands-examen-voorbereiding {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-two-nederlands-examen-voorbereiding {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 1024px) {
  .content-wrapper-two-nederlands-examen-voorbereiding {
    flex-direction: row;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }
}

.content-image-block-two-nederlands-examen-voorbereiding {
  flex: 1;
  min-height: 300px;
  order: -1;
}

@media (min-width: 1024px) {
  .content-image-block-two-nederlands-examen-voorbereiding {
    order: 1;
  }
}

.content-image-two-nederlands-examen-voorbereiding {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.content-text-block-two-nederlands-examen-voorbereiding {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.content-title-two-nederlands-examen-voorbereiding {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.content-text-two-nederlands-examen-voorbereiding {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

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

.feature-item-two-nederlands-examen-voorbereiding {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon-two-nederlands-examen-voorbereiding {
  color: #14b8a6;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-text-two-nederlands-examen-voorbereiding {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #334155;
  line-height: 1.6;
}

.benefits-section-nederlands-examen-voorbereiding {
  background: #0f766e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.benefits-section-nederlands-examen-voorbereiding::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.benefits-header-nederlands-examen-voorbereiding {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

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

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

.benefits-grid-nederlands-examen-voorbereiding {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 1;
}

.benefit-card-nederlands-examen-voorbereiding {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-card-nederlands-examen-voorbereiding:hover {
  background: rgba(20, 184, 166, 0.18);
  border-color: rgba(20, 184, 166, 0.4);
  transform: translateY(-4px);
}

.benefit-icon-nederlands-examen-voorbereiding {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.2);
  border-radius: 10px;
  color: #2dd4bf;
  font-size: 1.75rem;
}

.benefit-card-title-nederlands-examen-voorbereiding {
  font-size: clamp(1.125rem, 2vw, 1.3rem);
  font-weight: 600;
  color: #ffffff;
}

.benefit-card-text-nederlands-examen-voorbereiding {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.7;
}

.quote-section-nederlands-examen-voorbereiding {
  background: #042f2e;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.featured-quote-nederlands-examen-voorbereiding {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 5px solid #14b8a6;
  background: rgba(20, 184, 166, 0.08);
  margin: 0;
  border-radius: 4px;
}

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

.quote-author-nederlands-examen-voorbereiding {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #2dd4bf;
  font-style: normal;
  font-weight: 500;
}

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

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

@media (min-width: 1024px) {
  .conclusion-content-nederlands-examen-voorbereiding {
    flex-direction: row;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }
}

.conclusion-text-block-nederlands-examen-voorbereiding {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-title-nederlands-examen-voorbereiding {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.conclusion-description-nederlands-examen-voorbereiding {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

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

.conclusion-cta-group-nederlands-examen-voorbereiding {
  margin-top: 1rem;
}

.btn-primary-conclusion-nederlands-examen-voorbereiding {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #14b8a6;
  color: #0f172a;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary-conclusion-nederlands-examen-voorbereiding:hover {
  background: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
}

.conclusion-visual-block-nederlands-examen-voorbereiding {
  flex: 1;
  min-height: 300px;
}

.conclusion-image-nederlands-examen-voorbereiding {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.disclaimer-section-nederlands-examen-voorbereiding {
  background: #f1f5f9;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.disclaimer-content-nederlands-examen-voorbereiding {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #14b8a6;
  border-radius: 6px;
}

.disclaimer-title-nederlands-examen-voorbereiding {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlands-examen-voorbereiding {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.8;
}

.related-section-nederlands-examen-voorbereiding {
  background: #042f2e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-section-nederlands-examen-voorbereiding::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.related-header-nederlands-examen-voorbereiding {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

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

.related-subtitle-nederlands-examen-voorbereiding {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #99f6e4;
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-grid-nederlands-examen-voorbereiding {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 1;
}

.related-card-link-nederlands-examen-voorbereiding {
  flex: 1 1 300px;
  max-width: 400px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.related-card-link-nederlands-examen-voorbereiding:hover {
  transform: translateY(-4px);
}

.related-card-nederlands-examen-voorbereiding {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.related-card-link-nederlands-examen-voorbereiding:hover .related-card-nederlands-examen-voorbereiding {
  background: rgba(20, 184, 166, 0.16);
  border-color: rgba(20, 184, 166, 0.4);
}

.related-card-image-nederlands-examen-voorbereiding {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.related-card-content-nederlands-examen-voorbereiding {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-nederlands-examen-voorbereiding {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.related-card-text-nederlands-examen-voorbereiding {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-section-nederlands-examen-voorbereiding {
    padding: 5rem 0;
  }

  .intro-section-nederlands-examen-voorbereiding {
    padding: 5rem 0;
  }

  .content-section-one-nederlands-examen-voorbereiding {
    padding: 5rem 0;
  }

  .content-section-two-nederlands-examen-voorbereiding {
    padding: 5rem 0;
  }

  .benefits-section-nederlands-examen-voorbereiding {
    padding: 5rem 0;
  }

  .conclusion-section-nederlands-examen-voorbereiding {
    padding: 5rem 0;
  }

  .related-section-nederlands-examen-voorbereiding {
    padding: 5rem 0;
  }
}

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

  .related-card-link-nederlands-examen-voorbereiding {
    flex: 1 1 100%;
    max-width: none;
  }
}

.main-nederlands-persoonlijke-mentor {
  width: 100%;
  overflow: hidden;
}

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

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

.breadcrumb-link-nederlands-persoonlijke-mentor {
  color: #99f6e4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-nederlands-persoonlijke-mentor:hover {
  color: #2dd4bf;
  text-decoration: underline;
}

.breadcrumb-separator-nederlands-persoonlijke-mentor {
  color: #a7f3d0;
  margin: 0 0.25rem;
}

.breadcrumb-current-nederlands-persoonlijke-mentor {
  color: #a7f3d0;
}

.hero-section-nederlands-persoonlijke-mentor {
  background: #042f2e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-nederlands-persoonlijke-mentor::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

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

@media (min-width: 1024px) {
  .hero-content-nederlands-persoonlijke-mentor {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 6vw, 4rem);
  }
}

.hero-text-nederlands-persoonlijke-mentor {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-nederlands-persoonlijke-mentor {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-nederlands-persoonlijke-mentor {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #99f6e4;
  font-weight: 500;
}

.hero-description-nederlands-persoonlijke-mentor {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.8;
  max-width: 550px;
}

.hero-stats-nederlands-persoonlijke-mentor {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin: 1rem 0;
}

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

.stat-number-nederlands-persoonlijke-mentor {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #14b8a6;
  line-height: 1;
}

.stat-label-nederlands-persoonlijke-mentor {
  font-size: 0.875rem;
  color: #99f6e4;
  font-weight: 500;
}

.hero-cta-nederlands-persoonlijke-mentor {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .hero-cta-nederlands-persoonlijke-mentor {
    flex-direction: row;
    align-items: center;
  }
}

.btn-primary-nederlands-persoonlijke-mentor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #14b8a6;
  color: #042f2e;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary-nederlands-persoonlijke-mentor:hover {
  background: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(20, 184, 166, 0.3);
}

.btn-outline-nederlands-persoonlijke-mentor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: transparent;
  color: #99f6e4;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  border: 2px solid #99f6e4;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: inherit;
}

.btn-outline-nederlands-persoonlijke-mentor:hover {
  background: #99f6e4;
  color: #042f2e;
}

.hero-image-nederlands-persoonlijke-mentor {
  flex: 1;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
}

.hero-image-nederlands-persoonlijke-mentor img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

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

.intro-content-nederlands-persoonlijke-mentor {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .intro-content-nederlands-persoonlijke-mentor {
    flex-direction: row;
    align-items: center;
  }
}

.intro-text-nederlands-persoonlijke-mentor {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.intro-title-nederlands-persoonlijke-mentor {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.intro-description-nederlands-persoonlijke-mentor,
.intro-description-netherlands-persoonlijke-mentor {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.intro-image-nederlands-persoonlijke-mentor {
  flex: 1;
  min-height: 300px;
  border-radius: 12px;
  overflow: hidden;
}

.intro-image-nederlands-persoonlijke-mentor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.features-header-nederlands-persoonlijke-mentor {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.features-tag-nederlands-persoonlijke-mentor {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.features-title-nederlands-persoonlijke-mentor {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.features-subtitle-nederlands-persoonlijke-mentor {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid-nederlands-persoonlijke-mentor {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.feature-card-nederlands-persoonlijke-mentor {
  flex: 1 1 300px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.feature-card-nederlands-persoonlijke-mentor:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-color: #14b8a6;
}

.feature-icon-nederlands-persoonlijke-mentor {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
  border-radius: 10px;
  font-size: 1.5rem;
}

.feature-title-nederlands-persoonlijke-mentor {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

.feature-text-nederlands-persoonlijke-mentor {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

.methodology-section-nederlands-persoonlijke-mentor {
  background: #064e4a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.methodology-section-nederlands-persoonlijke-mentor::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.methodology-header-nederlands-persoonlijke-mentor {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
  position: relative;
  z-index: 1;
}

.methodology-tag-nederlands-persoonlijke-mentor {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(45, 212, 191, 0.2);
  color: #99f6e4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.methodology-title-nederlands-persoonlijke-mentor {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.methodology-steps-nederlands-persoonlijke-mentor {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.methodology-step-nederlands-persoonlijke-mentor {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.methodology-number-nederlands-persoonlijke-mentor {
  flex-shrink: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #14b8a6;
  line-height: 1;
  min-width: 60px;
}

.methodology-content-nederlands-persoonlijke-mentor {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.methodology-step-title-nederlands-persoonlijke-mentor {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.methodology-step-text-nederlands-persoonlijke-mentor {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .methodology-step-nederlands-persoonlijke-mentor {
    gap: 1rem;
  }
  
  .methodology-number-nederlands-persoonlijke-mentor {
    min-width: 50px;
  }
}

.benefits-section-nederlands-persoonlijke-mentor {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.benefits-content-nederlands-persoonlijke-mentor {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .benefits-content-nederlands-persoonlijke-mentor {
    flex-direction: row;
    align-items: flex-start;
  }
}

.benefits-text-nederlands-persoonlijke-mentor {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.benefits-title-nederlands-persoonlijke-mentor {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.featured-quote-nederlands-persoonlijke-mentor {
  padding: 2rem 2.5rem;
  border-left: 4px solid #14b8a6;
  background: #ffffff;
  margin: 1rem 0;
  border-radius: 4px;
}

.quote-text-nederlands-persoonlijke-mentor {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-style: italic;
}

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

.benefits-description-nederlands-persoonlijke-mentor {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.benefits-list-nederlands-persoonlijke-mentor {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefits-item-nederlands-persoonlijke-mentor {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
}

.benefits-icon-nederlands-persoonlijke-mentor {
  color: #14b8a6;
  font-weight: 700;
  flex-shrink: 0;
}

.benefits-text-item-nederlands-persoonlijke-mentor {
  color: #334155;
  line-height: 1.6;
}

.benefits-image-nederlands-persoonlijke-mentor {
  flex: 1;
  min-height: 300px;
  border-radius: 12px;
  overflow: hidden;
}

.benefits-image-nederlands-persoonlijke-mentor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.specializations-header-nederlands-persoonlijke-mentor {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.specializations-tag-nederlands-persoonlijke-mentor {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.specializations-title-nederlands-persoonlijke-mentor {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.specializations-subtitle-nederlands-persoonlijke-mentor {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.specializations-grid-nederlands-persoonlijke-mentor {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.specialization-card-nederlands-persoonlijke-mentor {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
}

.specialization-card-nederlands-persoonlijke-mentor:hover {
  transform: translateY(-4px);
  border-color: #14b8a6;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.specialization-number-nederlands-persoonlijke-mentor {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #14b8a6;
  line-height: 1;
}

.specialization-name-nederlands-persoonlijke-mentor {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

.specialization-description-nederlands-persoonlijke-mentor {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.testimonial-section-nederlands-persoonlijke-mentor {
  background: #042f2e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.testimonial-header-nederlands-persoonlijke-mentor {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.testimonial-tag-nederlands-persoonlijke-mentor {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(45, 212, 191, 0.2);
  color: #99f6e4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.testimonial-title-nederlands-persoonlijke-mentor {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.testimonial-grid-nederlands-persoonlijke-mentor {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.testimonial-card-nederlands-persoonlijke-mentor {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(20, 184, 166, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(20, 184, 166, 0.2);
  transition: all 0.3s ease;
}

.testimonial-card-nederlands-persoonlijke-mentor:hover {
  border-color: rgba(20, 184, 166, 0.5);
  background: rgba(20, 184, 166, 0.15);
}

.testimonial-stars-nederlands-persoonlijke-mentor {
  display: flex;
  gap: 0.25rem;
  color: #f59e0b;
  font-size: 0.9rem;
}

.testimonial-quote-nederlands-persoonlijke-mentor {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author-nederlands-persoonlijke-mentor {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-name-nederlands-persoonlijke-mentor {
  font-weight: 600;
  color: #ffffff;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
}

.testimonial-role-nederlands-persoonlijke-mentor {
  font-size: 0.875rem;
  color: #99f6e4;
}

.cta-section-nederlands-persoonlijke-mentor {
  background: linear-gradient(135deg, #042f2e 0%, #064e4a 100%);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-section-nederlands-persoonlijke-mentor::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.cta-content-nederlands-persoonlijke-mentor {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title-nederlands-persoonlijke-mentor {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.cta-description-nederlands-persoonlijke-mentor {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.cta-buttons-nederlands-persoonlijke-mentor {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons-nederlands-persoonlijke-mentor {
    flex-direction: row;
  }
}

.btn-primary-cta-nederlands-persoonlijke-mentor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #14b8a6;
  color: #042f2e;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary-cta-nederlands-persoonlijke-mentor:hover {
  background: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(20, 184, 166, 0.4);
}

.btn-outline-cta-nederlands-persoonlijke-mentor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: transparent;
  color: #99f6e4;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  border: 2px solid #99f6e4;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: inherit;
}

.btn-outline-cta-nederlands-persoonlijke-mentor:hover {
  background: #99f6e4;
  color: #042f2e;
}

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

.related-title-nederlands-persoonlijke-mentor {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
  line-height: 1.2;
}

.related-grid-nederlands-persoonlijke-mentor {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-nederlands-persoonlijke-mentor {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: all 0.3s ease;
  color: inherit;
}

.related-card-nederlands-persoonlijke-mentor:hover {
  transform: translateY(-4px);
  border-color: #14b8a6;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.related-card-title-nederlands-persoonlijke-mentor {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

.related-card-description-nederlands-persoonlijke-mentor {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

.related-card-link-nederlands-persoonlijke-mentor {
  display: inline-block;
  color: #14b8a6;
  font-weight: 600;
  margin-top: auto;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.related-card-nederlands-persoonlijke-mentor:hover .related-card-link-nederlands-persoonlijke-mentor {
  color: #0d9488;
}

.disclaimer-section-nederlands-persoonlijke-mentor {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.disclaimer-content-nederlands-persoonlijke-mentor {
  background: #f1f5f9;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  border-left: 4px solid #14b8a6;
}

.disclaimer-title-nederlands-persoonlijke-mentor {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlands-persoonlijke-mentor {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .features-grid-nederlands-persoonlijke-mentor {
    flex-direction: column;
  }

  .feature-card-nederlands-persoonlijke-mentor {
    flex: 1 1 100%;
    max-width: none;
  }

  .specializations-grid-nederlands-persoonlijke-mentor {
    flex-direction: column;
  }

  .specialization-card-nederlands-persoonlijke-mentor {
    flex: 1 1 100%;
    max-width: none;
  }

  .testimonial-grid-nederlands-persoonlijke-mentor {
    flex-direction: column;
  }

  .testimonial-card-nederlands-persoonlijke-mentor {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-grid-nederlands-persoonlijke-mentor {
    flex-direction: column;
  }

  .related-card-nederlands-persoonlijke-mentor {
    flex: 1 1 100%;
    max-width: none;
  }
}

.groei-nederlands-about {
  font-family: var(--font-body);
  color: var(--color-text-light-primary);
}

.hero-section-about {
  background: var(--color-bg-light-primary);
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .hero-section-about {
    padding: 5rem 0;
  }
}

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

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

.hero-content-about {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title-about {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
}

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

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

.stat-block-about {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.stat-label-about {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.hero-image-about {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.mission-section-about {
  background: var(--color-bg-light-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .mission-section-about {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .mission-section-about {
    padding: 6rem 0;
  }
}

.mission-content-about {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  flex-direction: column !important;
}

.mission-text-about {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mission-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.mission-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
}

.mission-visual-about {
  flex: 1 1 300px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

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

  .mission-visual-about {
    max-width: 100%;
  }
}

.approach-section-about {
  background: var(--color-bg-light-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .approach-section-about {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .approach-section-about {
    padding: 6rem 0;
  }
}

.approach-header-about {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.approach-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.approach-subtitle-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.learning-steps-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.step-item-about {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

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

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

.step-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.step-description-about {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.values-section-about {
  background: var(--color-bg-light-tertiary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .values-section-about {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .values-section-about {
    padding: 6rem 0;
  }
}

.values-header-about {
  text-align: center;
  margin-bottom: 3rem;
}

.values-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.values-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.value-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon-about {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(20, 184, 166, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.value-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.value-text-about {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.impact-section-about {
  background: var(--color-bg-light-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .impact-section-about {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .impact-section-about {
    padding: 6rem 0;
  }
}

.impact-content-about {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  flex-direction: column !important;
}

.impact-text-about {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.impact-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.impact-paragraph-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
}

.impact-visual-about {
  flex: 1 1 300px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

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

  .impact-visual-about {
    max-width: 100%;
  }
}

.featured-quote-about {
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-light-secondary);
  margin: 2rem 0;
  border-radius: var(--radius-md);
}

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

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

.disclaimer-section-about {
  background: var(--color-bg-light-tertiary);
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .disclaimer-section-about {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .disclaimer-section-about {
    padding: 4rem 0;
  }
}

.disclaimer-content-about {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-about {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.disclaimer-text-about {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .step-item-about {
    flex-direction: column;
  }

  .step-number-about {
    min-width: auto;
  }

  .value-card-about {
    flex: 1 1 100%;
    max-width: none;
  }
}

.legal-portal {
  width: 100%;
  background: var(--color-bg-light-primary);
}

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

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

.legal-portal-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-portal-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-dark-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-portal-hero-meta {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
}

.legal-portal-content {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-light-primary);
  position: relative;
  overflow: hidden;
}

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

.legal-portal-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-portal-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-light-primary);
}

.legal-portal-section p {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
}

.legal-portal-section ul,
.legal-portal-section ol {
  margin-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-portal-section li {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
}

.legal-portal-section strong {
  color: var(--color-text-light-primary);
  font-weight: 600;
}

.legal-portal-contact {
  padding: clamp(2.5rem, 6vw, 4rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.legal-portal-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-light-primary);
}

.legal-portal-contact p {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
  margin: 0;
}

.legal-portal-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-portal-contact-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.legal-portal-contact-value {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-secondary);
}

@media (min-width: 768px) {
  .legal-portal-hero {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .legal-portal-content {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .legal-portal-contact {
    padding: clamp(2.5rem, 6vw, 4rem);
  }
}

@media (min-width: 1024px) {
  .legal-portal-hero {
    padding: 6rem 0;
  }

  .legal-portal-content {
    padding: 6rem 0;
  }

  .legal-portal-content-wrapper {
    gap: 3rem;
  }
}

.thank-page {
  width: 100%;
}

.thank-section {
  background: var(--color-bg-dark-primary);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.thank-icon {
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--color-secondary);
  line-height: 1;
  animation: icon-bounce 0.6s ease-out;
}

@keyframes icon-bounce {
  0% {
    transform: scale(0) translateY(20px);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.thank-section h1 {
  color: var(--color-text-dark-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-lead {
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw + 0.5rem, 1.375rem);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-description,
.thank-next-steps {
  color: var(--color-text-dark-secondary);
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-description {
  margin-top: clamp(0.5rem, 2vw, 1rem);
}

.thank-next-steps {
  margin-top: clamp(0.5rem, 2vw, 0.75rem);
  color: var(--color-text-dark-muted);
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  border: 2px solid transparent;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  margin-top: clamp(1rem, 3vw, 1.5rem);
}

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

.btn-primary:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .thank-section {
    padding: 4rem 0;
    min-height: auto;
  }

  .thank-content {
    gap: 2rem;
  }

  .thank-icon {
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .thank-content {
    gap: 2.5rem;
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
  }

  .thank-content {
    gap: 3rem;
  }
}

.main.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  background: linear-gradient(135deg, var(--color-bg-dark-primary) 0%, var(--color-bg-dark-secondary) 100%);
  padding: clamp(2rem, 8vw, 4rem) 0;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.error-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.error-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
  pointer-events: none;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 600px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem);
}

.error-code-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  color: var(--color-secondary);
  letter-spacing: -0.05em;
  line-height: 1;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: float-error 6s ease-in-out infinite;
}

@keyframes float-error {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.error-decoration {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--color-primary);
  animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-message {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-dark-muted);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  opacity: 0.9;
}

.error-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-body);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-light-primary);
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

.error-hints {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: clamp(1rem, 3vw, 1.5rem);
  width: 100%;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(20, 184, 166, 0.2);
}

.hint-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background: rgba(20, 184, 166, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 184, 166, 0.15);
  transition: all 0.3s ease;
}

.hint-item:hover {
  background: rgba(20, 184, 166, 0.12);
  border-color: rgba(20, 184, 166, 0.3);
  transform: translateY(-4px);
}

.hint-item i {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-secondary);
}

.hint-item p {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  color: var(--color-text-dark-muted);
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .error-section {
    padding: 4rem 0;
    min-height: auto;
  }

  .error-content {
    padding: 3rem;
  }

  .error-code {
    animation: float-error 6s ease-in-out infinite;
  }

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

@media (min-width: 1024px) {
  .error-section {
    padding: 6rem 0;
  }

  .error-content {
    padding: 4rem;
    gap: 3rem;
  }

  .hint-item {
    padding: 1.5rem;
  }

  .btn:active {
    transform: translateY(0px);
  }
}

@media (min-width: 1440px) {
  .error-section {
    padding: 8rem 0;
  }

  .error-content {
    padding: 5rem;
  }
}