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

:root {
  
  
  
  
  --color-bg-dark-primary: #0f172a;
  --color-bg-dark-secondary: #1e293b;
  --color-bg-dark-tertiary: #0d1726;
  --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: #14b8a6;
  --color-primary-light: #2dd4bf;
  --color-primary-dark: #0d9488;
  --color-secondary: #06b6d4;
  --color-accent-warm: #f59e0b;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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);
  letter-spacing: -0.02em;
}

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

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);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

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

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

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

.btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

.btn-outline-light:hover {
  background: rgba(0, 0, 0, 0.05);
}

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

.flex-col {
  display: flex;
  flex-direction: column;
}

.gap-sm {
  gap: var(--space-sm);
}

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

.gap-lg {
  gap: var(--space-lg);
}

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

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

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

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

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

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

.hero-section .hero-description {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  max-width: 550px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  margin-top: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-cta-group {
    flex-direction: row;
  }
}

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

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

.features-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

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

.features-section .features-intro {
  color: var(--color-text-light-secondary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
}

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

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

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

.feature-icon {
  width: clamp(2.5rem, 5vw, 3.5rem);
  height: clamp(2.5rem, 5vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

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

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

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

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 4rem);
  align-items: center;
}

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

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

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

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

.about-list {
  list-style: none;
}

.about-list li {
  display: flex;
  gap: var(--space-md);
  color: var(--color-text-dark-secondary);
  padding: var(--space-sm) 0;
  align-items: flex-start;
}

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

.about-image {
  width: 100%;
  height: auto;
  min-height: 300px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(20, 184, 166, 0.2);
}

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

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

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

.courses-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

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

.courses-section .courses-intro {
  color: var(--color-text-light-secondary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
}

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

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

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

.course-level {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: rgba(20, 184, 166, 0.15);
  color: var(--color-primary-dark);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
}

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

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

.course-duration {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-light-muted);
  font-size: 0.875rem;
  margin-top: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.course-duration i {
  color: var(--color-primary);
  font-size: 1rem;
}

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

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

.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

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

.testimonials-section .testimonials-intro {
  color: var(--color-text-dark-secondary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 184, 166, 0.15);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
}

.testimonial-stars i {
  color: var(--color-accent-warm);
  font-size: 0.875rem;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(20, 184, 166, 0.1);
}

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

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

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

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

.pricing-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

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

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

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

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(20, 184, 166, 0.2);
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: var(--color-primary);
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(20, 184, 166, 0.2);
}

@media (max-width: 768px) {
  .pricing-card.featured {
    transform: scale(1);
  }
}

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

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

.pricing-price {
  color: var(--color-primary);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
}

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

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

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

.pricing-cta {
  margin-top: auto;
}

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

.faq-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 4rem);
  max-width: 700px;
  margin: 0 auto;
}

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

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

.faq-section .faq-intro {
  color: var(--color-text-dark-secondary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
}

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

.faq-item {
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: rgba(20, 184, 166, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--color-text-dark-primary);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
}

.faq-question:hover {
  background: rgba(20, 184, 166, 0.1);
}

.faq-question i {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-primary);
}

.faq-item.active .faq-question {
  background: rgba(20, 184, 166, 0.15);
}

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

.faq-answer {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

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

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

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

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

.cta-section p {
  color: var(--color-text-light-secondary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  width: 100%;
}

@media (min-width: 768px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
}

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

.form-group label {
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: clamp(0.625rem, 1.5vw, 1rem);
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
}

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

.contact-section .form-group input,
.contact-section .form-group textarea,
.contact-section .form-group select {
  background: var(--color-bg-light-primary);
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: var(--color-text-light-primary);
}

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

.contact-section .form-group label {
  color: var(--color-text-light-primary);
}

.dark-form .form-group input,
.dark-form .form-group textarea,
.dark-form .form-group select {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-dark-primary);
}

.dark-form .form-group input::placeholder,
.dark-form .form-group textarea::placeholder {
  color: var(--color-text-dark-muted);
}

.dark-form .form-group input:focus,
.dark-form .form-group textarea:focus,
.dark-form .form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.dark-form .form-group label {
  color: var(--color-text-dark-primary);
}

button[type="submit"] {
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  width: 100%;
}

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

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

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

@media (max-width: 767px) {
  .container {
    padding: 0 1rem;
  }
  
  h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }
  
  .hero-cta-group {
    width: 100%;
  }
  
  .hero-cta-group .btn {
    width: 100%;
  }
}

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

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

.feature-card,
.course-card,
.pricing-card,
.testimonial-card {
  animation: fadeInUp 0.6s ease-out;
}

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

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

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

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

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

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

.px-md {
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-dark);
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700&display=swap');

  .header-lingua-pro {
    position: static;
    background: var(--color-bg-dark-primary);
    border-bottom: 1px solid rgba(203, 213, 225, 0.1);
    z-index: 100;
    width: 100%;
  }

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

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

  .header-lingua-pro-brand:hover {
    opacity: 0.85;
  }

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

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

  .header-lingua-pro-desktop-nav {
    display: none;
    align-items: center;
    gap: 2.5rem;
    flex: 1;
    margin-left: 2rem;
  }

  .header-lingua-pro-nav-link {
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1vw, 0.95rem);
    font-weight: 500;
    color: var(--color-text-dark-secondary);
    text-decoration: none;
    transition: color 300ms ease;
    position: relative;
  }

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

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

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

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

  .header-lingua-pro-cta-button:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
  }

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

  .header-lingua-pro-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--color-text-dark-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 300ms ease;
    flex-shrink: 0;
  }

  .header-lingua-pro-mobile-toggle:hover {
    color: var(--color-primary);
  }

  .header-lingua-pro-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-dark-primary);
    border-right: 1px solid rgba(203, 213, 225, 0.1);
    display: flex;
    flex-direction: column;
    padding-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    overflow-y: auto;
  }

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

  .header-lingua-pro-mobile-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(203, 213, 225, 0.1);
  }

  .header-lingua-pro-mobile-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--color-text-dark-primary);
    font-size: 1.375rem;
    cursor: pointer;
    transition: color 300ms ease;
  }

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

  .header-lingua-pro-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 0;
    flex: 1;
  }

  .header-lingua-pro-mobile-link {
    padding: 1rem 1.5rem;
    color: var(--color-text-dark-secondary);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    transition: all 300ms ease;
    border-left: 3px solid transparent;
  }

  .header-lingua-pro-mobile-link:hover {
    background: rgba(20, 184, 166, 0.08);
    color: var(--color-primary);
    border-left-color: var(--color-primary);
    padding-left: 1.75rem;
  }

  .header-lingua-pro-mobile-cta {
    margin: 1.5rem;
    padding: 1rem 1.5rem;
    background: var(--color-primary);
    color: var(--color-bg-dark-primary);
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 300ms ease;
  }

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

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

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

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

    .header-lingua-pro-cta-button {
      display: inline-block;
    }

    .header-lingua-pro-container {
      gap: 3rem;
    }

    .header-lingua-pro-nav-link {
      font-size: 0.95rem;
    }
  }

  @media (min-width: 1024px) {
    .header-lingua-pro-container {
      padding: 1.25rem 2rem;
      gap: 4rem;
    }

    .header-lingua-pro-logo-img {
      width: 48px;
      height: 48px;
    }

    .header-lingua-pro-logo-text {
      font-size: 1.375rem;
    }

    .header-lingua-pro-desktop-nav {
      gap: 3rem;
      margin-left: 3rem;
    }

    .header-lingua-pro-nav-link {
      font-size: 0.975rem;
    }

    .header-lingua-pro-cta-button {
      padding: 0.875rem 1.75rem;
      font-size: 0.95rem;
    }
  }

  @media (max-width: 767px) {
    .header-lingua-pro-mobile-menu {
      width: 100%;
    }
  }

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

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

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

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

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

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

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);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

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

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

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

.btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

.btn-outline-light:hover {
  background: rgba(0, 0, 0, 0.05);
}

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

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

.hero-gradient-mesh {
  position: absolute;
  bottom: 5%;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-1 {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(34, 211, 238, 0.08);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 2;
  pointer-events: none;
}

.hero-floating-accent-2 {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
}

.hero-corner-orb {
  position: absolute;
  top: 5%;
  left: 10%;
  width: 150px;
  height: 150px;
  background: rgba(203, 213, 225, 0.06);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.hero-line-element {
  position: absolute;
  bottom: 20%;
  right: 20%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

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

.hero-section-description {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  max-width: 550px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  margin-top: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-cta-group {
    flex-direction: row;
  }
}

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

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

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

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
  opacity: 0.9;
}

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

.benefits-shape-1 {
  position: absolute;
  top: 10%;
  left: -50px;
  width: 300px;
  height: 300px;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 35% 65% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.benefits-shape-2 {
  position: absolute;
  bottom: 5%;
  right: -80px;
  width: 350px;
  height: 350px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 65% 35% 40% 60% / 60% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.benefits-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.05) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.benefits-accent {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 120px;
  height: 120px;
  background: rgba(34, 211, 238, 0.07);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.benefits-line {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.benefits-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.benefits-section-intro {
  color: var(--color-text-light-secondary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
}

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

.benefit-card {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 184, 166, 0.1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(20, 184, 166, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.benefit-card-title {
  color: var(--color-text-light-primary);
}

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

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

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

.methodology-deco-1 {
  position: absolute;
  top: 5%;
  right: -60px;
  width: 280px;
  height: 280px;
  background: rgba(203, 213, 225, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.methodology-deco-2 {
  position: absolute;
  bottom: 10%;
  left: -50px;
  width: 250px;
  height: 250px;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.methodology-deco-3 {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 120px;
  height: 120px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.methodology-deco-4 {
  position: absolute;
  bottom: 25%;
  right: 8%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.methodology-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.methodology-tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

.methodology-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 184, 166, 0.15);
  transition: all 0.3s ease;
}

.methodology-step:hover {
  background: rgba(20, 184, 166, 0.1);
  border-color: var(--color-primary);
}

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

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

.methodology-step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-dark-primary);
}

.methodology-step-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-dark-secondary);
}

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

.courses-blob-1 {
  position: absolute;
  top: 10%;
  left: -80px;
  width: 320px;
  height: 320px;
  background: rgba(20, 184, 166, 0.07);
  border-radius: 50% 40% 60% 40% / 40% 50% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.courses-blob-2 {
  position: absolute;
  bottom: 5%;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

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

.courses-line-decoration {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.courses-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

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

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

.courses-section-intro {
  color: var(--color-text-light-secondary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
}

.featured-cards {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
}

.featured-card {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1rem, 3vw, 1.5rem);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 184, 166, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--color-primary);
}

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

.featured-card-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
}

.featured-card-level {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: rgba(20, 184, 166, 0.15);
  color: var(--color-primary-dark);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
}

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

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

.courses-footer {
  text-align: center;
  margin-top: var(--space-lg);
}

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

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

.testimonials-shape-left {
  position: absolute;
  top: 15%;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(203, 213, 225, 0.05);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

.testimonials-shape-right {
  position: absolute;
  bottom: 10%;
  right: -60px;
  width: 280px;
  height: 280px;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.testimonials-glow-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

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

.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.testimonials-section-intro {
  color: var(--color-text-dark-secondary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
}

.testimonial-card {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 184, 166, 0.15);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
}

.testimonial-stars i {
  color: var(--color-accent-warm);
  font-size: 0.875rem;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(20, 184, 166, 0.1);
}

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

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

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

.why-choose-section {
  background: var(--color-bg-light-primary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

.why-choose-deco-1 {
  position: absolute;
  top: 5%;
  left: -50px;
  width: 300px;
  height: 300px;
  background: rgba(20, 184, 166, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.why-choose-deco-2 {
  position: absolute;
  bottom: 10%;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.why-choose-deco-3 {
  position: absolute;
  top: 30%;
  right: 8%;
  width: 150px;
  height: 150px;
  background: rgba(20, 184, 166, 0.07);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.why-choose-deco-4 {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 160px;
  height: 2px;
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.why-choose-text {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.why-choose-section-title {
  color: var(--color-text-light-primary);
}

.why-choose-description {
  color: var(--color-text-light-secondary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

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

.why-choose-item i {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-choose-item-title {
  color: var(--color-text-light-primary);
  font-size: 1.125rem;
  font-weight: 600;
}

.why-choose-item-text {
  color: var(--color-text-light-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.why-choose-visual {
  flex: 1 1 400px;
}

.why-choose-image {
  width: 100%;
  height: auto;
  min-height: 350px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  border: 1px solid rgba(20, 184, 166, 0.15);
}

@media (max-width: 768px) {
  .why-choose-content {
    flex-direction: column;
  }
  
  .why-choose-text,
  .why-choose-visual {
    flex: 1 1 100%;
  }
}

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

.contact-deco-1 {
  position: absolute;
  top: 10%;
  right: -100px;
  width: 350px;
  height: 350px;
  background: rgba(203, 213, 225, 0.04);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.contact-deco-2 {
  position: absolute;
  bottom: 5%;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

.contact-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.05) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

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

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

.contact-section-intro {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  margin-bottom: var(--space-lg);
}

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

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

.form-group-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-dark-primary);
}

.contact-section-input,
.contact-section-textarea {
  padding: clamp(0.625rem, 1.5vw, 1rem);
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text-dark-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-family: var(--font-primary);
  transition: all 0.3s ease;
}

.contact-section-input::placeholder,
.contact-section-textarea::placeholder {
  color: var(--color-text-dark-muted);
}

.contact-section-input:focus,
.contact-section-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

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

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

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

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

.form-privacy-note {
  font-size: 0.75rem;
  color: var(--color-text-dark-muted);
  margin-top: var(--space-sm);
}

.form-privacy-link {
  color: var(--color-primary);
  text-decoration: underline;
}

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

.contact-info-title {
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-lg);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
}

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

.contact-faq-item {
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-md);
}

.contact-faq-question {
  color: var(--color-text-dark-primary);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  margin-bottom: var(--space-sm);
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: var(--color-bg-dark-secondary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
  border-top: 1px solid rgba(20, 184, 166, 0.2);
}

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

.cookie-banner-text {
  color: var(--color-text-dark-secondary);
  margin: 0;
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  flex: 1 1 auto;
}

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

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.5rem clamp(1rem, 2vw, 1.25rem);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

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

.cookie-btn-decline {
  background: transparent;
  color: var(--color-text-dark-primary);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

@media (min-width: 768px) {
  .hero-section {
    padding: clamp(5rem, 12vw, 9rem) 0;
  }
  
  .benefits-section,
  .methodology-section,
  .courses-section,
  .testimonials-section,
  .why-choose-section,
  .contact-section {
    padding: clamp(5rem, 12vw, 9rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: clamp(6rem, 15vw, 10rem) 0;
  }
  
  .benefits-section,
  .methodology-section,
  .courses-section,
  .testimonials-section,
  .why-choose-section,
  .contact-section {
    padding: clamp(6rem, 15vw, 10rem) 0;
  }
}

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

.benefit-card,
.featured-card,
.testimonial-card {
  animation: fadeInUp 0.6s ease-out;
}

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

    .footer {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  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(2.5rem, 6vw, 4rem);
}

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

.footer-about-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
}

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

.footer-navigation {
  display: flex;
  flex-direction: column;
  gap: clamp(0.875rem, 2vw, 1.25rem);
}

.footer-nav-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.3px;
}

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

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

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

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

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

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

.footer-contact-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.3px;
}

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

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

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: clamp(0.875rem, 2vw, 1.25rem);
}

.footer-legal-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.3px;
}

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

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

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

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

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

.footer-bottom {
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-copyright {
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.9375rem);
  color: var(--color-text-dark-muted);
  margin: 0;
  text-align: center;
}

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

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

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

@media (min-width: 1024px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(3rem, 6vw, 4.5rem);
  }

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

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

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

  .footer-legal {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
  }

  .footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (min-width: 1440px) {
  .footer-content {
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    gap: 4rem;
  }

  .footer-about {
    grid-row: 1 / 3;
  }

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

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

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

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

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

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

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

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

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

.hero-decorative-gradient-mesh-dutch-professionals {
  position: absolute;
  top: 20%;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-decorative-shape-1-dutch-professionals {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-decorative-accent-orb-dutch-professionals {
  position: absolute;
  bottom: 20%;
  right: 5%;
  width: 150px;
  height: 150px;
  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-dutch-professionals {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-title-dutch-professionals {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 1rem, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 800px;
}

.hero-subtitle-dutch-professionals {
  color: #cbd5e1;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-description-dutch-professionals {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  max-width: 650px;
  line-height: 1.8;
}

.hero-stats-dutch-professionals {
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-md);
}

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

.stat-number-dutch-professionals {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #14b8a6;
  line-height: 1;
}

.stat-label-dutch-professionals {
  font-size: 0.875rem;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.hero-cta-group-dutch-professionals {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-cta-group-dutch-professionals {
    flex-direction: row;
  }
}

.posts-section-dutch-professionals {
  background: #ffffff;
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.posts-header-dutch-professionals {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.posts-title-dutch-professionals {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-md);
}

.posts-intro-dutch-professionals {
  color: #475569;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

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

.card-dutch-professionals {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 184, 166, 0.15);
  flex: 1 1 300px;
  max-width: 380px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-dutch-professionals:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: #14b8a6;
}

.card-image-dutch-professionals {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
}

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

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

.card-link-dutch-professionals {
  color: #14b8a6;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  transition: all 0.3s ease;
}

.card-link-dutch-professionals:hover {
  color: #0d9488;
  gap: 0.75rem;
}

.learning-path-section-dutch-professionals {
  background: #1e293b;
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.learning-path-decorative-1-dutch-professionals {
  position: absolute;
  top: 15%;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.learning-path-decorative-2-dutch-professionals {
  position: absolute;
  bottom: 5%;
  left: -50px;
  width: 280px;
  height: 280px;
  background: rgba(20, 184, 166, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

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

.learning-path-title-dutch-professionals {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-md);
}

.learning-path-subtitle-dutch-professionals {
  color: #cbd5e1;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

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

.learning-path-step-dutch-professionals {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 184, 166, 0.2);
  transition: all 0.3s ease;
}

.learning-path-step-dutch-professionals:hover {
  background: rgba(20, 184, 166, 0.08);
  border-color: #14b8a6;
}

.learning-path-step-number-dutch-professionals {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #14b8a6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
  text-align: center;
}

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

.learning-path-step-title-dutch-professionals {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
}

.learning-path-step-text-dutch-professionals {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

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

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

.why-dutch-decorative-shape-dutch-professionals {
  position: absolute;
  bottom: 5%;
  right: -50px;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

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

.why-dutch-title-dutch-professionals {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-md);
}

.why-dutch-intro-dutch-professionals {
  color: #475569;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

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

.benefit-item-dutch-professionals {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 184, 166, 0.15);
  flex: 1 1 280px;
  max-width: 350px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item-dutch-professionals:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: #14b8a6;
}

.benefit-icon-dutch-professionals {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-lg);
  color: #14b8a6;
  font-size: 1.5rem;
}

.benefit-title-dutch-professionals {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
}

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

.cta-final-section-dutch-professionals {
  background: #0f172a;
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-final-decorative-accent-dutch-professionals {
  position: absolute;
  top: 50%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
  transform: translateY(-50%);
}

.cta-final-content-dutch-professionals {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.cta-final-title-dutch-professionals {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
}

.cta-final-text-dutch-professionals {
  color: #cbd5e1;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.cta-final-buttons-dutch-professionals {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  width: 100%;
}

@media (min-width: 768px) {
  .cta-final-buttons-dutch-professionals {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero-cta-group-dutch-professionals .btn,
  .cta-final-buttons-dutch-professionals .btn {
    width: 100%;
  }
  
  .learning-path-step-dutch-professionals {
    flex-direction: column;
    text-align: center;
  }
  
  .learning-path-step-number-dutch-professionals {
    min-width: auto;
  }
}

@media (min-width: 768px) {
  .hero-section-dutch-professionals {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
  
  .posts-section-dutch-professionals {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
  
  .learning-path-section-dutch-professionals {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
  
  .why-dutch-section-dutch-professionals {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
  
  .cta-final-section-dutch-professionals {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .card-dutch-professionals {
    flex: 1 1 320px;
  }
  
  .benefit-item-dutch-professionals {
    flex: 1 1 300px;
  }
}

.card-link-dutch-professionals:focus-visible,
.btn:focus-visible {
  outline: 2px solid #14b8a6;
  outline-offset: 3px;
}

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

.main-effectieve-telefoonbesprekingen {
  width: 100%;
  background: #ffffff;
}

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

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

.breadcrumb-link-effectieve-telefoonbesprekingen {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-effectieve-telefoonbesprekingen:hover {
  color: #14b8a6;
}

.breadcrumb-separator-effectieve-telefoonbesprekingen {
  color: #64748b;
}

.breadcrumb-current-effectieve-telefoonbesprekingen {
  color: #14b8a6;
  font-weight: 600;
}

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

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

.hero-subtitle-effectieve-telefoonbesprekingen {
  color: #a5b4fc;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  max-width: 700px;
}

.hero-description-effectieve-telefoonbesprekingen {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  max-width: 650px;
}

.hero-meta-effectieve-telefoonbesprekingen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
  margin: 1rem 0;
}

.meta-badge-effectieve-telefoonbesprekingen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  color: #99f6e4;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  font-weight: 500;
}

.meta-badge-effectieve-telefoonbesprekingen i {
  color: #14b8a6;
  font-size: 0.875rem;
}

.hero-image-effectieve-telefoonbesprekingen {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  border: 2px solid rgba(20, 184, 166, 0.2);
}

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

.introduction-wrapper-effectieve-telefoonbesprekingen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

@media (max-width: 1023px) {
  .introduction-wrapper-effectieve-telefoonbesprekingen {
    flex-direction: column;
  }
}

.introduction-text-effectieve-telefoonbesprekingen {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
}

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

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

.introduction-quote-effectieve-telefoonbesprekingen {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #14b8a6;
  background: #f8fafc;
  margin: 1rem 0;
  border-radius: 8px;
}

.quote-text-effectieve-telefoonbesprekingen {
  color: #1e293b;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.quote-author-effectieve-telefoonbesprekingen {
  color: #64748b;
  font-size: 0.875rem;
  font-style: normal;
  display: block;
}

.introduction-image-effectieve-telefoonbesprekingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-effectieve-telefoonbesprekingen img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  border: 2px solid rgba(20, 184, 166, 0.1);
}

@media (max-width: 1023px) {
  .introduction-text-effectieve-telefoonbesprekingen,
  .introduction-image-effectieve-telefoonbesprekingen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.fundamentals-section-effectieve-telefoonbesprekingen {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.fundamentals-header-effectieve-telefoonbesprekingen {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

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

.fundamentals-subtitle-effectieve-telefoonbesprekingen {
  color: #a5b4fc;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
}

.fundamentals-wrapper-effectieve-telefoonbesprekingen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

@media (max-width: 1023px) {
  .fundamentals-wrapper-effectieve-telefoonbesprekingen {
    flex-direction: column;
  }
}

.fundamentals-text-effectieve-telefoonbesprekingen {
  flex: 1 1 50%;
}

.fundamentals-subheading-effectieve-telefoonbesprekingen {
  color: #ffffff;
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.fundamentals-list-effectieve-telefoonbesprekingen {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.list-item-effectieve-telefoonbesprekingen {
  display: flex;
  gap: 1rem;
  color: #cbd5e1;
}

.list-number-effectieve-telefoonbesprekingen {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.2);
  color: #14b8a6;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
}

.list-content-effectieve-telefoonbesprekingen {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.list-title-effectieve-telefoonbesprekingen {
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
}

.list-description-effectieve-telefoonbesprekingen {
  color: #a5b4fc;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.fundamentals-image-effectieve-telefoonbesprekingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.fundamentals-image-effectieve-telefoonbesprekingen img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  border: 2px solid rgba(20, 184, 166, 0.2);
}

@media (max-width: 1023px) {
  .fundamentals-text-effectieve-telefoonbesprekingen,
  .fundamentals-image-effectieve-telefoonbesprekingen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.techniques-section-effectieve-telefoonbesprekingen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.techniques-header-effectieve-telefoonbesprekingen {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

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

.techniques-subtitle-effectieve-telefoonbesprekingen {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
}

.techniques-wrapper-effectieve-telefoonbesprekingen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

@media (max-width: 1023px) {
  .techniques-wrapper-effectieve-telefoonbesprekingen {
    flex-direction: column;
  }
}

.techniques-image-effectieve-telefoonbesprekingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-image-effectieve-telefoonbesprekingen img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  border: 2px solid rgba(20, 184, 166, 0.1);
}

.techniques-text-effectieve-telefoonbesprekingen {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.techniques-subheading-effectieve-telefoonbesprekingen {
  color: #0f172a;
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.technique-card-effectieve-telefoonbesprekingen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.technique-card-title-effectieve-telefoonbesprekingen {
  color: #1e293b;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  font-weight: 700;
}

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

@media (max-width: 1023px) {
  .techniques-text-effectieve-telefoonbesprekingen,
  .techniques-image-effectieve-telefoonbesprekingen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.strategies-section-effectieve-telefoonbesprekingen {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-header-effectieve-telefoonbesprekingen {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

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

.strategies-subtitle-effectieve-telefoonbesprekingen {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
}

.strategies-wrapper-effectieve-telefoonbesprekingen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

@media (max-width: 1023px) {
  .strategies-wrapper-effectieve-telefoonbesprekingen {
    flex-direction: column;
  }
}

.strategies-text-effectieve-telefoonbesprekingen {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.strategies-subheading-effectieve-telefoonbesprekingen {
  color: #ffffff;
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
}

.strategies-paragraph-effectieve-telefoonbesprekingen {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.strategies-image-effectieve-telefoonbesprekingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-image-effectieve-telefoonbesprekingen img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  border: 2px solid rgba(20, 184, 166, 0.2);
}

@media (max-width: 1023px) {
  .strategies-text-effectieve-telefoonbesprekingen,
  .strategies-image-effectieve-telefoonbesprekingen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tips-section-effectieve-telefoonbesprekingen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-header-effectieve-telefoonbesprekingen {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

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

.tips-subtitle-effectieve-telefoonbesprekingen {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
}

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

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

.tips-card-effectieve-telefoonbesprekingen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-color: #14b8a6;
}

.tips-card-icon-effectieve-telefoonbesprekingen {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.15);
  color: #14b8a6;
  border-radius: 12px;
  font-size: 1.5rem;
}

.tips-card-title-effectieve-telefoonbesprekingen {
  color: #0f172a;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
}

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

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

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

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

.conclusion-title-effectieve-telefoonbesprekingen {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  text-align: center;
}

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

.conclusion-highlight-effectieve-telefoonbesprekingen {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: rgba(20, 184, 166, 0.15);
  border-left: 4px solid #14b8a6;
  border-radius: 8px;
  color: #a5b4fc;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.highlight-text-effectieve-telefoonbesprekingen {
  color: #14b8a6;
}

.conclusion-cta-effectieve-telefoonbesprekingen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .conclusion-cta-effectieve-telefoonbesprekingen {
    flex-direction: row;
    justify-content: center;
  }
}

.conclusion-btn-effectieve-telefoonbesprekingen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #14b8a6;
  color: #0f172a;
  border-radius: 12px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

.conclusion-btn-effectieve-telefoonbesprekingen:hover {
  background: #2dd4bf;
  transform: translateY(-2px);
}

.conclusion-btn-secondary-effectieve-telefoonbesprekingen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border: 2px solid #14b8a6;
  color: #14b8a6;
  background: transparent;
  border-radius: 12px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

.conclusion-btn-secondary-effectieve-telefoonbesprekingen:hover {
  background: rgba(20, 184, 166, 0.15);
  transform: translateY(-2px);
}

.disclaimer-section-effectieve-telefoonbesprekingen {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-effectieve-telefoonbesprekingen {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
}

.disclaimer-title-effectieve-telefoonbesprekingen {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.disclaimer-title-effectieve-telefoonbesprekingen i {
  color: #06b6d4;
  font-size: 1.25rem;
}

.disclaimer-text-effectieve-telefoonbesprekingen {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.related-section-effectieve-telefoonbesprekingen {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-effectieve-telefoonbesprekingen {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

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

.related-subtitle-effectieve-telefoonbesprekingen {
  color: #a5b4fc;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
}

.related-cards-effectieve-telefoonbesprekingen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-effectieve-telefoonbesprekingen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(20, 184, 166, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(20, 184, 166, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-effectieve-telefoonbesprekingen:hover {
  border-color: #14b8a6;
  background: rgba(20, 184, 166, 0.15);
  transform: translateY(-4px);
}

.related-card-content-effectieve-telefoonbesprekingen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-effectieve-telefoonbesprekingen {
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
}

.related-card-text-effectieve-telefoonbesprekingen {
  color: #a5b4fc;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.related-card-link-effectieve-telefoonbesprekingen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #14b8a6;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  margin-top: 0.5rem;
  transition: all 0.2s ease;
}

.related-card-effectieve-telefoonbesprekingen:hover .related-card-link-effectieve-telefoonbesprekingen {
  gap: 1rem;
  color: #2dd4bf;
}

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

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

  .container {
    padding: 0 1rem;
  }
}

@media (min-width: 768px) {
  .introduction-section-effectieve-telefoonbesprekingen,
  .fundamentals-section-effectieve-telefoonbesprekingen,
  .techniques-section-effectieve-telefoonbesprekingen,
  .strategies-section-effectieve-telefoonbesprekingen,
  .tips-section-effectieve-telefoonbesprekingen,
  .conclusion-section-effectieve-telefoonbesprekingen,
  .disclaimer-section-effectieve-telefoonbesprekingen,
  .related-section-effectieve-telefoonbesprekingen {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

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

.tips-card-effectieve-telefoonbesprekingen,
.related-card-effectieve-telefoonbesprekingen,
.technique-card-effectieve-telefoonbesprekingen {
  animation: fadeInUp 0.6s ease-out;
}

strong {
  font-weight: 700;
}

a {
  color: #14b8a6;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #2dd4bf;
}

.main-zakelijke-vergaderingen-leiden {
  width: 100%;
}

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

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

.breadcrumb-link-zakelijke-vergaderingen-leiden {
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.breadcrumb-link-zakelijke-vergaderingen-leiden:hover {
  color: #38bdf8;
}

.breadcrumb-separator-zakelijke-vergaderingen-leiden {
  color: #475569;
  margin: 0 0.25rem;
}

.breadcrumb-current-zakelijke-vergaderingen-leiden {
  color: #94a3b8;
}

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

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

.hero-title-zakelijke-vergaderingen-leiden {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 800px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-zakelijke-vergaderingen-leiden {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  max-width: 650px;
}

.hero-meta-zakelijke-vergaderingen-leiden {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.meta-badge-zakelijke-vergaderingen-leiden {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  color: #2dd4bf;
}

.meta-badge-zakelijke-vergaderingen-leiden i {
  color: #14b8a6;
}

.hero-image-zakelijke-vergaderingen-leiden {
  width: 100%;
  max-width: 900px;
  margin-top: 2rem;
}

.hero-featured-image-zakelijke-vergaderingen-leiden {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: block;
}

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

.intro-content-zakelijke-vergaderingen-leiden {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .intro-content-zakelijke-vergaderingen-leiden {
    flex-direction: row;
    align-items: center;
  }
}

.intro-text-zakelijke-vergaderingen-leiden {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 1023px) {
  .intro-text-zakelijke-vergaderingen-leiden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-title-zakelijke-vergaderingen-leiden {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

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

.intro-image-zakelijke-vergaderingen-leiden {
  flex: 1 1 50%;
  max-width: 50%;
  width: 100%;
}

@media (max-width: 1023px) {
  .intro-image-zakelijke-vergaderingen-leiden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-visual-zakelijke-vergaderingen-leiden {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.principles-section-zakelijke-vergaderingen-leiden {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.principles-header-zakelijke-vergaderingen-leiden {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-tag-zakelijke-vergaderingen-leiden {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  color: #0d9488;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.principles-title-zakelijke-vergaderingen-leiden {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.principles-subtitle-zakelijke-vergaderingen-leiden {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.principles-grid-zakelijke-vergaderingen-leiden {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.principle-card-zakelijke-vergaderingen-leiden {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(20, 184, 166, 0.1);
  transition: all 0.3s ease;
}

.principle-card-zakelijke-vergaderingen-leiden:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #14b8a6;
}

.principle-number-zakelijke-vergaderingen-leiden {
  color: #14b8a6;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.principle-title-zakelijke-vergaderingen-leiden {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
}

.principle-text-zakelijke-vergaderingen-leiden {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

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

.techniques-section-zakelijke-vergaderingen-leiden {
  background: #0d1726;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.techniques-wrapper-zakelijke-vergaderingen-leiden {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .techniques-wrapper-zakelijke-vergaderingen-leiden {
    flex-direction: row;
    align-items: center;
  }
}

.techniques-text-zakelijke-vergaderingen-leiden {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 1023px) {
  .techniques-text-zakelijke-vergaderingen-leiden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.techniques-title-zakelijke-vergaderingen-leiden {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.techniques-subtitle-zakelijke-vergaderingen-leiden {
  color: #2dd4bf;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-top: 1rem;
}

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

.techniques-image-zakelijke-vergaderingen-leiden {
  flex: 1 1 50%;
  max-width: 50%;
  width: 100%;
}

@media (max-width: 1023px) {
  .techniques-image-zakelijke-vergaderingen-leiden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.techniques-visual-zakelijke-vergaderingen-leiden {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: block;
}

.expressions-section-zakelijke-vergaderingen-leiden {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.expressions-header-zakelijke-vergaderingen-leiden {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.expressions-title-zakelijke-vergaderingen-leiden {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.expressions-intro-zakelijke-vergaderingen-leiden {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.expressions-content-zakelijke-vergaderingen-leiden {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .expressions-content-zakelijke-vergaderingen-leiden {
    flex-direction: row;
    align-items: flex-start;
  }
}

.expressions-list-zakelijke-vergaderingen-leiden {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 1023px) {
  .expressions-list-zakelijke-vergaderingen-leiden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.expression-item-zakelijke-vergaderingen-leiden {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #14b8a6;
}

.expression-context-zakelijke-vergaderingen-leiden {
  color: #0f172a;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
}

.expression-examples-zakelijke-vergaderingen-leiden {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.expression-line-zakelijke-vergaderingen-leiden {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  padding-left: 1rem;
  position: relative;
}

.expression-line-zakelijke-vergaderingen-leiden::before {
  content: "";
  position: absolute;
  left: 0;
  color: #14b8a6;
  font-weight: bold;
}

.expressions-image-zakelijke-vergaderingen-leiden {
  flex: 1 1 50%;
  max-width: 50%;
  width: 100%;
}

@media (max-width: 1023px) {
  .expressions-image-zakelijke-vergaderingen-leiden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.expressions-visual-zakelijke-vergaderingen-leiden {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.challenges-section-zakelijke-vergaderingen-leiden {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.challenges-header-zakelijke-vergaderingen-leiden {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.challenges-title-zakelijke-vergaderingen-leiden {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.challenges-intro-zakelijke-vergaderingen-leiden {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.challenges-list-zakelijke-vergaderingen-leiden {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 750px;
  margin: 0 auto;
}

.challenge-item-zakelijke-vergaderingen-leiden {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.challenge-question-zakelijke-vergaderingen-leiden {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
  border: none;
  width: 100%;
  text-align: left;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: #1e293b;
}

.challenge-question-zakelijke-vergaderingen-leiden:hover {
  background: #f8fafc;
}

.challenge-icon-zakelijke-vergaderingen-leiden {
  color: #14b8a6;
  flex-shrink: 0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.challenge-text-zakelijke-vergaderingen-leiden {
  flex: 1;
}

.challenge-toggle-zakelijke-vergaderingen-leiden {
  color: #14b8a6;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.challenge-item-zakelijke-vergaderingen-leiden[open] .challenge-toggle-zakelijke-vergaderingen-leiden {
  transform: rotate(180deg);
}

.challenge-answer-zakelijke-vergaderingen-leiden {
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #fafbfc;
  border-top: 1px solid #e2e8f0;
}

.challenge-answer-text-zakelijke-vergaderingen-leiden {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.closing-section-zakelijke-vergaderingen-leiden {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.closing-content-zakelijke-vergaderingen-leiden {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.closing-title-zakelijke-vergaderingen-leiden {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  text-align: center;
}

.closing-text-zakelijke-vergaderingen-leiden {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.closing-quote-zakelijke-vergaderingen-leiden {
  padding: 2rem 2.5rem;
  border-left: 4px solid #14b8a6;
  background: rgba(20, 184, 166, 0.08);
  margin: 1rem 0;
  border-radius: 4px;
}

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

.quote-author-zakelijke-vergaderingen-leiden {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-style: normal;
  display: block;
}

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

.disclaimer-content-zakelijke-vergaderingen-leiden {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 750px;
  margin: 0 auto;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-zakelijke-vergaderingen-leiden {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-title-zakelijke-vergaderingen-leiden i {
  color: #f59e0b;
}

.disclaimer-text-zakelijke-vergaderingen-leiden {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

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

.related-header-zakelijke-vergaderingen-leiden {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

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

.related-intro-zakelijke-vergaderingen-leiden {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
}

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

.related-card-zakelijke-vergaderingen-leiden {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.related-card-zakelijke-vergaderingen-leiden:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #14b8a6;
}

.related-card-content-zakelijke-vergaderingen-leiden {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

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

.related-card-text-zakelijke-vergaderingen-leiden {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  flex: 1;
}

.related-card-link-zakelijke-vergaderingen-leiden {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #14b8a6;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.2s ease;
  text-decoration: none;
  margin-top: auto;
}

.related-card-link-zakelijke-vergaderingen-leiden:hover {
  gap: 0.75rem;
  color: #0d9488;
}

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

@media (max-width: 767px) {
  .hero-section-zakelijke-vergaderingen-leiden {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }

  .principles-grid-zakelijke-vergaderingen-leiden {
    flex-direction: column;
  }

  .principle-card-zakelijke-vergaderingen-leiden {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-title-zakelijke-vergaderingen-leiden {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }

  .meta-badge-zakelijke-vergaderingen-leiden {
    font-size: 0.75rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-section-zakelijke-vergaderingen-leiden {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }
}

@media (min-width: 1024px) {
  .intro-content-zakelijke-vergaderingen-leiden {
    flex-direction: row;
  }

  .techniques-wrapper-zakelijke-vergaderingen-leiden {
    flex-direction: row;
  }

  .expressions-content-zakelijke-vergaderingen-leiden {
    flex-direction: row;
  }
}

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

.principle-card-zakelijke-vergaderingen-leiden,
.related-card-zakelijke-vergaderingen-leiden {
  animation: fadeInUp 0.6s ease-out;
}

.main-professioneel-schrijven-nederlands {
  width: 100%;
}

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

.breadcrumbs-professioneel-schrijven-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
}

.breadcrumb-link-professioneel-schrijven-nederlands {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-professioneel-schrijven-nederlands:hover {
  color: #14b8a6;
}

.breadcrumb-separator-professioneel-schrijven-nederlands {
  color: #64748b;
  margin: 0 0.25rem;
}

.breadcrumb-current-professioneel-schrijven-nederlands {
  color: #14b8a6;
  font-weight: 500;
}

.hero-section-professioneel-schrijven-nederlands {
  background: #0f172a;
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

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

.hero-title-professioneel-schrijven-nederlands {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  max-width: 750px;
}

.hero-subtitle-professioneel-schrijven-nederlands {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  max-width: 650px;
  line-height: 1.6;
}

.hero-meta-professioneel-schrijven-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 1rem 0;
}

.meta-badge-professioneel-schrijven-nederlands {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  color: #14b8a6;
  border-radius: 20px;
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  font-weight: 500;
}

.meta-badge-professioneel-schrijven-nederlands i {
  font-size: 0.9rem;
}

.hero-image-professioneel-schrijven-nederlands {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.intro-section-professioneel-schrijven-nederlands {
  background: #ffffff;
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.intro-content-professioneel-schrijven-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 6vw, 4rem);
  align-items: center;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .intro-content-professioneel-schrijven-nederlands {
    flex-direction: column;
  }
}

.intro-text-professioneel-schrijven-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .intro-text-professioneel-schrijven-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.intro-image-professioneel-schrijven-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  width: 100%;
}

@media (max-width: 1024px) {
  .intro-image-professioneel-schrijven-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-image-professioneel-schrijven-nederlands {
  max-width: 100%;
  height: auto;
  min-height: 350px;
  border-radius: 16px;
  object-fit: cover;
}

.structure-section-professioneel-schrijven-nederlands {
  background: #f8fafc;
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.structure-content-professioneel-schrijven-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 6vw, 4rem);
  align-items: flex-start;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .structure-content-professioneel-schrijven-nederlands {
    flex-direction: column;
  }
}

.structure-image-professioneel-schrijven-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 1024px) {
  .structure-image-professioneel-schrijven-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.structure-image-professioneel-schrijven-nederlands {
  max-width: 100%;
  height: auto;
  min-height: 350px;
  border-radius: 16px;
  object-fit: cover;
}

.structure-text-professioneel-schrijven-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (max-width: 1024px) {
  .structure-text-professioneel-schrijven-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.structure-steps-professioneel-schrijven-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.structure-step-professioneel-schrijven-nederlands {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  align-items: flex-start;
}

.structure-step-number-professioneel-schrijven-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #14b8a6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.structure-step-content-professioneel-schrijven-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.structure-step-title-professioneel-schrijven-nederlands {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.structure-step-text-professioneel-schrijven-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.content-section-professioneel-schrijven-nederlands {
  background: #0f172a;
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.content-wrapper-professioneel-schrijven-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 6vw, 4rem);
  align-items: center;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .content-wrapper-professioneel-schrijven-nederlands {
    flex-direction: column;
  }
}

.content-text-professioneel-schrijven-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .content-text-professioneel-schrijven-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-title-professioneel-schrijven-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.content-description-professioneel-schrijven-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
}

.content-list-professioneel-schrijven-nederlands {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-list-item-professioneel-schrijven-nederlands {
  display: flex;
  gap: 1rem;
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  align-items: flex-start;
}

.content-list-item-professioneel-schrijven-nederlands::before {
  content: "";
  color: #14b8a6;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.content-image-professioneel-schrijven-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 1024px) {
  .content-image-professioneel-schrijven-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-image-professioneel-schrijven-nederlands {
  max-width: 100%;
  height: auto;
  min-height: 350px;
  border-radius: 16px;
  object-fit: cover;
}

.rapport-section-professioneel-schrijven-nederlands {
  background: #ffffff;
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.rapport-header-professioneel-schrijven-nederlands {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.rapport-title-professioneel-schrijven-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.rapport-intro-professioneel-schrijven-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.rapport-wrapper-professioneel-schrijven-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 6vw, 4rem);
  align-items: flex-start;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .rapport-wrapper-professioneel-schrijven-nederlands {
    flex-direction: column;
  }
}

.rapport-image-professioneel-schrijven-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 1024px) {
  .rapport-image-professioneel-schrijven-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.rapport-image-professioneel-schrijven-nederlands {
  max-width: 100%;
  height: auto;
  min-height: 350px;
  border-radius: 16px;
  object-fit: cover;
}

.rapport-text-professioneel-schrijven-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (max-width: 1024px) {
  .rapport-text-professioneel-schrijven-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.rapport-subtitle-professioneel-schrijven-nederlands {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: #0f172a;
}

.rapport-components-professioneel-schrijven-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rapport-component-professioneel-schrijven-nederlands {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #14b8a6;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.component-title-professioneel-schrijven-nederlands {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.component-text-professioneel-schrijven-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.quote-section-professioneel-schrijven-nederlands {
  background: #1e293b;
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.featured-quote-professioneel-schrijven-nederlands {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 3.5rem);
  border-left: 4px solid #14b8a6;
  background: rgba(20, 184, 166, 0.08);
  margin: 0 auto;
  max-width: 700px;
  border-radius: 12px;
}

.quote-text-professioneel-schrijven-nederlands {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-style: italic;
}

.quote-author-professioneel-schrijven-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  font-style: normal;
  display: block;
}

.tips-section-professioneel-schrijven-nederlands {
  background: #ffffff;
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.tips-header-professioneel-schrijven-nederlands {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.tips-title-professioneel-schrijven-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.tips-intro-professioneel-schrijven-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.tips-grid-professioneel-schrijven-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

.tips-card-professioneel-schrijven-nederlands:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-color: #14b8a6;
}

.tips-card-icon-professioneel-schrijven-nederlands {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.15);
  color: #14b8a6;
  border-radius: 12px;
  font-size: 1.5rem;
}

.tips-card-title-professioneel-schrijven-nederlands {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

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

.common-section-professioneel-schrijven-nederlands {
  background: #0f172a;
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.common-wrapper-professioneel-schrijven-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 6vw, 4rem);
  align-items: center;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .common-wrapper-professioneel-schrijven-nederlands {
    flex-direction: column;
  }
}

.common-text-professioneel-schrijven-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .common-text-professioneel-schrijven-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.common-title-professioneel-schrijven-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.common-description-professioneel-schrijven-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
}

.common-mistakes-professioneel-schrijven-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mistake-item-professioneel-schrijven-nederlands {
  padding: 1.5rem;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 12px;
  border-left: 4px solid #14b8a6;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mistake-title-professioneel-schrijven-nederlands {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: #ffffff;
}

.mistake-text-professioneel-schrijven-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.common-image-professioneel-schrijven-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 1024px) {
  .common-image-professioneel-schrijven-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.common-image-professioneel-schrijven-nederlands {
  max-width: 100%;
  height: auto;
  min-height: 350px;
  border-radius: 16px;
  object-fit: cover;
}

.conclusion-section-professioneel-schrijven-nederlands {
  background: #f8fafc;
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.conclusion-content-professioneel-schrijven-nederlands {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-professioneel-schrijven-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-professioneel-schrijven-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  text-align: center;
}

.conclusion-highlights-professioneel-schrijven-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
}

.highlight-item-professioneel-schrijven-nederlands {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #0f172a;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.highlight-item-professioneel-schrijven-nederlands i {
  color: #14b8a6;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.conclusion-final-professioneel-schrijven-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  text-align: center;
  font-style: italic;
}

.disclaimer-section-professioneel-schrijven-nederlands {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-professioneel-schrijven-nederlands {
  max-width: 700px;
  margin: 0 auto;
}

.disclaimer-title-professioneel-schrijven-nederlands {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.disclaimer-text-professioneel-schrijven-nederlands {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.related-section-professioneel-schrijven-nederlands {
  background: #ffffff;
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

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

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

.related-intro-professioneel-schrijven-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-professioneel-schrijven-nederlands {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.related-card-professioneel-schrijven-nederlands:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-color: #14b8a6;
}

.related-card-title-professioneel-schrijven-nederlands {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

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

.related-card-link-professioneel-schrijven-nederlands {
  color: #14b8a6;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.related-card-link-professioneel-schrijven-nederlands:hover {
  color: #0d9488;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .intro-content-professioneel-schrijven-nederlands,
  .structure-content-professioneel-schrijven-nederlands,
  .content-wrapper-professioneel-schrijven-nederlands,
  .rapport-wrapper-professioneel-schrijven-nederlands,
  .common-wrapper-professioneel-schrijven-nederlands {
    flex-direction: column;
  }
  
  .intro-text-professioneel-schrijven-nederlands,
  .intro-image-professioneel-schrijven-nederlands,
  .structure-image-professioneel-schrijven-nederlands,
  .structure-text-professioneel-schrijven-nederlands,
  .content-text-professioneel-schrijven-nederlands,
  .content-image-professioneel-schrijven-nederlands,
  .rapport-image-professioneel-schrijven-nederlands,
  .rapport-text-professioneel-schrijven-nederlands,
  .common-text-professioneel-schrijven-nederlands,
  .common-image-professioneel-schrijven-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-content-professioneel-schrijven-nederlands {
    padding: 0 1rem;
  }

  .breadcrumbs-professioneel-schrijven-nederlands {
    font-size: 0.75rem;
  }
}

@media (min-width: 768px) {
  .hero-section-professioneel-schrijven-nederlands {
    padding: 5rem 0;
  }

  .intro-section-professioneel-schrijven-nederlands,
  .structure-section-professioneel-schrijven-nederlands,
  .content-section-professioneel-schrijven-nederlands,
  .rapport-section-professioneel-schrijven-nederlands,
  .tips-section-professioneel-schrijven-nederlands,
  .common-section-professioneel-schrijven-nederlands,
  .conclusion-section-professioneel-schrijven-nederlands,
  .disclaimer-section-professioneel-schrijven-nederlands,
  .related-section-professioneel-schrijven-nederlands {
    padding: 5rem 0;
  }

  .quote-section-professioneel-schrijven-nederlands {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-professioneel-schrijven-nederlands {
    padding: 8rem 0;
  }

  .intro-section-professioneel-schrijven-nederlands,
  .structure-section-professioneel-schrijven-nederlands,
  .content-section-professioneel-schrijven-nederlands,
  .rapport-section-professioneel-schrijven-nederlands,
  .tips-section-professioneel-schrijven-nederlands,
  .common-section-professioneel-schrijven-nederlands,
  .conclusion-section-professioneel-schrijven-nederlands,
  .disclaimer-section-professioneel-schrijven-nederlands,
  .related-section-professioneel-schrijven-nederlands {
    padding: 8rem 0;
  }

  .quote-section-professioneel-schrijven-nederlands {
    padding: 8rem 0;
  }
}

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

.tips-card-professioneel-schrijven-nederlands,
.related-card-professioneel-schrijven-nederlands {
  animation: fadeInUp 0.6s ease-out;
}

.main-presentaties-nederlands {
  width: 100%;
  font-family: var(--font-primary);
  color: var(--color-text-light-primary);
}

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

.hero-content-presentaties-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.hero-title-presentaties-nederlands {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-subtitle-presentaties-nederlands {
  color: var(--color-primary-light);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  line-height: 1.4;
}

.hero-description-presentaties-nederlands {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  max-width: 650px;
}

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

.breadcrumb-link-presentaties-nederlands {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-presentaties-nederlands:hover {
  color: var(--color-primary-light);
}

.breadcrumb-separator-presentaties-nederlands {
  color: var(--color-text-dark-muted);
}

.breadcrumb-current-presentaties-nederlands {
  color: var(--color-text-dark-muted);
}

.hero-stats-presentaties-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  justify-content: center;
  align-items: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

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

.stat-number-presentaties-nederlands {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-presentaties-nederlands {
  display: block;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.9375rem);
  color: var(--color-text-dark-secondary);
  font-weight: 500;
}

.hero-image-wrapper-presentaties-nederlands {
  width: 100%;
  max-width: 650px;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(20, 184, 166, 0.15);
}

.hero-image-presentaties-nederlands {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

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

.intro-content-presentaties-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 1024px) {
  .intro-content-presentaties-nederlands {
    flex-direction: column;
  }
}

.intro-text-presentaties-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 1024px) {
  .intro-text-presentaties-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-title-presentaties-nederlands {
  color: var(--color-text-light-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.intro-description-presentaties-nederlands,
.intro-body-presentaties-nederlands {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-presentaties-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 1024px) {
  .intro-image-presentaties-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-img-presentaties-nederlands {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

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

.structure-title-presentaties-nederlands {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.structure-subtitle-presentaties-nederlands {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.steps-list-presentaties-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.step-item-presentaties-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(20, 184, 166, 0.08);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  align-items: flex-start;
}

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

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

@media (max-width: 768px) {
  .step-number-presentaties-nederlands {
    min-width: auto;
  }
}

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

.step-title-presentaties-nederlands {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
}

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

.step-image-wrapper-presentaties-nederlands {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.step-image-presentaties-nederlands {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

.phrases-section-presentaties-nederlands {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.phrases-wrapper-presentaties-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 1024px) {
  .phrases-wrapper-presentaties-nederlands {
    flex-direction: column;
  }
}

.phrases-text-presentaties-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 1024px) {
  .phrases-text-presentaties-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.phrases-title-presentaties-nederlands {
  color: var(--color-text-light-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.phrases-intro-presentaties-nederlands {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.phrases-group-presentaties-nederlands {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.phrase-category-presentaties-nederlands {
  color: var(--color-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.phrase-list-presentaties-nederlands {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 0;
}

.phrase-item-presentaties-nederlands {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.phrase-item-presentaties-nederlands::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.phrases-image-presentaties-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 1024px) {
  .phrases-image-presentaties-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.phrases-img-presentaties-nederlands {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

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

.techniques-title-presentaties-nederlands {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.techniques-subtitle-presentaties-nederlands {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.technique-card-presentaties-nederlands {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(20, 184, 166, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 184, 166, 0.2);
  transition: all 0.3s ease;
}

.technique-card-presentaties-nederlands:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.15);
}

.technique-icon-presentaties-nederlands {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.technique-card-title-presentaties-nederlands {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
}

.technique-card-text-presentaties-nederlands {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

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

.featured-quote-presentaties-nederlands {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(20, 184, 166, 0.08);
  border-radius: var(--radius-lg);
}

.quote-text-presentaties-nederlands {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.quote-author-presentaties-nederlands {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-style: normal;
}

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

.practice-wrapper-presentaties-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 1024px) {
  .practice-wrapper-presentaties-nederlands {
    flex-direction: column;
  }
}

.practice-image-presentaties-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 1024px) {
  .practice-image-presentaties-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practice-img-presentaties-nederlands {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.practice-text-presentaties-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 1024px) {
  .practice-text-presentaties-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practice-title-presentaties-nederlands {
  color: var(--color-text-light-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.practice-body-presentaties-nederlands {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.practice-tips-presentaties-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.tip-item-presentaties-nederlands {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(20, 184, 166, 0.1);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
}

.tip-title-presentaties-nederlands {
  color: var(--color-primary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  display: block;
  margin-bottom: 0.5rem;
}

.tip-text-presentaties-nederlands {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  margin: 0;
}

.common-mistakes-section-presentaties-nederlands {
  background: var(--color-bg-dark-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.mistakes-title-presentaties-nederlands {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.mistakes-intro-presentaties-nederlands {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.mistake-card-presentaties-nederlands {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(239, 68, 68, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.mistake-card-title-presentaties-nederlands {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
}

.mistake-card-text-presentaties-nederlands {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.cta-section-presentaties-nederlands {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-content-presentaties-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-presentaties-nederlands {
  color: var(--color-text-light-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.cta-text-presentaties-nederlands {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

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

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

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

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

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

.btn-secondary-presentaties-nederlands:hover {
  background: rgba(20, 184, 166, 0.1);
  border-color: var(--color-primary-light);
}

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

.disclaimer-content-presentaties-nederlands {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(20, 184, 166, 0.08);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.disclaimer-title-presentaties-nederlands {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.disclaimer-text-presentaties-nederlands {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
}

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

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

.related-title-presentaties-nederlands {
  color: var(--color-text-light-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

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

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

.related-card-presentaties-nederlands {
  flex: 1 1 300px;
  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 rgba(20, 184, 166, 0.1);
  transition: all 0.3s ease;
}

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

.related-card-image-presentaties-nederlands {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

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

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

.related-card-link-presentaties-nederlands {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-presentaties-nederlands:hover {
  color: var(--color-primary-light);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .container {
    padding-inline: 1rem;
  }

  .hero-stats-presentaties-nederlands {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

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

  .cta-buttons-presentaties-nederlands {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary-presentaties-nederlands,
  .btn-secondary-presentaties-nederlands {
    width: 100%;
  }

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

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

.main-onderhandelingsvaardigheden {
  width: 100%;
  overflow-x: hidden;
}

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

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

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

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

.breadcrumbs-onderhandelingsvaardigheden {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-onderhandelingsvaardigheden {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.breadcrumb-separator-onderhandelingsvaardigheden {
  color: var(--color-text-dark-muted);
}

.breadcrumb-current-onderhandelingsvaardigheden {
  color: var(--color-text-dark-secondary);
}

.hero-title-onderhandelingsvaardigheden {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  max-width: 800px;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-onderhandelingsvaardigheden {
  color: var(--color-primary-light);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  max-width: 700px;
  font-weight: 600;
}

.hero-description-onderhandelingsvaardigheden {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  max-width: 650px;
  line-height: 1.7;
}

.hero-image-wrapper-onderhandelingsvaardigheden {
  width: 100%;
  max-width: 800px;
  margin: 2rem 0 0 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.hero-featured-image-onderhandelingsvaardigheden {
  width: 100%;
  height: auto;
  min-height: 350px;
  object-fit: cover;
  display: block;
}

.hero-meta-onderhandelingsvaardigheden {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.meta-badge-onderhandelingsvaardigheden {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  color: var(--color-primary-light);
  border-radius: var(--radius-full);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

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

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

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

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

.introduction-title-onderhandelingsvaardigheden {
  color: var(--color-text-light-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
}

.introduction-paragraph-onderhandelingsvaardigheden {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.introduction-image-onderhandelingsvaardigheden {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.introduction-img-onderhandelingsvaardigheden {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .introduction-content-onderhandelingsvaardigheden {
    flex-direction: column;
  }

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

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

.preparation-header-onderhandelingsvaardigheden {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.preparation-title-onderhandelingsvaardigheden {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: 1rem;
}

.preparation-subtitle-onderhandelingsvaardigheden {
  color: var(--color-text-dark-secondary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
}

.preparation-steps-onderhandelingsvaardigheden {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.preparation-step-onderhandelingsvaardigheden {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(20, 184, 166, 0.08);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  align-items: flex-start;
}

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

.preparation-step-content-onderhandelingsvaardigheden {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.preparation-step-title-onderhandelingsvaardigheden {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
}

.preparation-step-text-onderhandelingsvaardigheden {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
}

.preparation-image-wrapper-onderhandelingsvaardigheden {
  max-width: 600px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.preparation-image-onderhandelingsvaardigheden {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

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

.techniques-header-onderhandelingsvaardigheden {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.techniques-title-onderhandelingsvaardigheden {
  color: var(--color-text-light-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: 1rem;
}

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

.techniques-grid-onderhandelingsvaardigheden {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.technique-card-onderhandelingsvaardigheden {
  flex: 1 1 300px;
  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 rgba(20, 184, 166, 0.15);
  transition: all 0.3s ease;
}

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

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

.technique-card-title-onderhandelingsvaardigheden {
  color: var(--color-text-light-primary);
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
}

.technique-card-text-onderhandelingsvaardigheden {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.techniques-image-wrapper-onderhandelingsvaardigheden {
  max-width: 600px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.techniques-image-onderhandelingsvaardigheden {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

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

.language-header-onderhandelingsvaardigheden {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.language-title-onderhandelingsvaardigheden {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: 1rem;
}

.language-subtitle-onderhandelingsvaardigheden {
  color: var(--color-text-dark-secondary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
}

.language-content-onderhandelingsvaardigheden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

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

.language-section-title-onderhandelingsvaardigheden {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  margin-top: 1rem;
}

.language-list-onderhandelingsvaardigheden {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.language-item-onderhandelingsvaardigheden {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.language-item-onderhandelingsvaardigheden::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.language-image-onderhandelingsvaardigheden {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.language-img-onderhandelingsvaardigheden {
  width: 100%;
  height: auto;
  min-height: 350px;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .language-content-onderhandelingsvaardigheden {
    flex-direction: column;
  }

  .language-text-onderhandelingsvaardigheden,
  .language-image-onderhandelingsvaardigheden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.common-mistakes-section-onderhandelingsvaardigheden {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.common-mistakes-header-onderhandelingsvaardigheden {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.common-mistakes-title-onderhandelingsvaardigheden {
  color: var(--color-text-light-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
}

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

.mistake-card-onderhandelingsvaardigheden {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.mistake-card-onderhandelingsvaardigheden:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.mistake-number-onderhandelingsvaardigheden {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.mistake-title-onderhandelingsvaardigheden {
  color: var(--color-text-light-primary);
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
}

.mistake-text-onderhandelingsvaardigheden {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1rem);
  line-height: 1.6;
}

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

.conclusion-content-onderhandelingsvaardigheden {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 800px;
}

.conclusion-title-onderhandelingsvaardigheden {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
}

.conclusion-text-onderhandelingsvaardigheden {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.conclusion-highlight-onderhandelingsvaardigheden {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(20, 184, 166, 0.1);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin: 1rem 0;
}

.highlight-text-onderhandelingsvaardigheden {
  color: var(--color-text-dark-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.conclusion-image-onderhandelingsvaardigheden {
  max-width: 600px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  margin-top: 1rem;
}

.conclusion-img-onderhandelingsvaardigheden {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .conclusion-content-onderhandelingsvaardigheden {
    max-width: 100%;
  }
}

.disclaimer-section-onderhandelingsvaardigheden {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.disclaimer-content-onderhandelingsvaardigheden {
  max-width: 800px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-onderhandelingsvaardigheden {
  color: var(--color-text-light-primary);
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.disclaimer-text-onderhandelingsvaardigheden {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1rem);
  line-height: 1.6;
}

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

.related-header-onderhandelingsvaardigheden {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.related-title-onderhandelingsvaardigheden {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: 1rem;
}

.related-subtitle-onderhandelingsvaardigheden {
  color: var(--color-text-dark-secondary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
}

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

.related-card-onderhandelingsvaardigheden {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 184, 166, 0.15);
  transition: all 0.3s ease;
  overflow: hidden;
}

.related-card-onderhandelingsvaardigheden:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.15);
}

.related-card-image-onderhandelingsvaardigheden {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(20, 184, 166, 0.1);
}

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

.related-card-title-onderhandelingsvaardigheden {
  color: var(--color-text-dark-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-onderhandelingsvaardigheden {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.5;
  flex-grow: 1;
}

.related-card-link-onderhandelingsvaardigheden {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

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

@media (max-width: 768px) {
  .hero-content-onderhandelingsvaardigheden {
    width: 100%;
  }

  .preparation-step-onderhandelingsvaardigheden {
    flex-direction: column;
  }

  .preparation-step-number-onderhandelingsvaardigheden {
    min-width: auto;
  }

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

  .hero-image-wrapper-onderhandelingsvaardigheden {
    max-width: 100%;
  }

  .preparation-image-wrapper-onderhandelingsvaardigheden {
    max-width: 100%;
  }

  .techniques-image-wrapper-onderhandelingsvaardigheden {
    max-width: 100%;
  }

  .conclusion-image-onderhandelingsvaardigheden {
    max-width: 100%;
  }
}

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

  .introduction-section-onderhandelingsvaardigheden,
  .preparation-section-onderhandelingsvaardigheden,
  .techniques-section-onderhandelingsvaardigheden,
  .language-section-onderhandelingsvaardigheden,
  .common-mistakes-section-onderhandelingsvaardigheden,
  .conclusion-section-onderhandelingsvaardigheden,
  .disclaimer-section-onderhandelingsvaardigheden,
  .related-section-onderhandelingsvaardigheden {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .technique-card-onderhandelingsvaardigheden {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .mistake-card-onderhandelingsvaardigheden {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .related-card-onderhandelingsvaardigheden {
    flex: 1 1 calc(33.333% - 1rem);
  }
}

.dutch-mastery-about {
  font-family: var(--font-primary);
  color: var(--color-text-light-primary);
}

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

.hero-dutch-about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.hero-dutch-content-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-dutch-text-about {
  flex: 1 1 350px;
  min-width: 300px;
}

.hero-dutch-title-about {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-light-primary);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

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

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

.stat-block-about {
  flex: 0 1 auto;
}

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

.stat-label-about {
  font-size: 0.875rem;
  color: var(--color-text-light-muted);
  margin-top: 0.5rem;
  font-weight: 500;
}

.hero-visual-about {
  flex: 1 1 300px;
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

  .hero-dutch-text-about {
    flex: 1 1 100%;
  }

  .hero-visual-about {
    flex: 1 1 100%;
  }
}

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

.foundation-section-about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.foundation-header-about {
  text-align: center;
  margin-bottom: 3rem;
}

.foundation-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.foundation-title-about {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
}

.foundation-subtitle-about {
  font-size: 1rem;
  color: var(--color-text-light-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.methodology-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 3rem;
}

.method-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-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-card-about:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.method-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.method-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.method-description-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

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

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

.expertise-section-about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.expertise-content-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.expertise-visual-about {
  flex: 1 1 300px;
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.expertise-text-about {
  flex: 1 1 350px;
  min-width: 300px;
}

.expertise-title-about {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.expertise-description-about {
  font-size: 1rem;
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

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

.expertise-checkmark-about {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 0.875rem;
  margin-top: 2px;
}

.expertise-item-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-primary);
  line-height: 1.6;
}

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

  .expertise-visual-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .expertise-text-about {
    flex: 1 1 100%;
  }
}

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

.commitment-section-about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.commitment-header-about {
  text-align: center;
  margin-bottom: 3rem;
}

.commitment-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.commitment-title-about {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
}

.commitment-subtitle-about {
  font-size: 1rem;
  color: var(--color-text-light-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.values-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 3rem;
}

.value-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-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.value-number-about {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.value-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.value-description-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

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

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

.quote-section-about .container {
  max-width: 900px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.featured-quote-about {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-md);
  margin: 0;
}

.quote-text-about {
  font-size: clamp(1.125rem, 2vw + 0.25rem, 1.375rem);
  font-style: italic;
  color: var(--color-text-light-primary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.quote-author-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-muted);
  font-style: normal;
  font-weight: 500;
}

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

.disclaimer-section-about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.disclaimer-content-about {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.disclaimer-icon-about {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.disclaimer-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-dutch-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .foundation-section-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .expertise-section-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .commitment-section-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .quote-section-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-dutch-about {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

  .foundation-section-about {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

  .expertise-section-about {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

  .commitment-section-about {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

  .quote-section-about {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }
}

.legal-hub {
  font-family: var(--font-primary);
  background: var(--color-bg-light-primary);
  color: var(--color-text-light-primary);
}

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

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

.legal-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.legal-hero-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hero-section .legal-updated-date {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  font-weight: 500;
}

.legal-content-section {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

.legal-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.legal-content-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-content-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-content-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 1.5rem;
}

.legal-content-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-subsection {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-subsection h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-contact-section {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

.legal-contact-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.legal-contact-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.legal-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.legal-contact-item strong {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.legal-contact-item p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

  .legal-content-section {
    padding: clamp(4rem, 8vw, 8rem) 0;
  }

  .legal-contact-section {
    padding: clamp(4rem, 8vw, 8rem) 0;
  }

  .legal-contact-details {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .legal-contact-item {
    flex: 1 1 250px;
  }
}

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

  .legal-content-section {
    padding: 6rem 0;
  }

  .legal-contact-section {
    padding: 6rem 0;
  }
}

.thank-you-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-dark-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px, 15vw, 120px);
  height: clamp(80px, 15vw, 120px);
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.1);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.thank-icon i {
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--color-primary);
}

.thank-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-lead {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-primary-light);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.thank-message {
  max-width: 600px;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next {
  max-width: 600px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-muted);
  line-height: 1.8;
  margin: 0;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: rgba(20, 184, 166, 0.05);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next strong {
  color: var(--color-primary-light);
  display: block;
  margin-bottom: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-primary);
  color: #0a0a0a;
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-light);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(20, 184, 166, 0.3);
}

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
  }

  .thank-content {
    gap: clamp(2rem, 5vw, 3rem);
  }

  .thank-next {
    text-align: left;
    padding: clamp(1.5rem, 4vw, 2rem);
  }

  .thank-next strong {
    display: inline;
    margin-right: 0.25rem;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    min-height: 80vh;
  }

  .thank-content {
    gap: 3rem;
  }

  .thank-message {
    font-size: 1.0625rem;
  }

  .btn-primary {
    box-shadow: 0 8px 16px rgba(20, 184, 166, 0.25);
  }

  .btn-primary:hover {
    box-shadow: 0 12px 24px rgba(20, 184, 166, 0.35);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    min-height: 85vh;
  }

  .thank-icon {
    margin-bottom: 1.5rem;
  }
}

.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, 6vw, 4rem) 0;
  overflow: hidden;
  position: relative;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
  min-height: clamp(60vh, 80vh, 100vh);
}

.error-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  z-index: 1;
}

.error-decoration-top {
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  background: var(--color-primary);
  top: -25%;
  left: -15%;
  animation: float 8s ease-in-out infinite;
}

.error-decoration-bottom {
  width: clamp(250px, 40vw, 500px);
  height: clamp(250px, 40vw, 500px);
  background: var(--color-secondary);
  bottom: -20%;
  right: -10%;
  animation: float 10s ease-in-out infinite reverse;
}

.error-code-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw + 1rem, 8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
  animation: slideDown 0.8s ease-out;
}

.error-accent {
  width: clamp(80px, 20vw, 160px);
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-full);
  animation: expandWidth 0.8s ease-out 0.2s backwards;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin: 0;
  letter-spacing: -0.01em;
  animation: slideUp 0.8s ease-out 0.1s backwards;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  margin: 0;
  max-width: 500px;
  line-height: 1.6;
  animation: slideUp 0.8s ease-out 0.2s backwards;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-help {
  width: 100%;
  max-width: 600px;
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 3vw, 1.5rem);
  animation: slideUp 0.8s ease-out 0.3s backwards;
}

.error-help-text {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-dark-secondary);
  margin: 0;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  width: 100%;
  max-width: 500px;
  animation: slideUp 0.8s ease-out 0.4s backwards;
}

.error-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.error-icon-item i {
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.error-icon-item span {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: var(--color-text-dark-secondary);
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-icon-item:hover {
  background: rgba(20, 184, 166, 0.1);
  border-color: rgba(20, 184, 166, 0.25);
}

.error-icon-item:hover i {
  transform: translateY(-4px);
  color: var(--color-primary-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-text-light-primary);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 15px 40px rgba(20, 184, 166, 0.35);
  transform: translateY(-3px);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-large {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1.75rem, 4vw, 2.5rem);
  animation: slideUp 0.8s ease-out 0.5s backwards;
}

.btn i {
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(-4px);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes expandWidth {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: clamp(80px, 20vw, 160px);
    opacity: 1;
  }
}

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

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

  .error-content {
    gap: clamp(2rem, 5vw, 3.5rem);
    min-height: 100vh;
  }

  .error-icons {
    grid-template-columns: repeat(3, 1fr);
    max-width: 600px;
  }

  .error-icon-item {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .error-decoration-top {
    top: -15%;
    left: -5%;
  }

  .error-decoration-bottom {
    bottom: -15%;
    right: 0%;
  }

  .error-content {
    gap: 3rem;
  }

  .btn-primary:hover {
    transform: translateY(-5px);
  }
}

@media (min-width: 1440px) {
  .error-section {
    padding: 6rem 0;
  }

  .error-content {
    min-height: 100vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code,
  .error-accent,
  .error-title,
  .error-subtitle,
  .error-help,
  .error-icons,
  .btn-large,
  .error-decoration,
  .error-icon-item i,
  .btn {
    animation: none;
    transition: none;
  }
}

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

@media print {
  .error-section {
    background: var(--color-bg-light-primary);
  }

  .error-code,
  .error-title,
  .error-subtitle,
  .error-help-text,
  .error-icon-item span {
    color: var(--color-text-light-primary);
  }

  .error-decoration {
    display: none;
  }
}