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

:root {
  
  
  
  
  --color-bg-dark-primary: #0f172a;
  --color-bg-dark-secondary: #1e293b;
  --color-bg-dark-tertiary: #0d1520;
  
  
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  
  
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #cbd5e1;
  --color-text-dark-muted: #94a3b8;
  
  
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #64748b;
  
  
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #f59e0b;
  --color-secondary-hover: #d97706;
  --color-accent-light: #dbeafe;
  --color-accent-dark: #1e40af;
  
  
  --font-heading: 'Merriweather', 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;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  
  
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  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;
}

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

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

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

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

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

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

a {
  transition: var(--transition-base);
  text-decoration: none;
}

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

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

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

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

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

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

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

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

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

.about-section .about-highlight {
  color: var(--color-secondary);
  font-weight: 600;
}

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

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

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

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

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

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

.features-section .feature-description {
  color: var(--color-text-light-secondary);
}

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

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

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

.testimonials-section .testimonial-author {
  color: var(--color-text-light-primary);
  font-weight: 600;
}

.testimonials-section .testimonial-role {
  color: var(--color-text-light-muted);
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.95rem);
}

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

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

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

.hero-content,
.features-content,
.about-content,
.testimonials-content,
.pricing-content,
.contact-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

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

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

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

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

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

.feature-card,
.testimonial-card,
.pricing-card {
  background: var(--color-bg-card-light);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: var(--transition-base);
  box-shadow: var(--shadow-md);
}

.feature-card {
  border-top: 3px solid var(--color-primary);
}

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

.feature-card .feature-icon {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--color-primary);
}

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

.pricing-card {
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-dark));
  box-shadow: var(--shadow-xl);
  transform: scale(1.05);
}

.pricing-card.featured .pricing-title {
  color: var(--color-text-dark-primary);
}

.pricing-card.featured .pricing-price {
  color: var(--color-text-dark-primary);
}

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

.pricing-card .pricing-price {
  color: var(--color-secondary);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
}

.pricing-card .pricing-description {
  color: var(--color-text-dark-secondary);
}

.testimonial-card {
  background: var(--color-bg-card-light);
  border-left: 4px solid var(--color-primary);
}

.testimonial-card .testimonial-stars {
  color: var(--color-secondary);
  font-size: 1.25rem;
}

.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-md);
  transition: var(--transition-fast);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

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

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

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

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

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

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

.btn-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-text-dark-primary);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn i {
  font-size: 1.1em;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  padding: clamp(0.625rem, 1.5vw, 0.875rem) var(--space-md);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: var(--transition-fast);
  background: #ffffff;
  color: var(--color-text-light-primary);
}

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

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

.form-submit-btn {
  width: 100%;
  padding: clamp(0.75rem, 1.5vw, 1rem);
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  cursor: pointer;
  transition: var(--transition-fast);
}

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

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

.section-title-accent {
  color: var(--color-primary);
  font-weight: 700;
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--color-secondary);
  border-radius: var(--radius-sm);
  margin: var(--space-md) auto;
}

.badge {
  display: inline-block;
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-lg);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-dark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-secondary);
}

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

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

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

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

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

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

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

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .features-content,
  .testimonials-content,
  .pricing-content {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .hero-section,
  .about-section,
  .pricing-section,
  .features-section,
  .testimonials-section,
  .contact-section {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
  }
  
  .flex-between {
    flex-direction: column;
    align-items: stretch;
  }
  
  .section-title {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
  }
}

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

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out forwards;
}
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Inter:wght@400;500;600;700&display=swap');

.header-scholar-nav {
  width: 100%;
  background: var(--color-bg-dark-primary);
  position: static;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-scholar-nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 5vw, 2rem);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-scholar-nav-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header-scholar-nav-brand:hover {
  opacity: 0.85;
}

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

.header-scholar-nav-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

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

.header-scholar-nav-nav-link {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

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

.header-scholar-nav-nav-link:hover {
  color: #ffffff;
}

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

.header-scholar-nav-cta-button {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-scholar-nav-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

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

.header-scholar-nav-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.header-scholar-nav-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-dark-secondary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  padding-top: 5rem;
}

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

.header-scholar-nav-mobile-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 clamp(1rem, 5vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.header-scholar-nav-mobile-close:hover {
  color: var(--color-primary);
}

.header-scholar-nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  padding: clamp(1rem, 4vw, 2rem);
}

.header-scholar-nav-mobile-link {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  color: #cbd5e1;
  text-decoration: none;
  padding: clamp(1rem, 3vw, 1.25rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header-scholar-nav-mobile-link:hover {
  color: var(--color-primary);
}

.header-scholar-nav-mobile-cta {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  padding: clamp(0.875rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-md);
  margin: 0 clamp(1rem, 4vw, 2rem) clamp(1rem, 4vw, 2rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

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

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

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

  .header-scholar-nav-mobile-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-scholar-nav-logo-text {
    font-size: 1.125rem;
  }
}

    

.writing-academy-portal {
  width: 100%;
  position: relative;
}

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

.hero-decoration-glow-primary {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-decoration-mesh-gradient {
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse 400px 300px at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.hero-decoration-floating-accent-1 {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 2;
  pointer-events: none;
  animation: float-subtle 8s ease-in-out infinite;
}

.hero-decoration-floating-accent-2 {
  position: absolute;
  top: 20%;
  right: 8%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 2;
  pointer-events: none;
  animation: float-subtle 10s ease-in-out infinite 2s;
}

.hero-decoration-line-element {
  position: absolute;
  top: 30%;
  right: 20%;
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-decoration-corner-orb {
  position: absolute;
  bottom: 50px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-section-title {
  color: var(--color-text-dark-primary);
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  margin-bottom: var(--space-md);
  line-height: 1.15;
  font-weight: 700;
}

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

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

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

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

.hero-stat-label {
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-dark-muted);
  font-weight: 500;
}

.hero-section-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.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-md);
  transition: var(--transition-fast);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
}

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

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

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

.btn-secondary:hover {
  background: var(--color-secondary);
  color: #0f172a;
  transform: translateY(-3px);
}

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

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

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

.features-decoration-field-1 {
  position: absolute;
  top: -150px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.features-decoration-shape-organic {
  position: absolute;
  top: 40%;
  right: -50px;
  width: 350px;
  height: 350px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
}

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

.features-decoration-floating-panel {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 180px;
  height: 150px;
  background: rgba(245, 158, 11, 0.04);
  border: 1px solid rgba(245, 158, 11, 0.08);
  border-radius: 12px;
  transform: rotate(-8deg);
  z-index: 2;
  pointer-events: none;
}

.features-decoration-line-divider {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.features-section-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.features-section-subtitle {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9375rem, 2vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.features-section-card {
  flex: 1 1 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--color-primary);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

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

.features-section-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.5rem;
}

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

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

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

.process-decoration-glow-1 {
  position: absolute;
  top: 50px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.process-decoration-gradient-mesh {
  position: absolute;
  bottom: -200px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.process-decoration-shape-2 {
  position: absolute;
  top: 30%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 45% 55% 50% 50% / 50% 50% 50% 50%;
  z-index: 2;
  pointer-events: none;
}

.process-decoration-accent-line {
  position: absolute;
  top: 60%;
  left: 10%;
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.process-section-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.process-section-subtitle {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.9375rem, 2vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.process-section-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.process-section-step {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-base);
  flex-direction: column !important;
}

.process-section-step:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 158, 11, 0.2);
}

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

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

.process-section-step-title {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
}

.process-section-step-text {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

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

.courses-decoration-field {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.courses-decoration-glow-2 {
  position: absolute;
  bottom: 100px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.courses-decoration-float-shape {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.courses-decoration-panel {
  position: absolute;
  bottom: 50px;
  right: 8%;
  width: 200px;
  height: 150px;
  background: rgba(245, 158, 11, 0.04);
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 12px;
  transform: rotate(5deg);
  z-index: 2;
  pointer-events: none;
}

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

.courses-section-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.courses-section-subtitle {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9375rem, 2vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.courses-section-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: clamp(3rem, 5vw, 4rem);
  position: relative;
  z-index: 10;
}

.courses-section-card {
  flex: 1 1 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

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

.courses-section-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

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

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

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

.courses-section-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.courses-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 16px;
  font-size: 0.8125rem;
  font-weight: 500;
}

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

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

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

.about-decoration-glow-primary {
  position: absolute;
  top: 100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.about-decoration-shape-organic {
  position: absolute;
  bottom: 50px;
  left: -50px;
  width: 350px;
  height: 350px;
  background: rgba(245, 158, 11, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
}

.about-decoration-mesh {
  position: absolute;
  top: 40%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.about-decoration-accent {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.about-section-text {
  flex: 1 1 400px;
}

.about-section-title {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.about-section-description {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.about-section-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: clamp(2rem, 3vw, 3rem);
}

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

.about-highlight-icon {
  color: var(--color-secondary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-highlight-text {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.about-section-image {
  flex: 1 1 400px;
  min-width: 280px;
}

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

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

.testimonials-decoration-field {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.testimonials-decoration-glow {
  position: absolute;
  bottom: 50px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.testimonials-decoration-shape {
  position: absolute;
  top: 40%;
  right: 8%;
  width: 280px;
  height: 280px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 50% 50% 40% 60% / 60% 50% 50% 40%;
  z-index: 2;
  pointer-events: none;
}

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

.testimonials-section-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.testimonials-section-subtitle {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9375rem, 2vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonials-section-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 3vw, 2.5rem);
  position: relative;
  z-index: 10;
}

.testimonials-section-card {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

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

.testimonials-section-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--color-secondary);
  font-size: 1.125rem;
}

.testimonials-section-quote {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  font-style: italic;
  flex-grow: 1;
}

.testimonials-section-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: var(--space-md);
}

.testimonials-section-author-name {
  color: var(--color-text-light-primary);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

.testimonials-section-author-role {
  color: var(--color-text-light-muted);
  font-size: 0.85rem;
  margin: 0;
}

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

.contact-decoration-glow {
  position: absolute;
  top: 50px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-decoration-mesh {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.contact-decoration-shape {
  position: absolute;
  top: 30%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 2;
  pointer-events: none;
}

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

.contact-section-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.contact-section-subtitle {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9375rem, 2vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

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

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

.contact-section-label {
  color: var(--color-text-light-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-section-input,
.contact-section-textarea {
  padding: clamp(0.625rem, 1.5vw, 0.875rem) var(--space-md);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
  background: #ffffff;
  color: var(--color-text-light-primary);
}

.contact-section-input:focus,
.contact-section-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.contact-section-submit {
  width: 100%;
  padding: clamp(0.875rem, 1.5vw, 1rem);
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  cursor: pointer;
  transition: var(--transition-fast);
}

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

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

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

.contact-section-info-block {
  background: rgba(37, 99, 235, 0.05);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.contact-section-info-title {
  color: var(--color-text-light-primary);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

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

.contact-section-faq-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-section-faq-question {
  color: var(--color-text-light-primary);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

.contact-section-faq-answer {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

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

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

.cookie-banner-text {
  color: #ffffff;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.5;
  flex: 1 1 250px;
  margin: 0;
}

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

.cookie-btn-accept {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  background: var(--color-primary);
  color: #0f172a;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.cookie-btn-decline {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  cursor: pointer;
  transition: var(--transition-fast);
}

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

@keyframes float-subtle {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

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

  .about-section-image {
    flex: 1 1 100%;
    max-width: none;
  }

  .contact-section-content {
    flex-direction: column;
  }

  .contact-section-form-wrapper,
  .contact-section-info {
    flex: 1 1 100%;
    max-width: none;
  }

  .features-section-card {
    flex: 1 1 100%;
    max-width: none;
  }

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

  .testimonials-section-card {
    flex: 1 1 100%;
    max-width: none;
  }

  .process-section-steps {
    max-width: 100%;
  }

  .hero-decoration-glow-primary,
  .hero-decoration-mesh-gradient,
  .features-decoration-field-1,
  .about-decoration-glow-primary {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-section-stats {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

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

  .btn {
    width: 100%;
  }

  .cookie-banner {
    flex-direction: column;
    gap: var(--space-md);
  }

  .cookie-banner-buttons {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1;
  }
}

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

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

    .footer {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  color: var(--color-text-dark-secondary);
  position: relative;
  overflow: hidden;
}

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

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

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-about-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
}

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

.footer-nav-section,
.footer-contact-section,
.footer-legal-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-nav-title,
.footer-contact-title,
.footer-legal-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
}

.footer-nav-links,
.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-nav-link,
.footer-legal-link {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
  display: inline-block;
  width: fit-content;
}

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

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

.footer-contact-item {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.5;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: clamp(1rem, 2vw, 2rem);
}

.footer-copyright-text {
  font-family: var(--font-body);
  font-size: clamp(0.8125rem, 1.25vw, 0.875rem);
  color: var(--color-text-dark-muted);
  line-height: 1.5;
  text-align: center;
}

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

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

  .footer-nav-links,
  .footer-legal-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-nav-link,
  .footer-legal-link {
    flex: 0 1 auto;
  }

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

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

  .footer-about {
    grid-column: 1 / 2;
  }

  .footer-nav-section {
    grid-column: 2 / 3;
  }

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

  .footer-legal-section {
    grid-column: 4 / 5;
  }

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

  .footer-nav-links,
  .footer-legal-links {
    flex-direction: column;
    gap: 0.875rem;
  }

  .footer-nav-link,
  .footer-legal-link {
    display: inline-block;
    width: auto;
  }
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 10;
}

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

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

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

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

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

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

.hero-badge-academic-dutch-writing {
  display: inline-block;
  width: fit-content;
  padding: 0.5rem 1.25rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.hero-subtitle-academic-dutch-writing {
  font-size: clamp(0.95rem, 2vw + 0.3rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 600px;
}

.hero-stats-academic-dutch-writing {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
}

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

.stat-number-academic-dutch-writing {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #f59e0b;
  line-height: 1;
  font-family: 'Merriweather', serif;
}

.stat-label-academic-dutch-writing {
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  color: #94a3b8;
  font-weight: 500;
}

.hero-decoration-glow-academic-dutch-writing {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-decoration-shape-academic-dutch-writing {
  position: absolute;
  bottom: 10%;
  left: -8%;
  width: 300px;
  height: 300px;
  background: rgba(245, 158, 11, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-decoration-accent-academic-dutch-writing {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 2px;
  height: 200px;
  background: linear-gradient(180deg, transparent, rgba(96, 165, 250, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
}

.featured-post-section-academic-dutch-writing {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.featured-card-academic-dutch-writing {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card-academic-dutch-writing:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

.featured-card-image-wrapper-academic-dutch-writing {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
}

.featured-card-image-academic-dutch-writing {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.featured-card-tag-academic-dutch-writing {
  display: inline-block;
  width: fit-content;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.featured-card-title-academic-dutch-writing {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  word-wrap: break-word;
}

.featured-card-description-academic-dutch-writing {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #475569;
  line-height: 1.7;
}

.featured-card-meta-academic-dutch-writing {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding-top: 0.5rem;
}

.meta-badge-academic-dutch-writing {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.08);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.meta-badge-academic-dutch-writing i {
  font-size: 0.875rem;
}

.featured-card-link-academic-dutch-writing {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  margin-top: 0.5rem;
  color: #2563eb;
  font-weight: 600;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  transition: all 0.3s ease;
}

.featured-card-link-academic-dutch-writing:hover {
  gap: 1rem;
  color: #1d4ed8;
}

.featured-card-link-academic-dutch-writing::after {
  content: '';
  font-weight: 700;
}

.featured-deco-1-academic-dutch-writing {
  position: absolute;
  top: -15%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.featured-deco-2-academic-dutch-writing {
  position: absolute;
  bottom: 5%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(37, 99, 235, 0.06);
  border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.posts-section-academic-dutch-writing {
  background: #1e293b;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.posts-section-title-academic-dutch-writing {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  word-wrap: break-word;
}

.posts-section-subtitle-academic-dutch-writing {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

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

.post-card-academic-dutch-writing {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-card-academic-dutch-writing:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(96, 165, 250, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.post-card-image-academic-dutch-writing {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.post-card-content-academic-dutch-writing {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.post-card-title-academic-dutch-writing {
  font-size: clamp(1.0625rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  word-wrap: break-word;
}

.post-card-description-academic-dutch-writing {
  font-size: clamp(0.8125rem, 1.2vw, 0.95rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.post-card-meta-academic-dutch-writing {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.5rem;
}

.post-card-link-academic-dutch-writing {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin-top: 0.5rem;
  color: #60a5fa;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.post-card-link-academic-dutch-writing:hover {
  gap: 0.75rem;
  color: #93c5fd;
}

.post-card-link-academic-dutch-writing::after {
  content: '';
  font-weight: 700;
}

.posts-deco-1-academic-dutch-writing {
  position: absolute;
  top: 5%;
  right: -8%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(75px);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.posts-deco-2-academic-dutch-writing {
  position: absolute;
  bottom: -10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(245, 158, 11, 0.06);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.posts-deco-3-academic-dutch-writing {
  position: absolute;
  top: 50%;
  left: -5%;
  width: 2px;
  height: 250px;
  background: linear-gradient(180deg, transparent, rgba(96, 165, 250, 0.15), transparent);
  z-index: 1;
  pointer-events: none;
}

.learning-path-section-academic-dutch-writing {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.learning-title-academic-dutch-writing {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

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

.learning-steps-academic-dutch-writing {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.learning-step-academic-dutch-writing {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
  transition: all 0.3s ease;
}

.learning-step-academic-dutch-writing:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

.learning-step-number-academic-dutch-writing {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
  font-family: 'Merriweather', serif;
}

.learning-step-content-academic-dutch-writing {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.learning-step-title-academic-dutch-writing {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #1e293b;
}

.learning-step-text-academic-dutch-writing {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.learning-deco-1-academic-dutch-writing {
  position: absolute;
  top: -10%;
  left: -8%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.09) 0%, transparent 70%);
  filter: blur(75px);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.learning-deco-2-academic-dutch-writing {
  position: absolute;
  bottom: 5%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: rgba(37, 99, 235, 0.07);
  border-radius: 50% 50% 30% 70% / 30% 70% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.key-concepts-section-academic-dutch-writing {
  background: #0d1520;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.concepts-header-academic-dutch-writing {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.concepts-title-academic-dutch-writing {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.concepts-subtitle-academic-dutch-writing {
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

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

.concept-card-academic-dutch-writing {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.concept-card-academic-dutch-writing:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.concept-icon-academic-dutch-writing {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.12);
  border-radius: 10px;
  color: #f59e0b;
  font-size: 1.5rem;
}

.concept-title-academic-dutch-writing {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
}

.concept-text-academic-dutch-writing {
  font-size: clamp(0.875rem, 1.2vw, 0.9375rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.concepts-deco-1-academic-dutch-writing {
  position: absolute;
  top: 10%;
  right: -8%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(75px);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.concepts-deco-2-academic-dutch-writing {
  position: absolute;
  bottom: 5%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(245, 158, 11, 0.07);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.concepts-deco-3-academic-dutch-writing {
  position: absolute;
  top: 40%;
  left: 2%;
  width: 2px;
  height: 200px;
  background: linear-gradient(180deg, transparent, rgba(245, 158, 11, 0.15), transparent);
  z-index: 1;
  pointer-events: none;
}

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

.testimonial-header-academic-dutch-writing {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.testimonial-title-academic-dutch-writing {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
}

.featured-quote-academic-dutch-writing {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  border-left: 5px solid #2563eb;
  background: #f8fafc;
  margin: 0 auto;
  max-width: 700px;
  border-radius: 8px;
}

.quote-text-academic-dutch-writing {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-style: italic;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.quote-author-academic-dutch-writing {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #64748b;
  font-style: normal;
  font-weight: 600;
}

.testimonial-deco-1-academic-dutch-writing {
  position: absolute;
  bottom: -15%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  filter: blur(75px);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-stats-academic-dutch-writing {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .featured-card-academic-dutch-writing {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .post-card-academic-dutch-writing {
    flex: 1 1 100%;
    max-width: none;
  }

  .learning-step-academic-dutch-writing {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .learning-step-number-academic-dutch-writing {
    min-width: auto;
  }

  .concept-card-academic-dutch-writing {
    flex: 1 1 100%;
    max-width: none;
  }

  .featured-quote-academic-dutch-writing {
    padding: clamp(1.5rem, 3vw, 2rem);
  }
}

@media (max-width: 480px) {
  .hero-stats-academic-dutch-writing {
    flex-direction: column;
    gap: 1.5rem;
  }

  .featured-card-academic-dutch-writing {
    border-radius: 0;
  }

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

  .post-card-academic-dutch-writing {
    border-radius: 8px;
  }
}

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

:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.main-formele-nederlandse-schrijfstijl {
  width: 100%;
}

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

.hero-section-formele-nederlandse-schrijfstijl {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

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

.article-meta-formele-nederlandse-schrijfstijl {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.meta-badge-formele-nederlandse-schrijfstijl {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #f59e0b;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-formele-nederlandse-schrijfstijl i {
  font-size: 1rem;
}

.hero-image-wrapper-formele-nederlandse-schrijfstijl {
  width: 100%;
  margin-top: 2rem;
}

.hero-image-formele-nederlandse-schrijfstijl {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.introduction-section-formele-nederlandse-schrijfstijl {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.introduction-content-formele-nederlandse-schrijfstijl {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.introduction-text-formele-nederlandse-schrijfstijl {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.introduction-title-formele-nederlandse-schrijfstijl {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.introduction-paragraph-formele-nederlandse-schrijfstijl {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.introduction-image-formele-nederlandse-schrijfstijl {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-img-formele-nederlandse-schrijfstijl {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .introduction-content-formele-nederlandse-schrijfstijl {
    flex-direction: column;
  }

  .introduction-text-formele-nederlandse-schrijfstijl,
  .introduction-image-formele-nederlandse-schrijfstijl {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.grammar-section-formele-nederlandse-schrijfstijl {
  background: #1e293b;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.grammar-content-formele-nederlandse-schrijfstijl {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.grammar-text-formele-nederlandse-schrijfstijl {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.grammar-paragraph-formele-nederlandse-schrijfstijl {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.grammar-highlight-formele-nederlandse-schrijfstijl {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #f59e0b;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.grammar-highlight-text-formele-nederlandse-schrijfstijl {
  color: #f1f5f9;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  margin: 0;
}

.grammar-image-formele-nederlandse-schrijfstijl {
  flex: 1 1 50%;
  max-width: 50%;
}

.grammar-img-formele-nederlandse-schrijfstijl {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .grammar-content-formele-nederlandse-schrijfstijl {
    flex-direction: column;
  }

  .grammar-text-formele-nederlandse-schrijfstijl,
  .grammar-image-formele-nederlandse-schrijfstijl {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.vocabulary-section-formele-nederlandse-schrijfstijl {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.vocabulary-content-formele-nederlandse-schrijfstijl {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.vocabulary-image-formele-nederlandse-schrijfstijl {
  flex: 1 1 50%;
  max-width: 50%;
}

.vocabulary-img-formele-nederlandse-schrijfstijl {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.vocabulary-text-formele-nederlandse-schrijfstijl {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vocabulary-title-formele-nederlandse-schrijfstijl {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.vocabulary-paragraph-formele-nederlandse-schrijfstijl {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.vocabulary-list-formele-nederlandse-schrijfstijl {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.vocabulary-item-formele-nederlandse-schrijfstijl {
  display: flex;
  gap: 0.75rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #334155;
  line-height: 1.6;
}

.vocabulary-item-formele-nederlandse-schrijfstijl::before {
  content: "";
  color: #2563eb;
  font-weight: bold;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .vocabulary-content-formele-nederlandse-schrijfstijl {
    flex-direction: column;
  }

  .vocabulary-image-formele-nederlandse-schrijfstijl,
  .vocabulary-text-formele-nederlandse-schrijfstijl {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tone-section-formele-nederlandse-schrijfstijl {
  background: #0f172a;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tone-content-formele-nederlandse-schrijfstijl {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.tone-text-formele-nederlandse-schrijfstijl {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.tone-paragraph-formele-nederlandse-schrijfstijl {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.tone-list-formele-nederlandse-schrijfstijl {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.tone-item-formele-nederlandse-schrijfstijl {
  display: flex;
  gap: 0.75rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.tone-item-formele-nederlandse-schrijfstijl::before {
  content: "";
  color: #f59e0b;
  font-weight: bold;
  flex-shrink: 0;
}

.tone-image-formele-nederlandse-schrijfstijl {
  flex: 1 1 50%;
  max-width: 50%;
}

.tone-img-formele-nederlandse-schrijfstijl {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .tone-content-formele-nederlandse-schrijfstijl {
    flex-direction: column;
  }

  .tone-text-formele-nederlandse-schrijfstijl,
  .tone-image-formele-nederlandse-schrijfstijl {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.structure-section-formele-nederlandse-schrijfstijl {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.structure-header-formele-nederlandse-schrijfstijl {
  text-align: center;
  margin-bottom: 3rem;
}

.structure-title-formele-nederlandse-schrijfstijl {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.structure-subtitle-formele-nederlandse-schrijfstijl {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.structure-steps-formele-nederlandse-schrijfstijl {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.structure-step-formele-nederlandse-schrijfstijl {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

.structure-step-number-formele-nederlandse-schrijfstijl {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.structure-step-content-formele-nederlandse-schrijfstijl {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.structure-step-title-formele-nederlandse-schrijfstijl {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

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

.structure-image-wrapper-formele-nederlandse-schrijfstijl {
  width: 100%;
}

.structure-image-formele-nederlandse-schrijfstijl {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .structure-step-formele-nederlandse-schrijfstijl {
    flex-direction: column;
    align-items: stretch;
  }

  .structure-step-number-formele-nederlandse-schrijfstijl {
    min-width: auto;
  }
}

.conclusion-section-formele-nederlandse-schrijfstijl {
  background: #1e293b;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-formele-nederlandse-schrijfstijl {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.conclusion-text-formele-nederlandse-schrijfstijl {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.conclusion-paragraph-formele-nederlandse-schrijfstijl {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.conclusion-quote-formele-nederlandse-schrijfstijl {
  padding: 1.5rem;
  border-left: 4px solid #f59e0b;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-top: 1rem;
}

.quote-text-formele-nederlandse-schrijfstijl {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #f1f5f9;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.conclusion-image-formele-nederlandse-schrijfstijl {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-formele-nederlandse-schrijfstijl img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .conclusion-content-formele-nederlandse-schrijfstijl {
    flex-direction: column;
  }

  .conclusion-text-formele-nederlandse-schrijfstijl,
  .conclusion-image-formele-nederlandse-schrijfstijl {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-formele-nederlandse-schrijfstijl {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-formele-nederlandse-schrijfstijl {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-icon-formele-nederlandse-schrijfstijl {
  font-size: 1.5rem;
  color: #f59e0b;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-text-formele-nederlandse-schrijfstijl {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.disclaimer-title-formele-nederlandse-schrijfstijl {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.disclaimer-paragraph-formele-nederlandse-schrijfstijl {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.related-section-formele-nederlandse-schrijfstijl {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-formele-nederlandse-schrijfstijl {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-formele-nederlandse-schrijfstijl {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.related-subtitle-formele-nederlandse-schrijfstijl {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-formele-nederlandse-schrijfstijl {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.related-card-formele-nederlandse-schrijfstijl:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.related-card-image-formele-nederlandse-schrijfstijl {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-card-image-formele-nederlandse-schrijfstijl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-formele-nederlandse-schrijfstijl {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
  margin: 0;
}

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

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

.breadcrumbs-formele-nederlandse-schrijfstijl {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-formele-nederlandse-schrijfstijl a {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-formele-nederlandse-schrijfstijl a:hover {
  color: #0ea5e9;
  text-decoration: underline;
}

.breadcrumbs-formele-nederlandse-schrijfstijl span {
  color: #94a3b8;
}

.breadcrumbs-formele-nederlandse-schrijfstijl span:last-child {
  color: #cbd5e1;
  font-weight: 500;
}

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

  .introduction-section-formele-nederlandse-schrijfstijl,
  .grammar-section-formele-nederlandse-schrijfstijl,
  .vocabulary-section-formele-nederlandse-schrijfstijl,
  .tone-section-formele-nederlandse-schrijfstijl,
  .structure-section-formele-nederlandse-schrijfstijl,
  .conclusion-section-formele-nederlandse-schrijfstijl {
    padding: clamp(5rem, 8vw, 8rem) 0;
  }
}

@media (max-width: 480px) {
  .hero-title-formele-nederlandse-schrijfstijl {
    word-break: break-word;
  }

  .structure-step-formele-nederlandse-schrijfstijl {
    flex-direction: column;
  }

  .article-meta-formele-nederlandse-schrijfstijl {
    gap: 0.75rem;
  }

  .meta-badge-formele-nederlandse-schrijfstijl {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
}

:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

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

.main-nederlandse-grammatica-grondbeginselen {
  width: 100%;
}

.hero-section-nederlandse-grammatica-grondbeginselen {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-block-nederlandse-grammatica-grondbeginselen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-nederlandse-grammatica-grondbeginselen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.breadcrumbs-nederlandse-grammatica-grondbeginselen a {
  color: #38bdf8;
  transition: all 0.2s ease;
}

.breadcrumbs-nederlandse-grammatica-grondbeginselen a:hover {
  color: #0ea5e9;
  text-decoration: underline;
}

.breadcrumbs-nederlandse-grammatica-grondbeginselen span {
  color: #94a3b8;
}

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

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

.article-meta-nederlandse-grammatica-grondbeginselen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.meta-badge-nederlandse-grammatica-grondbeginselen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.meta-badge-nederlandse-grammatica-grondbeginselen i {
  font-size: 0.9em;
}

.hero-image-nederlandse-grammatica-grondbeginselen {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-content-nederlandse-grammatica-grondbeginselen {
    flex-direction: column;
  }
  
  .hero-text-block-nederlandse-grammatica-grondbeginselen,
  .hero-image-block-nederlandse-grammatica-grondbeginselen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.introduction-section-nederlandse-grammatica-grondbeginselen {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-nederlandse-grammatica-grondbeginselen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-nederlandse-grammatica-grondbeginselen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #334155;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.intro-text-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.intro-image-nederlandse-grammatica-grondbeginselen {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .intro-content-nederlandse-grammatica-grondbeginselen {
    flex-direction: column;
  }
  
  .intro-text-nederlandse-grammatica-grondbeginselen,
  .intro-image-nederlandse-grammatica-grondbeginselen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-one-nederlandse-grammatica-grondbeginselen {
  background: #1e293b;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-one-nederlandse-grammatica-grondbeginselen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-nederlandse-grammatica-grondbeginselen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-text-paragraph-one-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-image-one-nederlandse-grammatica-grondbeginselen img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.content-section-two-nederlandse-grammatica-grondbeginselen {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-two-nederlandse-grammatica-grondbeginselen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-two-nederlandse-grammatica-grondbeginselen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-text-paragraph-two-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-image-two-nederlandse-grammatica-grondbeginselen img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.content-section-three-nederlandse-grammatica-grondbeginselen {
  background: #0d1520;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-three-nederlandse-grammatica-grondbeginselen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-three-nederlandse-grammatica-grondbeginselen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-three-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-text-paragraph-three-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-image-three-nederlandse-grammatica-grondbeginselen img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.quote-section-nederlandse-grammatica-grondbeginselen {
  padding: 2rem 2.5rem;
  border-left: 4px solid #38bdf8;
  background: rgba(56, 189, 248, 0.08);
  margin: 2rem 0;
  border-radius: 8px;
}

.quote-text-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #f1f5f9;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-cite-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
  font-style: normal;
}

.content-section-four-nederlandse-grammatica-grondbeginselen {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-four-nederlandse-grammatica-grondbeginselen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-four-nederlandse-grammatica-grondbeginselen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-four-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-text-paragraph-four-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-image-four-nederlandse-grammatica-grondbeginselen img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .content-wrapper-one-nederlandse-grammatica-grondbeginselen,
  .content-wrapper-two-nederlandse-grammatica-grondbeginselen,
  .content-wrapper-three-nederlandse-grammatica-grondbeginselen,
  .content-wrapper-four-nederlandse-grammatica-grondbeginselen {
    flex-direction: column;
  }
  
  .content-text-one-nederlandse-grammatica-grondbeginselen,
  .content-image-one-nederlandse-grammatica-grondbeginselen,
  .content-text-two-nederlandse-grammatica-grondbeginselen,
  .content-image-two-nederlandse-grammatica-grondbeginselen,
  .content-text-three-nederlandse-grammatica-grondbeginselen,
  .content-image-three-nederlandse-grammatica-grondbeginselen,
  .content-text-four-nederlandse-grammatica-grondbeginselen,
  .content-image-four-nederlandse-grammatica-grondbeginselen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-nederlandse-grammatica-grondbeginselen {
  background: #1e293b;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-nederlandse-grammatica-grondbeginselen {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.conclusion-title-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.conclusion-text-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.steps-container-nederlandse-grammatica-grondbeginselen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.step-item-nederlandse-grammatica-grondbeginselen {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid #38bdf8;
}

.step-number-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #38bdf8;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.step-content-nederlandse-grammatica-grondbeginselen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

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

.step-text-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.conclusion-closing-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
  font-style: italic;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-section-nederlandse-grammatica-grondbeginselen {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-nederlandse-grammatica-grondbeginselen {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

.related-card-nederlandse-grammatica-grondbeginselen:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.related-card-image-nederlandse-grammatica-grondbeginselen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-nederlandse-grammatica-grondbeginselen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-nederlandse-grammatica-grondbeginselen:hover .related-image-nederlandse-grammatica-grondbeginselen {
  transform: scale(1.05);
}

.related-card-content-nederlandse-grammatica-grondbeginselen {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-text-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #475569;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #2563eb;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
}

.related-card-link-nederlandse-grammatica-grondbeginselen:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

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

.disclaimer-section-nederlandse-grammatica-grondbeginselen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-nederlandse-grammatica-grondbeginselen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f1f5f9;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #92400e;
  margin-bottom: 0.5rem;
}

.disclaimer-text-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #334155;
  line-height: 1.7;
}

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

@media (max-width: 768px) {
  .hero-section-nederlandse-grammatica-grondbeginselen,
  .introduction-section-nederlandse-grammatica-grondbeginselen,
  .content-section-one-nederlandse-grammatica-grondbeginselen,
  .content-section-two-nederlandse-grammatica-grondbeginselen,
  .content-section-three-nederlandse-grammatica-grondbeginselen,
  .content-section-four-nederlandse-grammatica-grondbeginselen,
  .conclusion-section-nederlandse-grammatica-grondbeginselen,
  .related-section-nederlandse-grammatica-grondbeginselen,
  .disclaimer-section-nederlandse-grammatica-grondbeginselen {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }
  
  .quote-section-nederlandse-grammatica-grondbeginselen {
    padding: 1.5rem 1.5rem;
    margin: 1.5rem 0;
  }
  
  .step-item-nederlandse-grammatica-grondbeginselen {
    flex-direction: column;
    gap: 1rem;
  }
  
  .step-number-nederlandse-grammatica-grondbeginselen {
    align-self: flex-start;
  }
}

a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 2px;
}

.main-professionele-zakelijke-communicatie {
  width: 100%;
  background: #ffffff;
}

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

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

.hero-section-professionele-zakelijke-communicatie {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
}

.hero-content-professionele-zakelijke-communicatie {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-direction: column;
}

.hero-text-wrapper-professionele-zakelijke-communicatie {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.hero-title-professionele-zakelijke-communicatie {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  font-family: 'Merriweather', serif;
}

.hero-subtitle-professionele-zakelijke-communicatie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.5;
  color: #cbd5e1;
  font-weight: 400;
}

.article-meta-professionele-zakelijke-communicatie {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-professionele-zakelijke-comunicatie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #bfdbfe;
}

.meta-badge-professionele-zakelijke-comunicatie i {
  color: #2563eb;
  font-size: 0.875rem;
}

.hero-image-wrapper-professionele-zakelijke-comunicatie {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-professionele-zakelijke-comunicatie {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.breadcrumbs-professionele-zakelijke-comunicatie {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-professionele-zakelijke-comunicatie a {
  color: #38bdf8;
  transition: color 0.2s ease;
}

.breadcrumbs-professionele-zakelijke-comunicatie a:hover {
  color: #7dd3fc;
  text-decoration: underline;
}

.breadcrumb-separator-professionele-zakelijke-comunicatie {
  color: #64748b;
}

.breadcrumb-current-professionele-zakelijke-comunicatie {
  color: #cbd5e1;
}

@media (max-width: 768px) {
  .hero-content-professionele-zakelijke-comunicatie {
    flex-direction: column;
  }

  .hero-text-wrapper-professionele-zakelijke-comunicatie,
  .hero-image-wrapper-professionele-zakelijke-comunicatie {
    flex: 1 1 100%;
  }
}

.introduction-section-professionele-zakelijke-comunicatie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

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

.introduction-text-professionele-zakelijke-comunicatie {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.introduction-title-professionele-zakelijke-comunicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  font-family: 'Merriweather', serif;
}

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

.introduction-image-professionele-zakelijke-comunicatie {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.introduction-img-professionele-zakelijke-comunicatie {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .introduction-content-professionele-zakelijke-comunicatie {
    flex-direction: column;
  }

  .introduction-text-professionele-zakelijke-comunicatie,
  .introduction-image-professionele-zakelijke-comunicatie {
    flex: 1 1 100%;
  }
}

.structure-section-professionele-zakelijke-comunicatie {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.structure-header-professionele-zakelijke-comunicatie {
  text-align: center;
  margin-bottom: 3rem;
}

.structure-tag-professionele-zakelijke-comunicatie {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.15);
  color: #38bdf8;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.structure-title-professionele-zakelijke-comunicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  font-family: 'Merriweather', serif;
  margin-bottom: 1rem;
}

.structure-content-professionele-zakelijke-comunicatie {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.structure-text-professionele-zakelijke-comunicatie {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.structure-description-professionele-zakelijke-comunicatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #cbd5e1;
}

.structure-list-professionele-zakelijke-comunicatie {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.list-item-professionele-zakelijke-comunicatie {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.list-number-professionele-zakelijke-comunicatie {
  font-size: 2rem;
  font-weight: 800;
  color: #2563eb;
  flex-shrink: 0;
  line-height: 1;
}

.list-content-professionele-zakelijke-comunicatie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.list-title-professionele-zakelijke-comunicatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.list-text-professionele-zakelijke-comunicatie {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #94a3b8;
}

.structure-image-professionele-zakelijke-comunicatie {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.structure-img-professionele-zakelijke-comunicatie {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .structure-content-professionele-zakelijke-comunicatie {
    flex-direction: column;
  }

  .structure-text-professionele-zakelijke-comunicatie,
  .structure-image-professionele-zakelijke-comunicatie {
    flex: 1 1 100%;
  }
}

.formality-section-professionele-zakelijke-comunicatie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.formality-content-professionele-zakelijke-comunicatie {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.formality-image-professionele-zakelijke-comunicatie {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.formality-img-professionele-zakelijke-comunicatie {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.formality-text-professionele-zakelijke-comunicatie {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.formality-title-professionele-zakelijke-comunicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  font-family: 'Merriweather', serif;
}

.formality-description-professionele-zakelijke-comunicatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
}

.formality-highlight-professionele-zakelijke-comunicatie {
  padding: 1.5rem;
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  border-radius: 8px;
}

.highlight-text-professionele-zakelijke-comunicatie {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #1e40af;
}

@media (max-width: 768px) {
  .formality-content-professionele-zakelijke-comunicatie {
    flex-direction: column-reverse;
  }

  .formality-image-professionele-zakelijke-comunicatie,
  .formality-text-professionele-zakelijke-comunicatie {
    flex: 1 1 100%;
  }
}

.email-section-professionele-zakelijke-comunicatie {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.email-header-professionele-zakelijke-comunicatie {
  text-align: center;
  margin-bottom: 3rem;
}

.email-title-professionele-zakelijke-comunicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  font-family: 'Merriweather', serif;
  margin-bottom: 1rem;
}

.email-subtitle-professionele-zakelijke-comunicatie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #94a3b8;
}

.email-content-professionele-zakelijke-comunicatie {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.email-text-professionele-zakelijke-comunicatie {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.email-description-professionele-zakelijke-comunicatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #cbd5e1;
}

.email-structure-professionele-zakelijke-comunicatie {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.structure-item-professionele-zakelijke-comunicatie {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid #2563eb;
}

.item-title-professionele-zakelijke-comunicatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.item-text-professionele-zakelijke-comunicatie {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #94a3b8;
}

.email-image-professionele-zakelijke-comunicatie {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.email-img-professionele-zakelijke-comunicatie {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .email-content-professionele-zakelijke-comunicatie {
    flex-direction: column;
  }

  .email-text-professionele-zakelijke-comunicatie,
  .email-image-professionele-zakelijke-comunicatie {
    flex: 1 1 100%;
  }
}

.common-errors-section-professionele-zakelijke-comunicatie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.errors-header-professionele-zakelijke-comunicatie {
  text-align: center;
  margin-bottom: 3rem;
}

.errors-tag-professionele-zakelijke-comunicatie {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.errors-title-professionele-zakelijke-comunicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  font-family: 'Merriweather', serif;
}

.errors-content-professionele-zakelijke-comunicatie {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.errors-text-professionele-zakelijke-comunicatie {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.errors-description-professionele-zakelijke-comunicatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
}

.quote-professionele-zakelijke-comunicatie {
  padding: 2rem;
  border-left: 4px solid #2563eb;
  background: #f1f5f9;
  border-radius: 8px;
  font-style: italic;
}

.quote-text-professionele-zakelijke-comunicatie {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: #1e293b;
  margin-bottom: 1rem;
  font-family: 'Merriweather', serif;
}

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

.errors-image-professionele-zakelijke-comunicatie {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.errors-img-professionele-zakelijke-comunicatie {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .errors-content-professionele-zakelijke-comunicatie {
    flex-direction: column;
  }

  .errors-text-professionele-zakelijke-comunicatie,
  .errors-image-professionele-zakelijke-comunicatie {
    flex: 1 1 100%;
  }
}

.conclusion-section-professionele-zakelijke-comunicatie {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.conclusion-content-professionele-zakelijke-comunicatie {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.conclusion-title-professionele-zakelijke-comunicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  font-family: 'Merriweather', serif;
}

.conclusion-text-professionele-zakelijke-comunicatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #cbd5e1;
}

.conclusion-cta-professionele-zakelijke-comunicatie {
  margin-top: 1rem;
}

.btn-primary-professionele-zakelijke-comunicatie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #2563eb;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary-professionele-zakelijke-comunicatie:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.related-posts-section-professionele-zakelijke-comunicatie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.related-header-professionele-zakelijke-comunicatie {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-professionele-zakelijke-comunicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  font-family: 'Merriweather', serif;
  margin-bottom: 1rem;
}

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

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

.related-card-professionele-zakelijke-comunicatie {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.related-card-professionele-zakelijke-comunicatie:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.related-card-image-professionele-zakelijke-comunicatie {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-content-professionele-zakelijke-comunicatie {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-professionele-zakelijke-comunicatie {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  font-family: 'Merriweather', serif;
  line-height: 1.3;
}

.related-card-text-professionele-zakelijke-comunicatie {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
  flex: 1;
}

.related-card-link-professionele-zakelijke-comunicatie {
  display: inline-flex;
  align-items: center;
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  align-self: flex-start;
  font-size: 0.9375rem;
}

.related-card-link-professionele-zakelijke-comunicatie:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

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

.disclaimer-section-professionele-zakelijke-comunicatie {
  background: #0f172a;
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-content-professionele-zakelijke-comunicatie {
  max-width: 700px;
  margin: 0 auto;
}

.disclaimer-title-professionele-zakelijke-comunicatie {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.disclaimer-text-professionele-zakelijke-comunicatie {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.7;
  color: #94a3b8;
}

@media (max-width: 768px) {
  .container {
    padding-left: clamp(1rem, 5vw, 1.5rem);
    padding-right: clamp(1rem, 5vw, 1.5rem);
  }

  .hero-section-professionele-zakelijke-comunicatie,
  .introduction-section-professionele-zakelijke-comunicatie,
  .structure-section-professionele-zakelijke-comunicatie,
  .formality-section-professionele-zakelijke-comunicatie,
  .email-section-professionele-zakelijke-comunicatie,
  .common-errors-section-professionele-zakelijke-comunicatie,
  .conclusion-section-professionele-zakelijke-comunicatie,
  .related-posts-section-professionele-zakelijke-comunicatie {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }
}

@media (max-width: 480px) {
  .hero-content-professionele-zakelijke-comunicatie,
  .introduction-content-professionele-zakelijke-comunicatie,
  .structure-content-professionele-zakelijke-comunicatie,
  .formality-content-professionele-zakelijke-comunicatie,
  .email-content-professionele-zakelijke-comunicatie,
  .errors-content-professionele-zakelijke-comunicatie {
    gap: 1.5rem;
  }

  .breadcrumbs-professionele-zakelijke-comunicatie {
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
  }
}

.main-professionele-zakelijke-communicatie a:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.btn-primary-professionele-zakelijke-comunicatie:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.main-academische-essay-onderzoeksvaardigheden {
  width: 100%;
  display: block;
}

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

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

.breadcrumbs-academische-essay-onderzoeksvaardigheden {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-academische-essay-onderzoeksvaardigheden {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-academische-essay-onderzoeksvaardigheden:hover {
  color: #0284c7;
  text-decoration: underline;
}

.breadcrumb-separator-academische-essay-onderzoeksvaardigheden {
  color: #64748b;
}

.breadcrumb-current-academische-essay-onderzoeksvaardigheden {
  color: #cbd5e1;
}

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

.hero-text-wrapper-academische-essay-onderzoeksvaardigheden {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

.hero-subtitle-academische-essay-onderzoeksvaardigheden {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
}

.hero-meta-academische-essay-onderzoeksvaardigheden {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1rem);
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.meta-badge-academische-essay-onderzoeksvaardigheden {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem clamp(0.75rem, 1.5vw, 1rem);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: #94a3b8;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.meta-badge-academische-essay-onderzoeksvaardigheden i {
  color: #38bdf8;
  font-size: 0.875em;
}

.hero-image-wrapper-academische-essay-onderzoeksvaardigheden {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-academische-essay-onderzoeksvaardigheden {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .hero-content-academische-essay-onderzoeksvaardigheden {
    flex-direction: column;
  }

  .hero-text-wrapper-academische-essay-onderzoeksvaardigheden,
  .hero-image-wrapper-academische-essay-onderzoeksvaardigheden {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-academische-essay-onderzoeksvaardigheden {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.introduction-section-academische-essay-onderzoeksvaardigheden {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

.introduction-text-academische-essay-onderzoeksvaardigheden {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.introduction-title-academische-essay-onderzoeksvaardigheden {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.introduction-paragraph-academische-essay-onderzoeksvaardigheden {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.introduction-image-wrapper-academische-essay-onderzoeksvaardigheden {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.introduction-image-element-academische-essay-onderzoeksvaardigheden {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .introduction-content-academische-essay-onderzoeksvaardigheden {
    flex-direction: column;
  }

  .introduction-text-academische-essay-onderzoeksvaardigheden,
  .introduction-image-wrapper-academische-essay-onderzoeksvaardigheden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.structure-section-academische-essay-onderzoeksvaardigheden {
  background: #0d1520;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.structure-header-academische-essay-onderzoeksvaardigheden {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.structure-title-academische-essay-onderzoeksvaardigheden {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

.structure-subtitle-academische-essay-onderzoeksvaardigheden {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
}

.structure-steps-academische-essay-onderzoeksvaardigheden {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.structure-step-academische-essay-onderzoeksvaardigheden {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid #38bdf8;
  align-items: flex-start;
}

.structure-step-number-academische-essay-onderzoeksvaardigheden {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #38bdf8;
  flex-shrink: 0;
  min-width: 60px;
}

.structure-step-content-academische-essay-onderzoeksvaardigheden {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.structure-step-title-academische-essay-onderzoeksvaardigheden {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
}

.structure-step-text-academische-essay-onderzoeksvaardigheden {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .structure-step-academische-essay-onderzoeksvaardigheden {
    flex-direction: column;
    gap: 1rem;
  }

  .structure-step-number-academische-essay-onderzoeksvaardigheden {
    min-width: auto;
  }
}

.research-section-academische-essay-onderzoeksvaardigheden {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.research-content-academische-essay-onderzoeksvaardigheden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.research-image-academische-essay-onderzoeksvaardigheden {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.research-image-element-academische-essay-onderzoeksvaardigheden {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.research-text-academische-essay-onderzoeksvaardigheden {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.research-title-academische-essay-onderzoeksvaardigheden {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.research-paragraph-academische-essay-onderzoeksvaardigheden {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .research-content-academische-essay-onderzoeksvaardigheden {
    flex-direction: column;
  }

  .research-image-academische-essay-onderzoeksvaardigheden,
  .research-text-academische-essay-onderzoeksvaardigheden {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.writing-section-academische-essay-onderzoeksvaardigheden {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.writing-header-academische-essay-onderzoeksvaardigheden {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.writing-title-academische-essay-onderzoeksvaardigheden {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

.writing-subtitle-academische-essay-onderzoeksvaardigheden {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
}

.writing-cards-academische-essay-onderzoeksvaardigheden {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.writing-card-academische-essay-onderzoeksvaardigheden {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.writing-card-academische-essay-onderzoeksvaardigheden:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.writing-card-icon-academische-essay-onderzoeksvaardigheden {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dbeafe;
  border-radius: 10px;
  color: #0284c7;
  font-size: 1.5rem;
}

.writing-card-title-academische-essay-onderzoeksvaardigheden {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
}

.writing-card-text-academische-essay-onderzoeksvaardigheden {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
}

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

.style-section-academische-essay-onderzoeksvaardigheden {
  background: #0f172a;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.style-content-academische-essay-onderzoeksvaardigheden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.style-text-academische-essay-onderzoeksvaardigheden {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.style-title-academische-essay-onderzoeksvaardigheden {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.style-paragraph-academische-essay-onderzoeksvaardigheden {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.style-image-academische-essay-onderzoeksvaardigheden {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.style-image-element-academische-essay-onderzoeksvaardigheden {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .style-content-academische-essay-onderzoeksvaardigheden {
    flex-direction: column;
  }

  .style-text-academische-essay-onderzoeksvaardigheden,
  .style-image-academische-essay-onderzoeksvaardigheden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tips-section-academische-essay-onderzoeksvaardigheden {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.tips-header-academische-essay-onderzoeksvaardigheden {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.tips-title-academische-essay-onderzoeksvaardigheden {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tips-subtitle-academische-essay-onderzoeksvaardigheden {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
}

.featured-quote-academische-essay-onderzoeksvaardigheden {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #38bdf8;
  background: #ffffff;
  margin: clamp(2rem, 4vw, 3rem) 0;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.quote-text-academische-essay-onderzoeksvaardigheden {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

.tips-list-academische-essay-onderzoeksvaardigheden {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.tips-item-academische-essay-onderzoeksvaardigheden {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-top: 3px solid #38bdf8;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.tips-item-title-academische-essay-onderzoeksvaardigheden {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.tips-item-text-academische-essay-onderzoeksvaardigheden {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.7;
}

.conclusion-section-academische-essay-onderzoeksvaardigheden {
  background: #0d1520;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

.conclusion-title-academische-essay-onderzoeksvaardigheden {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.conclusion-text-academische-essay-onderzoeksvaardigheden {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.conclusion-cta-academische-essay-onderzoeksvaardigheden {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 12px;
  text-align: center;
  margin-top: 1rem;
}

.conclusion-cta-title-academische-essay-onderzoeksvaardigheden {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.conclusion-cta-text-academische-essay-onderzoeksvaardigheden {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  margin-bottom: 1.5rem;
}

.btn-primary-academische-essay-onderzoeksvaardigheden {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #38bdf8;
  color: #0f172a;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary-academische-essay-onderzoeksvaardigheden:hover {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(2, 132, 199, 0.3);
}

.disclaimer-section-academische-essay-onderzoeksvaardigheden {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

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

.disclaimer-content-academische-essay-onderzoeksvaardigheden {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-academische-essay-onderzoeksvaardigheden {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.disclaimer-text-academische-essay-onderzoeksvaardigheden {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.7;
}

.related-section-academische-essay-onderzoeksvaardigheden {
  background: #0f172a;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.related-header-academische-essay-onderzoeksvaardigheden {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-academische-essay-onderzoeksvaardigheden {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

.related-subtitle-academische-essay-onderzoeksvaardigheden {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
}

.related-cards-academische-essay-onderzoeksvaardigheden {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-academische-essay-onderzoeksvaardigheden {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-academische-essay-onderzoeksvaardigheden:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.related-card-image-academische-essay-onderzoeksvaardigheden {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.related-card-image-element-academische-essay-onderzoeksvaardigheden {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-academische-essay-onderzoeksvaardigheden {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-academische-essay-onderzoeksvaardigheden {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  line-height: 1.6;
}

.related-card-link-academische-essay-onderzoeksvaardigheden {
  color: #38bdf8;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
  margin-top: auto;
}

.related-card-link-academische-essay-onderzoeksvaardigheden:hover {
  color: #0284c7;
  text-decoration: underline;
}

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

@media (max-width: 480px) {
  .breadcrumbs-academische-essay-onderzoeksvaardigheden {
    font-size: 0.7rem;
    gap: 0.25rem;
  }

  .structure-step-academische-essay-onderzoeksvaardigheden,
  .tips-item-academische-essay-onderzoeksvaardigheden {
    padding: 1rem;
  }
}

@media (min-width: 1024px) {
  .hero-section-academische-essay-onderzoeksvaardigheden,
  .introduction-section-academische-essay-onderzoeksvaardigheden,
  .structure-section-academische-essay-onderzoeksvaardigheden,
  .research-section-academische-essay-onderzoeksvaardigheden,
  .writing-section-academische-essay-onderzoeksvaardigheden,
  .style-section-academische-essay-onderzoeksvaardigheden,
  .tips-section-academische-essay-onderzoeksvaardigheden,
  .conclusion-section-academische-essay-onderzoeksvaardigheden,
  .disclaimer-section-academische-essay-onderzoeksvaardigheden,
  .related-section-academische-essay-onderzoeksvaardigheden {
    padding-top: clamp(5rem, 8vw, 6rem);
    padding-bottom: clamp(5rem, 8vw, 6rem);
  }
}

:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 2px;
}

a:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 2px;
}

.btn-primary-academische-essay-onderzoeksvaardigheden:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.main-geavanceerde-bewerkings-verfijningsvaardigheden {
  width: 100%;
  font-family: var(--font-body);
  line-height: 1.6;
}

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

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

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

.hero-text-block-geavanceerde-bewerkings-verfijningsvaardigheden {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-geavanceerde-bewerkings-verfijningsvaardigheden {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-geavanceerde-bewerkings-verfijningsvaardigheden {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-dark-secondary);
  margin-bottom: 2rem;
  line-height: 1.4;
}

.hero-meta-geavanceerde-bewerkings-verfijningsvaardigheden {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.meta-badge-geavanceerde-bewerkings-verfijningsvaardigheden {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text-dark-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-geavanceerde-bewerkings-verfijningsvaardigheden i {
  color: var(--color-secondary);
  font-size: 0.95rem;
}

.hero-image-geavanceerde-bewerkings-verfijningsvaardigheden {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-content-geavanceerde-bewerkings-verfijningsvaardigheden {
    flex-direction: column;
  }

  .hero-text-block-geavanceerde-bewerkings-verfijningsvaardigheden,
  .hero-image-block-geavanceerde-bewerkings-verfijningsvaardigheden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.intro-text-geavanceerde-bewerkings-verfijningsvaardigheden {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-geavanceerde-bewerkings-verfijningsvaardigheden {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-geavanceerde-bewerkings-verfijningsvaardigheden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-geavanceerde-bewerkings-verfijningsvaardigheden {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-light-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.intro-image-img-geavanceerde-bewerkings-verfijningsvaardigheden {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .intro-content-geavanceerde-bewerkings-verfijningsvaardigheden {
    flex-direction: column;
  }

  .intro-text-geavanceerde-bewerkings-verfijningsvaardigheden,
  .intro-image-geavanceerde-bewerkings-verfijningsvaardigheden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.core-techniques-section-geavanceerde-bewerkings-verfijningsvaardigheden {
  background: var(--color-bg-dark-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.section-header-geavanceerde-bewerkings-verfijningsvaardigheden {
  text-align: center;
  margin-bottom: 3rem;
}

.core-techniques-title-geavanceerde-bewerkings-verfijningsvaardigheden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.core-techniques-subtitle-geavanceerde-bewerkings-verfijningsvaardigheden {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.techniques-content-geavanceerde-bewerkings-verfijningsvaardigheden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.techniques-text-geavanceerde-bewerkings-verfijningsvaardigheden {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-image-geavanceerde-bewerkings-verfijningsvaardigheden {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-paragraph-geavanceerde-bewerkings-verfijningsvaardigheden {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-dark-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.techniques-image-img-geavanceerde-bewerkings-verfijningsvaardigheden {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .techniques-content-geavanceerde-bewerkings-verfijningsvaardigheden {
    flex-direction: column;
  }

  .techniques-text-geavanceerde-bewerkings-verfijningsvaardigheden,
  .techniques-image-geavanceerde-bewerkings-verfijningsvaardigheden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.clarity-content-geavanceerde-bewerkings-verfijningsvaardigheden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.clarity-image-geavanceerde-bewerkings-verfijningsvaardigheden {
  flex: 1 1 50%;
  max-width: 50%;
}

.clarity-text-geavanceerde-bewerkings-verfijningsvaardigheden {
  flex: 1 1 50%;
  max-width: 50%;
}

.clarity-image-img-geavanceerde-bewerkings-verfijningsvaardigheden {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.clarity-title-geavanceerde-bewerkings-verfijningsvaardigheden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.clarity-paragraph-geavanceerde-bewerkings-verfijningsvaardigheden {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-light-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.clarity-highlight-geavanceerde-bewerkings-verfijningsvaardigheden {
  color: var(--color-primary);
  font-weight: 600;
}

.clarity-box-geavanceerde-bewerkings-verfijningsvaardigheden {
  background: rgba(37, 99, 235, 0.08);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.clarity-box-text-geavanceerde-bewerkings-verfijningsvaardigheden {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-light-primary);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .clarity-content-geavanceerde-bewerkings-verfijningsvaardigheden {
    flex-direction: column;
  }

  .clarity-image-geavanceerde-bewerkings-verfijningsvaardigheden,
  .clarity-text-geavanceerde-bewerkings-verfijningsvaardigheden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.advanced-strategies-section-geavanceerde-bewerkings-verfijningsvaardigheden {
  background: var(--color-bg-dark-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.advanced-strategies-title-geavanceerde-bewerkings-verfijningsvaardigheden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 3rem;
  line-height: 1.2;
}

.strategies-grid-geavanceerde-bewerkings-verfijningsvaardigheden {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.strategy-card-geavanceerde-bewerkings-verfijningsvaardigheden {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strategy-card-geavanceerde-bewerkings-verfijningsvaardigheden:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.strategy-icon-geavanceerde-bewerkings-verfijningsvaardigheden {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-secondary);
  font-size: 1.5rem;
}

.strategy-card-title-geavanceerde-bewerkings-verfijningsvaardigheden {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  line-height: 1.3;
}

.strategy-card-text-geavanceerde-bewerkings-verfijningsvaardigheden {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  margin: 0;
}

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

.tools-section-geavanceerde-bewerkings-verfijningsvaardigheden {
  background: var(--color-bg-light-tertiary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.tools-content-geavanceerde-bewerkings-verfijningsvaardigheden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.tools-text-geavanceerde-bewerkings-verfijningsvaardigheden {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-image-geavanceerde-bewerkings-verfijningsvaardigheden {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-title-geavanceerde-bewerkings-verfijningsvaardigheden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.tools-paragraph-geavanceerde-bewerkings-verfijningsvaardigheden {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-light-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.tools-list-geavanceerde-bewerkings-verfijningsvaardigheden {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tools-item-geavanceerde-bewerkings-verfijningsvaardigheden {
  padding: 1.5rem;
  background: #ffffff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.tools-item-label-geavanceerde-bewerkings-verfijningsvaardigheden {
  display: block;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-light-primary);
  margin-bottom: 0.5rem;
}

.tools-item-text-geavanceerde-bewerkings-verfijningsvaardigheden {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-light-secondary);
  margin: 0;
  line-height: 1.6;
}

.tools-image-img-geavanceerde-bewerkings-verfijningsvaardigheden {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .tools-content-geavanceerde-bewerkings-verfijningsvaardigheden {
    flex-direction: column;
  }

  .tools-text-geavanceerde-bewerkings-verfijningsvaardigheden,
  .tools-image-geavanceerde-bewerkings-verfijningsvaardigheden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-geavanceerde-bewerkings-verfijningsvaardigheden {
  background: var(--color-bg-dark-tertiary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-content-geavanceerde-bewerkings-verfijningsvaardigheden {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-geavanceerde-bewerkings-verfijningsvaardigheden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  text-align: center;
  line-height: 1.2;
}

.conclusion-quote-geavanceerde-bewerkings-verfijningsvaardigheden {
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--color-secondary);
  background: rgba(245, 158, 11, 0.05);
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

.conclusion-quote-text-geavanceerde-bewerkings-verfijningsvaardigheden {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: var(--color-text-dark-primary);
  margin: 0;
  line-height: 1.6;
}

.conclusion-paragraph-geavanceerde-bewerkings-verfijningsvaardigheden {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
}

.conclusion-cta-geavanceerde-bewerkings-verfijningsvaardigheden {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.btn-primary-geavanceerde-bewerkings-verfijningsvaardigheden {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  transition: all 0.3s ease;
  text-decoration: none;
}

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

.disclaimer-section-geavanceerde-bewerkings-verfijningsvaardigheden {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  border-top: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-geavanceerde-bewerkings-verfijningsvaardigheden {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border-left: 4px solid #06b6d4;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-icon-geavanceerde-bewerkings-verfijningsvaardigheden {
  color: #06b6d4;
  font-size: 1.5rem;
}

.disclaimer-title-geavanceerde-bewerkings-verfijningsvaardigheden {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  margin: 0;
}

.disclaimer-text-geavanceerde-bewerkings-verfijningsvaardigheden {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-light-secondary);
  margin: 0;
  line-height: 1.7;
}

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

.related-title-geavanceerde-bewerkings-verfijningsvaardigheden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.related-subtitle-geavanceerde-bewerkings-verfijningsvaardigheden {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.5;
}

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

.related-card-geavanceerde-bewerkings-verfijningsvaardigheden {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-geavanceerde-bewerkings-verfijningsvaardigheden:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.related-card-image-geavanceerde-bewerkings-verfijningsvaardigheden {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.related-card-content-geavanceerde-bewerkings-verfijningsvaardigheden {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  flex: 1;
}

.related-card-title-geavanceerde-bewerkings-verfijningsvaardigheden {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  line-height: 1.3;
}

.related-card-description-geavanceerde-bewerkings-verfijningsvaardigheden {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  flex: 1;
}

.related-card-link-geavanceerde-bewerkings-verfijningsvaardigheden {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-link-geavanceerde-bewerkings-verfijningsvaardigheden:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

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

@media (min-width: 768px) {
  .hero-section-geavanceerde-bewerkings-verfijningsvaardigheden,
  .intro-section-geavanceerde-bewerkings-verfijningsvaardigheden,
  .core-techniques-section-geavanceerde-bewerkings-verfijningsvaardigheden,
  .clarity-section-geavanceerde-bewerkings-verfijningsvaardigheden,
  .advanced-strategies-section-geavanceerde-bewerkings-verfijningsvaardigheden,
  .tools-section-geavanceerde-bewerkings-verfijningsvaardigheden,
  .conclusion-section-geavanceerde-bewerkings-verfijningsvaardigheden,
  .disclaimer-section-geavanceerde-bewerkings-verfijningsvaardigheden,
  .related-section-geavanceerde-bewerkings-verfijningsvaardigheden {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

@media (max-width: 480px) {
  .hero-meta-geavanceerde-bewerkings-verfijningsvaardigheden {
    flex-direction: column;
  }

  .meta-badge-geavanceerde-bewerkings-verfijningsvaardigheden {
    width: 100%;
    justify-content: flex-start;
  }

  .tools-list-geavanceerde-bewerkings-verfijningsvaardigheden {
    gap: 1rem;
  }

  .tools-item-geavanceerde-bewerkings-verfijningsvaardigheden {
    padding: 1rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn-primary-geavanceerde-bewerkings-verfijningsvaardigheden:focus-visible,
.related-card-link-geavanceerde-bewerkings-verfijningsvaardigheden:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.main-woordenschat-idiomatische-uitdrukkingen {
  width: 100%;
  overflow: hidden;
}

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

.hero-section-woordenschat-idiomatische-uitdrukkingen {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.breadcrumbs-woordenschat-idiomatische-uitdrukkingen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
}

.breadcrumbs-woordenschat-idiomatische-uitdrukkingen a {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-woordenschat-idiomatische-uitdrukkingen a:hover {
  color: #06b6d4;
  text-decoration: underline;
}

.breadcrumbs-woordenschat-idiomatische-uitdrukkingen span {
  color: #64748b;
}

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

.hero-text-block-woordenschat-idiomatische-uitdrukkingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-woordenschat-idiomatische-uitdrukkingen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-woordenschat-idiomatische-uitdrukkingen {
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-meta-woordenschat-idiomatische-uitdrukkingen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.meta-badge-woordenschat-idiomatische-uitdrukkingen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #38bdf8;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.meta-badge-woordenschat-idiomatische-uitdrukkingen i {
  font-size: 0.9em;
}

.hero-image-woordenschat-idiomatische-uitdrukkingen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-content-woordenschat-idiomatische-uitdrukkingen {
    flex-direction: column;
  }
  
  .hero-text-block-woordenschat-idiomatische-uitdrukkingen,
  .hero-image-block-woordenschat-idiomatische-uitdrukkingen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.introduction-section-woordenschat-idiomatische-uitdrukkingen {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.introduction-text-woordenschat-idiomatische-uitdrukkingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-woordenschat-idiomatische-uitdrukkingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-woordenschat-idiomatische-uitdrukkingen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.introduction-description-woordenschat-idiomatische-uitdrukkingen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.introduction-text-woordenschat-idiomatische-uitdrukkingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.introduction-image-img-woordenschat-idiomatische-uitdrukkingen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .introduction-content-woordenschat-idiomatische-uitdrukkingen {
    flex-direction: column;
  }
  
  .introduction-text-woordenschat-idiomatische-uitdrukkingen,
  .introduction-image-woordenschat-idiomatische-uitdrukkingen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-one-woordenschat-idiomatische-uitdrukkingen {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-one-woordenschat-idiomatische-uitdrukkingen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-one-woordenschat-idiomatische-uitdrukkingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-woordenschat-idiomatische-uitdrukkingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-woordenschat-idiomatische-uitdrukkingen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.content-paragraph-one-woordenschat-idiomatische-uitdrukkingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-image-img-one-woordenschat-idiomatische-uitdrukkingen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .content-wrapper-one-woordenschat-idiomatische-uitdrukkingen {
    flex-direction: column;
  }
  
  .content-text-one-woordenschat-idiomatische-uitdrukkingen,
  .content-image-one-woordenschat-idiomatische-uitdrukkingen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-two-woordenschat-idiomatische-uitdrukkingen {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-two-woordenschat-idiomatische-uitdrukkingen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-image-two-woordenschat-idiomatische-uitdrukkingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-text-two-woordenschat-idiomatische-uitdrukkingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-woordenschat-idiomatische-uitdrukkingen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.content-paragraph-two-woordenschat-idiomatische-uitdrukkingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-image-img-two-woordenschat-idiomatische-uitdrukkingen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .content-wrapper-two-woordenschat-idiomatische-uitdrukkingen {
    flex-direction: column-reverse;
  }
  
  .content-image-two-woordenschat-idiomatische-uitdrukkingen,
  .content-text-two-woordenschat-idiomatische-uitdrukkingen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-three-woordenschat-idiomatische-uitdrukkingen {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-three-woordenschat-idiomatische-uitdrukkingen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-three-woordenschat-idiomatische-uitdrukkingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-three-woordenschat-idiomatische-uitdrukkingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-three-woordenschat-idiomatische-uitdrukkingen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.practice-highlight-woordenschat-idiomatische-uitdrukkingen {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #2563eb;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.practice-intro-woordenschat-idiomatische-uitdrukkingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.practice-items-woordenschat-idiomatische-uitdrukkingen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.practice-item-woordenschat-idiomatische-uitdrukkingen {
  padding: 1rem;
  background: #f1f5f9;
  border-radius: 8px;
}

.practice-item-title-woordenschat-idiomatische-uitdrukkingen {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.practice-item-text-woordenschat-idiomatische-uitdrukkingen {
  font-size: clamp(0.825rem, 1vw + 0.4rem, 0.95rem);
  color: #475569;
  line-height: 1.6;
}

.content-image-img-three-woordenschat-idiomatische-uitdrukkingen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .content-wrapper-three-woordenschat-idiomatische-uitdrukkingen {
    flex-direction: column;
  }
  
  .content-text-three-woordenschat-idiomatische-uitdrukkingen,
  .content-image-three-woordenschat-idiomatische-uitdrukkingen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-four-woordenschat-idiomatische-uitdrukkingen {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-four-woordenschat-idiomatische-uitdrukkingen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-image-four-woordenschat-idiomatische-uitdrukkingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-text-four-woordenschat-idiomatische-uitdrukkingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-four-woordenschat-idiomatische-uitdrukkingen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.content-paragraph-four-woordenschat-idiomatische-uitdrukkingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-image-img-four-woordenschat-idiomatische-uitdrukkingen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .content-wrapper-four-woordenschat-idiomatische-uitdrukkingen {
    flex-direction: column-reverse;
  }
  
  .content-image-four-woordenschat-idiomatische-uitdrukkingen,
  .content-text-four-woordenschat-idiomatische-uitdrukkingen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-woordenschat-idiomatische-uitdrukkingen {
  background: #0f172a;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-woordenschat-idiomatische-uitdrukkingen {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-woordenschat-idiomatische-uitdrukkingen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-woordenschat-idiomatische-uitdrukkingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.8;
  text-align: center;
}

.conclusion-quote-woordenschat-idiomatische-uitdrukkingen {
  margin: 2rem 0;
}

.quote-block-woordenschat-idiomatische-uitdrukkingen {
  padding: 2rem 2.5rem;
  border-left: 4px solid #2563eb;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 8px;
  margin: 2rem 0;
}

.quote-text-woordenschat-idiomatische-uitdrukkingen {
  font-size: clamp(1.05rem, 2vw + 0.5rem, 1.25rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.quote-author-woordenschat-idiomatische-uitdrukkingen {
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: #94a3b8;
  font-style: normal;
}

.conclusion-final-woordenschat-idiomatische-uitdrukkingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.8;
  text-align: center;
  margin: 1.5rem 0;
}

.cta-button-woordenschat-idiomatische-uitdrukkingen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #2563eb;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 1.5rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.cta-button-woordenschat-idiomatische-uitdrukkingen:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.related-section-woordenschat-idiomatische-uitdrukkingen {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-woordenschat-idiomatische-uitdrukkingen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-woordenschat-idiomatische-uitdrukkingen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.related-subtitle-woordenschat-idiomatische-uitdrukkingen {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: #64748b;
  line-height: 1.6;
}

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

.related-card-woordenschat-idiomatische-uitdrukkingen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-woordenschat-idiomatische-uitdrukkingen:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.related-card-image-woordenschat-idiomatische-uitdrukkingen {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.related-card-content-woordenschat-idiomatische-uitdrukkingen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.related-card-title-woordenschat-idiomatische-uitdrukkingen {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-text-woordenschat-idiomatische-uitdrukkingen {
  font-size: clamp(0.825rem, 1vw + 0.4rem, 0.95rem);
  color: #64748b;
  line-height: 1.6;
}

.related-card-link-woordenschat-idiomatische-uitdrukkingen {
  display: inline-block;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  font-size: clamp(0.825rem, 1vw, 0.95rem);
  transition: color 0.2s ease;
  margin-top: 0.5rem;
}

.related-card-link-woordenschat-idiomatische-uitdrukkingen:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

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

.disclaimer-section-woordenschat-idiomatische-uitdrukkingen {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.disclaimer-content-woordenschat-idiomatische-uitdrukkingen {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-woordenschat-idiomatische-uitdrukkingen {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-woordenschat-idiomatische-uitdrukkingen {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.925rem);
  color: #64748b;
  line-height: 1.7;
  text-align: justify;
}

@media (min-width: 768px) {
  .hero-section-woordenschat-idiomatische-uitdrukkingen {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
  
  .introduction-section-woordenschat-idiomatische-uitdrukkingen,
  .content-section-one-woordenschat-idiomatische-uitdrukkingen,
  .content-section-two-woordenschat-idiomatische-uitdrukkingen,
  .content-section-three-woordenschat-idiomatische-uitdrukkingen,
  .content-section-four-woordenschat-idiomatische-uitdrukkingen {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
  
  .conclusion-section-woordenschat-idiomatische-uitdrukkingen {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
  
  .related-section-woordenschat-idiomatische-uitdrukkingen {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-woordenschat-idiomatische-uitdrukkingen {
    font-size: 0.7rem;
    gap: 0.25rem;
  }
  
  .hero-meta-woordenschat-idiomatische-uitdrukkingen {
    gap: 0.5rem;
  }
  
  .meta-badge-woordenschat-idiomatische-uitdrukkingen {
    padding: 0.4rem 0.75rem;
    font-size: 0.7rem;
  }
  
  .practice-highlight-woordenschat-idiomatische-uitdrukkingen {
    padding: 1rem 1.25rem;
  }
}

:root {
  --color-bg-dark-primary: #0f172a;
  --color-bg-dark-secondary: #1e293b;
  --color-bg-dark-tertiary: #0d1520;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #cbd5e1;
  --color-text-dark-muted: #94a3b8;
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #64748b;
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #f59e0b;
  --color-secondary-hover: #d97706;
  --color-accent-light: #dbeafe;
  --color-accent-dark: #1e40af;
  --font-heading: 'Merriweather', 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.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  line-height: 1.6;
}

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

.dutch-writing-academy-about {
  width: 100%;
}

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

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

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

.heritage-hero-title-about {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.15;
  font-family: var(--font-heading);
}

.heritage-hero-subtitle-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-dark-secondary);
  max-width: 700px;
  line-height: 1.6;
}

.heritage-hero-image-about {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: 2rem;
}

.heritage-hero-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.heritage-stat-item-about {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.heritage-stat-number-about {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
  font-family: var(--font-heading);
}

.heritage-stat-label-about {
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .heritage-hero-section-about {
    padding: 5rem 0;
  }

  .heritage-hero-stats-about {
    gap: 3rem;
  }
}

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

.mission-pillar-section-about {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.mission-section-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

.mission-section-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.mission-section-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
}

.mission-section-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.125rem);
  color: var(--color-text-light-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.mission-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2rem;
}

.mission-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.mission-card-icon-about {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.mission-card-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-light-primary);
  font-family: var(--font-heading);
}

.mission-card-text-about {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-light-muted);
}

@media (min-width: 768px) {
  .mission-pillar-section-about {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .mission-pillar-section-about {
    padding: 6rem 0;
  }

  .mission-card-about {
    flex: 1 1 300px;
  }
}

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

.expertise-journey-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.expertise-intro-about {
  max-width: 750px;
}

.expertise-intro-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
}

.expertise-intro-text-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.25rem, 1.0625rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
}

.expertise-pathway-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.expertise-step-about {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-secondary);
}

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

.expertise-step-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.expertise-step-title-about {
  font-size: clamp(1.0625rem, 2vw + 0.25rem, 1.25rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  font-family: var(--font-heading);
}

.expertise-step-text-about {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-dark-muted);
}

.expertise-journey-image-about {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .expertise-journey-section-about {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .expertise-journey-section-about {
    padding: 6rem 0;
  }

  .expertise-step-about {
    padding: 2rem;
  }
}

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

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

.methodology-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

.methodology-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.methodology-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
}

.methodology-description-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.25rem, 1.0625rem);
  color: var(--color-text-light-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.methodology-highlights-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-top: 2rem;
}

.methodology-highlight-about {
  flex: 1 1 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--color-primary);
}

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

.methodology-highlight-title-about {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.methodology-highlight-text-about {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-light-muted);
}

.methodology-visual-about {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .methodology-showcase-section-about {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .methodology-showcase-section-about {
    padding: 6rem 0;
  }
}

.commitment-values-section-about {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.commitment-values-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.commitment-intro-block-about {
  max-width: 800px;
}

.commitment-section-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.commitment-intro-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
}

.commitment-intro-text-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.25rem, 1.0625rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
}

.commitment-values-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 1.5rem;
}

.commitment-value-item-about {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.commitment-value-icon-about {
  font-size: 2rem;
  color: var(--color-secondary);
}

.commitment-value-name-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-dark-primary);
  font-family: var(--font-heading);
}

.commitment-value-description-about {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-dark-muted);
}

.commitment-closing-about {
  padding: 2rem;
  background: rgba(245, 158, 11, 0.08);
  border-left: 3px solid var(--color-secondary);
  border-radius: var(--radius-lg);
  margin-top: 1rem;
}

.commitment-closing-text-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.25rem, 1.0625rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .commitment-values-section-about {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .commitment-values-section-about {
    padding: 6rem 0;
  }
}

.disclosure-notice-section-about {
  background: var(--color-bg-light-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
}

.disclosure-notice-content-about {
  max-width: 900px;
}

.disclosure-notice-title-about {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
}

.disclosure-notice-icon-about {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.disclosure-notice-text-about {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-light-secondary);
}

@media (min-width: 768px) {
  .disclosure-notice-section-about {
    padding: 3rem 0;
  }
}

@media (max-width: 768px) {
  .heritage-hero-stats-about {
    flex-direction: column;
    gap: 1.5rem;
  }

  .mission-card-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .methodology-highlight-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .commitment-value-item-about {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.legal-docs {
  width: 100%;
  background: var(--color-bg-light-primary);
  color: var(--color-text-light-primary);
  font-family: var(--font-body);
}

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

.legal-docs-hero {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-light-secondary);
  overflow: hidden;
}

.legal-docs-hero .container {
  max-width: 900px;
}

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

.legal-docs-hero h1 {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.25rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-text-light-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-hero-meta {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-muted);
  font-style: italic;
}

.legal-docs-content {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-light-primary);
  overflow: hidden;
}

.legal-docs-content .container {
  max-width: 900px;
}

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

.legal-docs-section {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.legal-docs-section h2 {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-text-light-primary);
  line-height: 1.3;
  padding-top: 0.5rem;
  border-top: 3px solid var(--color-primary);
  padding-top: 1rem;
}

.legal-docs-section h3 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--color-text-light-primary);
  line-height: 1.3;
  margin-top: 1rem;
}

.legal-docs-section p {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-light-secondary);
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-left: 1.5rem;
  margin-top: 0.75rem;
}

.legal-docs-section li {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-light-secondary);
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-section li::marker {
  color: var(--color-primary);
}

.legal-docs-intro {
  background: var(--color-bg-light-secondary);
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.legal-docs-intro p {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-light-secondary);
  line-height: 1.8;
  margin: 0;
}

.legal-docs-contact {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-light-secondary);
  overflow: hidden;
}

.legal-docs-contact .container {
  max-width: 900px;
}

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

.legal-docs-contact h2 {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-text-light-primary);
  line-height: 1.3;
  border-top: 3px solid var(--color-primary);
  padding-top: 1rem;
}

.legal-docs-contact p {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-light-secondary);
  line-height: 1.8;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.legal-docs-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-docs-contact-item strong {
  font-weight: 600;
  color: var(--color-text-light-primary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
}

.legal-docs-contact-item p {
  margin: 0;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
}

@media (min-width: 768px) {
  .legal-docs-hero {
    padding: 5rem 0;
  }

  .legal-docs-content {
    padding: 5rem 0;
  }

  .legal-docs-contact {
    padding: 5rem 0;
  }

  .legal-docs-section h2 {
    margin-bottom: 0.5rem;
  }
}

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

  .legal-docs-content {
    padding: 6rem 0;
  }

  .legal-docs-contact {
    padding: 6rem 0;
  }
}

.thank-you-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-dark-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 600px;
  margin: 0 auto;
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(60px, 15vw, 100px);
  height: clamp(60px, 15vw, 100px);
  background: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-2xl);
  animation: scale-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon i {
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--color-primary);
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.thank-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-dark-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
  letter-spacing: -0.5px;
}

.thank-lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw + 0.25rem, 1.25rem);
  line-height: 1.6;
  color: var(--color-primary);
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-description,
.thank-next-steps {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  color: var(--color-text-dark-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.8125rem, 0.8vw + 0.5rem, 1rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  transition: var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  margin-top: clamp(0.5rem, 2vw, 1.5rem);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    min-height: auto;
  }

  .thank-content {
    gap: clamp(2rem, 5vw, 3rem);
  }

  .thank-section h1 {
    font-size: clamp(2.25rem, 5vw + 0.5rem, 3.5rem);
  }

  .thank-lead {
    font-size: clamp(1.125rem, 2.5vw + 0.25rem, 1.375rem);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(4rem, 10vw, 6rem) 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: 2.5rem;
  }

  .thank-section h1 {
    font-size: clamp(2.5rem, 5vw + 0.5rem, 3.75rem);
    letter-spacing: -1px;
  }

  .thank-lead {
    font-size: clamp(1.25rem, 2.5vw + 0.25rem, 1.5rem);
  }

  .btn-primary {
    margin-top: 1.5rem;
  }

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

@media (min-width: 1440px) {
  .thank-content {
    gap: 3rem;
  }

  .thank-section h1 {
    font-size: 3.75rem;
  }

  .thank-lead {
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-icon {
    animation: none;
    opacity: 1;
    transform: scale(1);
  }

  .btn-primary:hover {
    transform: none;
  }

  .btn-primary:active {
    transform: none;
  }
}

.main.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  background: var(--color-bg-dark-primary);
  padding: clamp(2rem, 10vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.error-code-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.error-code {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: 1;
  letter-spacing: -0.05em;
  text-shadow: 0 4px 20px rgba(37, 99, 235, 0.2);
}

.error-decoration {
  font-size: clamp(2rem, 8vw, 4rem);
  color: var(--color-secondary);
  animation: float 3s ease-in-out infinite;
  margin-left: 1rem;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.error-title {
  font-size: clamp(1.75rem, 5vw, 3rem);
  color: var(--color-text-dark-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-subtitle {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: var(--color-text-dark-secondary);
  font-family: var(--font-body);
  line-height: 1.6;
  max-width: 600px;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-message {
  font-size: clamp(0.9375rem, 1.5vw + 0.25rem, 1.125rem);
  color: var(--color-text-dark-muted);
  font-family: var(--font-body);
  line-height: 1.7;
  max-width: 650px;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
}

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

.btn-primary:active {
  transform: translateY(0);
}

.btn-large {
  padding: clamp(1rem, 2.5vw, 1.375rem) clamp(2rem, 5vw, 3rem);
  font-size: clamp(1rem, 2vw, 1.125rem);
  margin-top: clamp(0.5rem, 2vw, 1rem);
}

.error-suggestions {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 550px;
  width: 100%;
}

.suggestions-label {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-secondary);
  font-weight: 600;
  font-family: var(--font-body);
  margin: 0 0 clamp(0.75rem, 1.5vw, 1rem) 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.suggestions-list li {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-dark-secondary);
  font-family: var(--font-body);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.suggestions-list i {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: var(--color-secondary);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .error-section {
    padding: clamp(2rem, 8vw, 5rem) 0;
    min-height: 100vh;
  }

  .error-code-wrapper {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .error-decoration {
    animation: float 4s ease-in-out infinite;
  }

  .error-content {
    gap: clamp(2rem, 4vw, 3rem);
  }

  .error-suggestions {
    margin-top: clamp(2rem, 4vw, 3rem);
  }

  .suggestions-list {
    gap: clamp(1rem, 2vw, 1.25rem);
  }
}

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

  .error-code {
    text-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
  }

  .error-content {
    gap: clamp(2.5rem, 5vw, 3.5rem);
  }

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

@media (min-width: 1440px) {
  .error-section {
    padding: 6rem 0;
  }

  .error-decoration {
    animation: float 4.5s ease-in-out infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-decoration {
    animation: none;
  }

  .btn-primary:hover {
    transform: none;
  }

  .error-code {
    text-shadow: 0 2px 10px rgba(37, 99, 235, 0.15);
  }
}

@media (prefers-color-scheme: dark) {
  .error-section {
    background: var(--color-bg-dark-primary);
  }
}

.main-professionele-zakelijke-communicatie {
  width: 100%;
  background: #ffffff;
}

.hero-section-professionele-zakelijke-communicatie {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
}

.hero-content-professionele-zakelijke-communicatie {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-direction: column;
}

.hero-text-wrapper-professionele-zakelijke-communicatie {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.hero-title-professionele-zakelijke-communicatie {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  font-family: 'Merriweather', serif;
}

.hero-subtitle-professionele-zakelijke-communicatie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.5;
  color: #cbd5e1;
  font-weight: 400;
}

.article-meta-professionele-zakelijke-communicatie {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-professionele-zakelijke-communicatie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #bfdbfe;
}

.meta-badge-professionele-zakelijke-communicatie i {
  color: #2563eb;
  font-size: 0.875rem;
}

.hero-image-wrapper-professionele-zakelijke-communicatie {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-professionele-zakelijke-communicatie {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.breadcrumbs-professionele-zakelijke-communicatie {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-professionele-zakelijke-communicatie a {
  color: #38bdf8;
  transition: color 0.2s ease;
}

.breadcrumbs-professionele-zakelijke-communicatie a:hover {
  color: #7dd3fc;
  text-decoration: underline;
}

.breadcrumb-separator-professionele-zakelijke-communicatie {
  color: #64748b;
}

.breadcrumb-current-professionele-zakelijke-communicatie {
  color: #cbd5e1;
}

@media (max-width: 768px) {
  .hero-content-professionele-zakelijke-communicatie {
    flex-direction: column;
  }

  .hero-text-wrapper-professionele-zakelijke-communicatie,
  .hero-image-wrapper-professionele-zakelijke-communicatie {
    flex: 1 1 100%;
  }
}

.introduction-section-professionele-zakelijke-communicatie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

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

.introduction-text-professionele-zakelijke-communicatie {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.introduction-title-professionele-zakelijke-communicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  font-family: 'Merriweather', serif;
}

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

.introduction-image-professionele-zakelijke-communicatie {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.introduction-img-professionele-zakelijke-communicatie {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .introduction-content-professionele-zakelijke-communicatie {
    flex-direction: column;
  }

  .introduction-text-professionele-zakelijke-communicatie,
  .introduction-image-professionele-zakelijke-communicatie {
    flex: 1 1 100%;
  }
}

.structure-section-professionele-zakelijke-communicatie {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.structure-header-professionele-zakelijke-communicatie {
  text-align: center;
  margin-bottom: 3rem;
}

.structure-tag-professionele-zakelijke-communicatie {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.15);
  color: #38bdf8;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.structure-title-professionele-zakelijke-communicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  font-family: 'Merriweather', serif;
  margin-bottom: 1rem;
}

.structure-content-professionele-zakelijke-communicatie {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.structure-text-professionele-zakelijke-communicatie {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.structure-description-professionele-zakelijke-communicatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #cbd5e1;
}

.structure-list-professionele-zakelijke-communicatie {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.list-item-professionele-zakelijke-communicatie {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.list-number-professionele-zakelijke-communicatie {
  font-size: 2rem;
  font-weight: 800;
  color: #2563eb;
  flex-shrink: 0;
  line-height: 1;
}

.list-content-professionele-zakelijke-communicatie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.list-title-professionele-zakelijke-communicatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.list-text-professionele-zakelijke-communicatie {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #94a3b8;
}

.structure-image-professionele-zakelijke-communicatie {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.structure-img-professionele-zakelijke-communicatie {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .structure-content-professionele-zakelijke-communicatie {
    flex-direction: column;
  }

  .structure-text-professionele-zakelijke-communicatie,
  .structure-image-professionele-zakelijke-communicatie {
    flex: 1 1 100%;
  }
}

.formality-section-professionele-zakelijke-communicatie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.formality-content-professionele-zakelijke-communicatie {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.formality-image-professionele-zakelijke-communicatie {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.formality-img-professionele-zakelijke-communicatie {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.formality-text-professionele-zakelijke-communicatie {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.formality-title-professionele-zakelijke-communicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  font-family: 'Merriweather', serif;
}

.formality-description-professionele-zakelijke-communicatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
}

.formality-highlight-professionele-zakelijke-communicatie {
  padding: 1.5rem;
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  border-radius: 8px;
}

.highlight-text-professionele-zakelijke-communicatie {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #1e40af;
}

@media (max-width: 768px) {
  .formality-content-professionele-zakelijke-communicatie {
    flex-direction: column-reverse;
  }

  .formality-image-professionele-zakelijke-communicatie,
  .formality-text-professionele-zakelijke-communicatie {
    flex: 1 1 100%;
  }
}

.email-section-professionele-zakelijke-communicatie {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.email-header-professionele-zakelijke-communicatie {
  text-align: center;
  margin-bottom: 3rem;
}

.email-title-professionele-zakelijke-communicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  font-family: 'Merriweather', serif;
  margin-bottom: 1rem;
}

.email-subtitle-professionele-zakelijke-communicatie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #94a3b8;
}

.email-content-professionele-zakelijke-communicatie {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.email-text-professionele-zakelijke-communicatie {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.email-description-professionele-zakelijke-communicatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #cbd5e1;
}

.email-structure-professionele-zakelijke-communicatie {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.structure-item-professionele-zakelijke-communicatie {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid #2563eb;
}

.item-title-professionele-zakelijke-communicatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.item-text-professionele-zakelijke-communicatie {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #94a3b8;
}

.email-image-professionele-zakelijke-communicatie {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.email-img-professionele-zakelijke-communicatie {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .email-content-professionele-zakelijke-communicatie {
    flex-direction: column;
  }

  .email-text-professionele-zakelijke-communicatie,
  .email-image-professionele-zakelijke-communicatie {
    flex: 1 1 100%;
  }
}

.common-errors-section-professionele-zakelijke-communicatie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.errors-header-professionele-zakelijke-communicatie {
  text-align: center;
  margin-bottom: 3rem;
}

.errors-tag-professionele-zakelijke-communicatie {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.errors-title-professionele-zakelijke-communicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  font-family: 'Merriweather', serif;
}

.errors-content-professionele-zakelijke-communicatie {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.errors-text-professionele-zakelijke-communicatie {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.errors-description-professionele-zakelijke-communicatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
}

.quote-professionele-zakelijke-communicatie {
  padding: 2rem;
  border-left: 4px solid #2563eb;
  background: #f1f5f9;
  border-radius: 8px;
  font-style: italic;
}

.quote-text-professionele-zakelijke-communicatie {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: #1e293b;
  margin-bottom: 1rem;
  font-family: 'Merriweather', serif;
}

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

.errors-image-professionele-zakelijke-communicatie {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.errors-img-professionele-zakelijke-communicatie {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .errors-content-professionele-zakelijke-communicatie {
    flex-direction: column;
  }

  .errors-text-professionele-zakelijke-communicatie,
  .errors-image-professionele-zakelijke-communicatie {
    flex: 1 1 100%;
  }
}

.conclusion-section-professionele-zakelijke-communicatie {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.conclusion-content-professionele-zakelijke-communicatie {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.conclusion-title-professionele-zakelijke-communicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  font-family: 'Merriweather', serif;
}

.conclusion-text-professionele-zakelijke-communicatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #cbd5e1;
}

.conclusion-cta-professionele-zakelijke-communicatie {
  margin-top: 1rem;
}

.btn-primary-professionele-zakelijke-communicatie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #2563eb;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary-professionele-zakelijke-communicatie:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.related-posts-section-professionele-zakelijke-communicatie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.related-header-professionele-zakelijke-communicatie {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-professionele-zakelijke-communicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  font-family: 'Merriweather', serif;
  margin-bottom: 1rem;
}

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

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

.related-card-professionele-zakelijke-communicatie {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.related-card-professionele-zakelijke-communicatie:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.related-card-image-professionele-zakelijke-communicatie {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-content-professionele-zakelijke-communicatie {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-professionele-zakelijke-communicatie {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  font-family: 'Merriweather', serif;
  line-height: 1.3;
}

.related-card-text-professionele-zakelijke-communicatie {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
  flex: 1;
}

.related-card-link-professionele-zakelijke-communicatie {
  display: inline-flex;
  align-items: center;
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  align-self: flex-start;
  font-size: 0.9375rem;
}

.related-card-link-professionele-zakelijke-communicatie:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

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

.disclaimer-section-professionele-zakelijke-communicatie {
  background: #0f172a;
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-content-professionele-zakelijke-communicatie {
  max-width: 700px;
  margin: 0 auto;
}

.disclaimer-title-professionele-zakelijke-communicatie {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.disclaimer-text-professionele-zakelijke-communicatie {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.7;
  color: #94a3b8;
}

@media (max-width: 768px) {
  .container {
    padding-left: clamp(1rem, 5vw, 1.5rem);
    padding-right: clamp(1rem, 5vw, 1.5rem);
  }

  .hero-section-professionele-zakelijke-communicatie,
  .introduction-section-professionele-zakelijke-communicatie,
  .structure-section-professionele-zakelijke-communicatie,
  .formality-section-professionele-zakelijke-communicatie,
  .email-section-professionele-zakelijke-communicatie,
  .common-errors-section-professionele-zakelijke-communicatie,
  .conclusion-section-professionele-zakelijke-communicatie,
  .related-posts-section-professionele-zakelijke-communicatie {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }
}

@media (max-width: 480px) {
  .hero-content-professionele-zakelijke-communicatie,
  .introduction-content-professionele-zakelijke-communicatie,
  .structure-content-professionele-zakelijke-communicatie,
  .formality-content-professionele-zakelijke-communicatie,
  .email-content-professionele-zakelijke-communicatie,
  .errors-content-professionele-zakelijke-communicatie {
    gap: 1.5rem;
  }

  .breadcrumbs-professionele-zakelijke-communicatie {
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
  }
}

.main-professionele-zakelijke-communicatie a:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.btn-primary-professionele-zakelijke-communicatie:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}