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

:root {
  
  
  
  
  --color-bg-dark-primary: #111827;
  --color-bg-dark-secondary: #1f2937;
  --color-bg-dark-tertiary: #374151;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-card-dark: rgba(6, 182, 212, 0.08);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-light: #ffffff;
  --color-text-light-secondary: #d1d5db;
  --color-text-light-muted: #9ca3af;
  --color-text-dark: #111827;
  --color-text-dark-secondary: #374151;
  --color-text-dark-muted: #6b7280;
  
  
  --color-primary: #06b6d4;
  --color-primary-hover: #0891b2;
  --color-primary-light: #22d3ee;
  --color-secondary: #0891b2;
  
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
}

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

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

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

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

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

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 60vh;
  gap: var(--space-lg);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text-light);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-light-secondary);
  max-width: 600px;
  line-height: 1.5;
}

.hero-description {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-muted);
  max-width: 550px;
  line-height: 1.7;
}

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

h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

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

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

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

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

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
}

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

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-primary-light);
  color: var(--color-primary-light);
}

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

.btn-outline-dark:hover {
  background: rgba(6, 182, 212, 0.1);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.features-section h2 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.features-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.feature-card {
  background: var(--color-bg-light-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 1.5rem;
}

.feature-card h3 {
  color: var(--color-text-dark);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
}

.feature-card p {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

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

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

.about-image {
  width: 100%;
  height: 400px;
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dark-muted);
  font-size: 1rem;
  overflow: hidden;
}

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

.courses-section h2 {
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: var(--space-2xl);
}

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

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

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

.course-header {
  height: 200px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 3rem;
}

.course-body {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.course-card h3 {
  color: var(--color-text-dark);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
}

.course-card p {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.95rem, 1vw, 1rem);
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-bg-light-tertiary);
}

.course-level {
  display: inline-block;
  background: rgba(6, 182, 212, 0.15);
  color: var(--color-primary);
  padding: 0.25rem var(--space-sm);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 600;
}

.process-section h2 {
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: var(--space-3xl);
}

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

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

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
}

.process-step h3 {
  color: var(--color-text-dark);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
}

.process-step p {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.95rem, 1vw, 1rem);
}

.benefits-section h2 {
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: var(--space-2xl);
}

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

.benefit-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: rgba(6, 182, 212, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.375rem;
}

.benefit-item h4 {
  color: var(--color-text-dark);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.benefit-item p {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.9375rem, 1vw, 1rem);
}

.testimonials-section h2 {
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: var(--space-2xl);
}

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

.testimonial-card {
  background: var(--color-bg-card-dark);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(6, 182, 212, 0.2);
}

.testimonial-text {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  line-height: 1.7;
  font-style: italic;
}

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

.author-name {
  color: var(--color-text-light);
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
}

.author-role {
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 500;
}

.faq-section h2 {
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-bg-light-primary);
  margin-bottom: var(--space-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--color-bg-light-tertiary);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--color-primary);
}

.faq-question {
  padding: var(--space-lg);
  background: var(--color-bg-light-secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  user-select: none;
}

.faq-question h4 {
  color: var(--color-text-dark);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin: 0;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

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

.faq-answer {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: var(--space-lg);
}

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

.cta-content h2 {
  color: var(--color-text-light);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
}

.cta-content p {
  color: var(--color-text-light-secondary);
  max-width: 600px;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

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

.form-submit-btn {
  padding: clamp(0.75rem, 2vw, 1rem) var(--space-lg);
  background: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: var(--space-md);
}

.form-submit-btn:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
}

@media (max-width: 768px) {
  .hero-content {
    min-height: 50vh;
  }
  
  .about-content,
  .courses-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }
  
  .about-image {
    height: 300px;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .faq-container {
    padding: 0 var(--space-md);
  }
}

@media (max-width: 480px) {
  .features-content {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    word-break: break-word;
  }
}

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

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

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

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

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

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

.gap-xl {
  gap: var(--space-xl);
}
.header-design-studio {
    position: static;
    width: 100%;
    background: var(--color-bg-dark-primary);
    border-bottom: 1px solid var(--color-bg-dark-secondary);
    padding: clamp(1rem, 3vw, 1.5rem) 0;
    font-family: var(--font-body);
  }

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

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

  .header-design-studio-brand:hover {
    opacity: 0.85;
  }

  .header-design-studio-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
  }

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

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

  .header-design-studio-nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-light-secondary);
    text-decoration: none;
    transition: color 300ms ease;
    position: relative;
  }

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

  .header-design-studio-nav-link:hover {
    color: var(--color-primary);
  }

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

  .header-design-studio-cta-button {
    padding: 0.75rem 1.75rem;
    background: var(--color-primary);
    color: #111827;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 300ms ease;
    white-space: nowrap;
  }

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

  .header-design-studio-cta-button:active {
    transform: translateY(0);
  }

  .header-design-studio-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
    flex-shrink: 0;
  }

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

  .header-design-studio-mobile-toggle[aria-expanded="true"] .header-design-studio-hamburger:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

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

  .header-design-studio-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    overflow-y: auto;
    padding-top: clamp(4rem, 12vw, 6rem);
  }

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

  .header-design-studio-mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1.25rem;
    background: var(--color-bg-dark-primary);
    border-bottom: 1px solid var(--color-bg-dark-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 101;
  }

  .header-design-studio-mobile-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
  }

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

  .header-design-studio-mobile-close:hover {
    color: var(--color-primary);
  }

  .header-design-studio-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    flex: 1;
  }

  .header-design-studio-mobile-link {
    padding: 1.25rem 1.5rem;
    color: var(--color-text-light-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 300ms ease;
  }

  .header-design-studio-mobile-link:hover {
    background: rgba(6, 182, 212, 0.1);
    color: var(--color-primary);
    padding-left: 2rem;
  }

  .header-design-studio-mobile-cta {
    padding: 1rem 1.5rem;
    margin: 2rem 1.5rem 2rem 1.5rem;
    background: var(--color-primary);
    color: #111827;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 300ms ease;
    display: block;
  }

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

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

    .header-design-studio-desktop-nav {
      display: flex;
    }

    .header-design-studio-mobile-menu {
      display: none;
    }

    .header-design-studio-logo-text {
      font-size: 1.25rem;
    }
  }

  @media (max-width: 767px) {
    .header-design-studio-cta-button {
      display: none;
    }
  }

    .design-studio {
  width: 100%;
}

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

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

.hero-gradient-mesh {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-glow-primary {
  position: absolute;
  top: 30%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-glow-secondary {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-accent-shape {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 280px;
  height: 280px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.hero-floating-element {
  position: absolute;
  bottom: 15%;
  left: 20%;
  width: 200px;
  height: 150px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transform: rotate(-15deg);
  z-index: 1;
  pointer-events: none;
}

.hero-corner-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-line-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.hero-title {
  font-size: clamp(2rem, 6vw + 0.5rem, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: var(--space-lg);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #f1f5f9;
  margin-bottom: var(--space-md);
  max-width: 700px;
  line-height: 1.5;
}

.hero-description {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  margin-bottom: var(--space-lg);
  max-width: 650px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: var(--space-2xl);
}

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

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

.stat-label {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #94a3b8;
  font-weight: 500;
}

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

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

.features-shape-accent-2 {
  position: absolute;
  bottom: 20%;
  right: -100px;
  width: 320px;
  height: 320px;
  background: rgba(139, 92, 246, 0.07);
  border-radius: 30% 60% 70% 40% / 40% 50% 30% 60%;
  z-index: 1;
  pointer-events: none;
}

.features-glow-left {
  position: absolute;
  top: 40%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.features-glow-right {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

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

.features-float-panel {
  position: absolute;
  bottom: 15%;
  left: 50%;
  width: 220px;
  height: 160px;
  background: rgba(59, 130, 246, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 14px;
  transform: translateX(-50%) rotate(8deg);
  z-index: 1;
  pointer-events: none;
}

.features-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 10;
}

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

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

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

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

.features-card {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border-left: 4px solid #06b6d4;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.features-card-text {
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  line-height: 1.6;
  color: #64748b;
}

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

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

.about-deco-glow {
  position: absolute;
  top: 20%;
  right: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.about-deco-shape {
  position: absolute;
  bottom: 5%;
  left: -60px;
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.07);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.about-deco-accent {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 2;
  pointer-events: none;
}

.about-deco-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 10;
}

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

.about-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: var(--space-md);
}

.about-paragraph {
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  line-height: 1.8;
  color: #475569;
}

.about-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(59, 130, 246, 0.05));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  overflow: hidden;
}

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

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

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

.process-deco-mesh {
  position: absolute;
  top: -10%;
  left: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.process-deco-glow-1 {
  position: absolute;
  top: 40%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.process-deco-glow-2 {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

.process-deco-shape {
  position: absolute;
  bottom: 30%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 2;
  pointer-events: none;
}

.process-deco-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.process-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 10;
}

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

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

.process-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  position: relative;
  z-index: 10;
}

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

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #06b6d4, #22d3ee);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

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

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

.process-step-text {
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  line-height: 1.6;
  color: #cbd5e1;
}

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

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

.benefits-accent-shape {
  position: absolute;
  top: 10%;
  right: -100px;
  width: 350px;
  height: 350px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.benefits-glow {
  position: absolute;
  bottom: 20%;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.benefits-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.benefits-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 10;
}

.benefits-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: var(--space-md);
}

.benefits-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #64748b;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
  position: relative;
  z-index: 10;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover {
  border-color: #06b6d4;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: rgba(6, 182, 212, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06b6d4;
  font-size: 1.375rem;
}

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

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

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

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

.posts-deco-glow-1 {
  position: absolute;
  top: 10%;
  left: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.posts-deco-glow-2 {
  position: absolute;
  bottom: 15%;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.posts-deco-shape {
  position: absolute;
  top: 30%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.07);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.posts-deco-accent {
  position: absolute;
  bottom: 30%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 2;
  pointer-events: none;
}

.posts-deco-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.posts-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 10;
}

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

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

.posts-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.featured-card {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  background: #f8fafc;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.featured-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-card:hover .card-image {
  transform: scale(1.05);
}

.featured-card-body {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex-grow: 1;
}

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

.featured-card-text {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.6;
  color: #64748b;
  flex-grow: 1;
}

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

.meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: rgba(6, 182, 212, 0.12);
  color: #0891b2;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 500;
}

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

.featured-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #06b6d4;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  transition: all 0.3s ease;
  align-self: flex-start;
}

.featured-card-link:hover {
  gap: 0.8rem;
  color: #0891b2;
}

.featured-card-link i {
  font-size: 0.75rem;
}

.posts-cta {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}

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

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

.faq-deco-shape {
  position: absolute;
  top: 5%;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(6, 182, 212, 0.07);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.faq-deco-glow {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.faq-deco-accent {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 180px;
  height: 180px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 50%;
  filter: blur(45px);
  z-index: 2;
  pointer-events: none;
}

.faq-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 10;
}

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

.faq-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #64748b;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.faq-item {
  background: #ffffff;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #06b6d4;
}

.faq-question {
  padding: var(--space-lg);
  background: #f8fafc;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  user-select: none;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f1f5f9;
}

.faq-q-text {
  color: #1e293b;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  margin: 0;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  background: #06b6d4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

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

.faq-answer {
  padding: 0 var(--space-lg) var(--space-lg);
  color: #64748b;
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: var(--space-lg);
}

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

.cta-deco-glow-1 {
  position: absolute;
  top: 0;
  left: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.cta-deco-glow-2 {
  position: absolute;
  bottom: 10%;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.cta-deco-shape {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 280px;
  height: 280px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
}

.cta-deco-accent {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 50%;
  filter: blur(55px);
  z-index: 1;
  pointer-events: none;
}

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

.cta-title {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text {
  color: #cbd5e1;
  max-width: 650px;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

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

.contact-deco-shape {
  position: absolute;
  top: 10%;
  left: -100px;
  width: 350px;
  height: 350px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.contact-deco-glow {
  position: absolute;
  bottom: 15%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.contact-deco-accent {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 2;
  pointer-events: none;
}

.contact-deco-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.contact-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 10;
}

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

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

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3xl);
  position: relative;
  z-index: 10;
}

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

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

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

.form-label {
  color: #f1f5f9 !important;
  font-weight: 500;
  font-size: clamp(0.9375rem, 1vw, 1rem);
}

.contact-input,
.contact-textarea {
  padding: var(--space-md);
  border: 2px solid rgba(6, 182, 212, 0.3);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  transition: all 0.3s ease;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #94a3b8;
}

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

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

.contact-submit-btn {
  width: 100%;
  padding: clamp(0.875rem, 2vw, 1.125rem) var(--space-lg);
  background: #06b6d4;
  color: #0f172a;
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: var(--space-sm);
}

.contact-submit-btn:hover {
  background: #0891b2;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.3);
}

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

.contact-info {
  flex: 1 1 400px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-block,
.contact-faq-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(6, 182, 212, 0.2);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
}

.contact-info-title,
.contact-faq-title {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: var(--space-md);
}

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

.contact-info-item {
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.6;
  padding-left: var(--space-md);
  position: relative;
}

.contact-info-item::before {
  content: '';
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: 700;
}

.contact-faq-item {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-faq-q {
  font-size: clamp(0.95rem, 1vw, 1rem);
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: var(--space-sm);
}

.contact-faq-a {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #0f172a;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  border-top: 1px solid rgba(6, 182, 212, 0.2);
}

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

.cookie-banner-text {
  color: #e2e8f0;
  margin: 0;
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  text-align: center;
  flex: 1 1 auto;
  min-width: 200px;
}

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

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

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

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

.cookie-btn-decline {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid rgba(6, 182, 212, 0.4);
}

.cookie-btn-decline:hover {
  border-color: #06b6d4;
  color: #f1f5f9;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    padding: var(--space-md);
  }

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.0625rem);
  font-weight: 600;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: #0891b2;
  border-color: #0891b2;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.3);
}

.btn-primary:active {
  transform: translateY(-1px);
}

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

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #06b6d4;
  color: #06b6d4;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: #1e293b;
  border-color: #1e293b;
}

.btn-outline-dark:hover {
  background: rgba(6, 182, 212, 0.1);
  border-color: #06b6d4;
  color: #06b6d4;
}

@media (max-width: 768px) {
  .btn {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }
}

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

  .about-image {
    height: 300px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .featured-cards {
    flex-direction: column;
  }

  .featured-card {
    max-width: 100%;
  }

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

  .contact-form-wrapper,
  .contact-info {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .stat-item {
    flex-direction: row;
    align-items: baseline;
    gap: var(--space-sm);
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8125rem;
  }

  .features-cards {
    flex-direction: column;
  }

  .features-card {
    max-width: 100%;
  }

  .faq-container {
    padding: 0;
  }

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

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

  .cta-content {
    padding: 0 var(--space-md);
  }
}

    

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

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

.footer::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 5vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

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

.footer-about-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-light);
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

.footer-about-text {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.7;
  color: var(--color-text-light-muted);
}

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

.footer-nav-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-light);
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

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

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

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

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

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

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

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-contact-item {
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  line-height: 1.6;
  color: var(--color-text-light-muted);
  margin: 0;
}

.footer-contact-label {
  display: block;
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.footer-contact-value {
  display: block;
  color: var(--color-text-light-muted);
}

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

.footer-legal-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-light);
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-legal-link {
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: var(--color-text-light-muted);
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-legal-link:hover {
  color: var(--color-primary-light);
  padding-left: 4px;
}

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

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

.footer-copyright {
  font-size: clamp(0.8125rem, 1.2vw, 0.875rem);
  color: rgba(148, 163, 184, 0.7);
  margin: 0;
  letter-spacing: 0.3px;
}

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

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

  .footer-nav-link::after {
    width: 0;
  }

  .footer-legal-link:hover {
    padding-left: 0;
  }
}

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

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

  .footer::before,
  .footer::after {
    animation: none;
  }
}

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

.main.category-page-visual-design-course {
  width: 100%;
}

.hero-section-visual-design-course {
  background: #111827;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

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

.hero-deco-glow-primary {
  position: absolute;
  top: 20%;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-accent-orb {
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-shape-abstract {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-deco-line-accent {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-deco-floating-panel {
  position: absolute;
  bottom: 25%;
  right: 8%;
  width: 200px;
  height: 150px;
  background: rgba(6, 182, 212, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.1);
  border-radius: 12px;
  transform: rotate(8deg);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-secondary-glow {
  position: absolute;
  bottom: 5%;
  right: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-corner-element {
  position: absolute;
  top: -50px;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.04);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-content-visual-design-course {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 60vh;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.hero-title-visual-design-course {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw + 0.5rem, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-visual-design-course {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: #d1d5db;
  max-width: 600px;
  line-height: 1.5;
}

.hero-description-visual-design-course {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #9ca3af;
  max-width: 550px;
  line-height: 1.7;
}

.hero-stats-visual-design-course {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.hero-stat-item-visual-design-course {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-stat-number-visual-design-course {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #06b6d4;
  display: block;
  line-height: 1;
}

.hero-stat-label-visual-design-course {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #9ca3af;
  opacity: 0.9;
}

.hero-cta-group-visual-design-course {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.btn-primary-visual-design-course {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  font-weight: 600;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  background: #06b6d4;
  color: #000000;
  border: 2px solid #06b6d4;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary-visual-design-course:hover {
  background: #0891b2;
  border-color: #0891b2;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
}

.btn-outline-light-visual-design-course {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  font-weight: 600;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-outline-light-visual-design-course:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #22d3ee;
  color: #22d3ee;
}

.posts-section-visual-design-course {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
}

.posts-header-visual-design-course {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.posts-title-visual-design-course {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

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

.card-visual-design-course {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1 1 300px;
  max-width: 380px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-visual-design-course:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: #06b6d4;
}

.card-visual-design-course img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.card-title-visual-design-course {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

.card-description-visual-design-course {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-visual-design-course {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin: 0.5rem 0;
}

.card-meta-visual-design-course span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  background: rgba(6, 182, 212, 0.12);
  color: #0891b2;
  border-radius: 20px;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  font-weight: 500;
}

.card-meta-visual-design-course i {
  font-size: 0.875rem;
}

.card-link-visual-design-course {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  font-weight: 600;
  color: #06b6d4;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.card-link-visual-design-course:hover {
  color: #0891b2;
  transform: translateX(4px);
}

.learning-path-section-visual-design-course {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
}

.learning-header-visual-design-course {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.learning-title-visual-design-course {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

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

.learning-step-visual-design-course {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 14px;
  border-left: 4px solid #06b6d4;
  transition: all 0.3s ease;
}

.learning-step-visual-design-course:hover {
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.15);
}

.learning-step-number-visual-design-course {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
  text-align: center;
}

.learning-step-content-visual-design-course {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.learning-step-title-visual-design-course {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.learning-step-text-visual-design-course {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.benefits-section-visual-design-course {
  background: #111827;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
}

.benefits-header-visual-design-course {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.benefits-title-visual-design-course {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.benefits-subtitle-visual-design-course {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #d1d5db;
  max-width: 600px;
  margin: 0 auto;
}

.benefits-grid-visual-design-course {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.benefit-item-visual-design-course {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: 14px;
  flex: 1 1 250px;
  max-width: 320px;
  transition: all 0.3s ease;
}

.benefit-item-visual-design-course:hover {
  border-color: #06b6d4;
  background: rgba(6, 182, 212, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.2);
}

.benefit-icon-visual-design-course {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #06b6d4, #22d3ee);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 1.625rem;
}

.benefit-title-visual-design-course {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.benefit-text-visual-design-course {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #d1d5db;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-content-visual-design-course {
    min-height: 50vh;
  }

  .hero-cta-group-visual-design-course {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group-visual-design-course .btn-primary-visual-design-course,
  .hero-cta-group-visual-design-course .btn-outline-light-visual-design-course {
    width: 100%;
    justify-content: center;
  }

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

  .learning-step-visual-design-course {
    flex-direction: column;
    align-items: flex-start;
  }

  .learning-step-number-visual-design-course {
    min-width: auto;
    text-align: left;
  }

  .benefit-item-visual-design-course {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-stats-visual-design-course {
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  .posts-grid-visual-design-course {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .benefits-grid-visual-design-course {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .hero-title-visual-design-course {
    word-break: break-word;
  }
}

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

.btn-primary-visual-design-course:focus-visible,
.btn-outline-light-visual-design-course:focus-visible,
.card-link-visual-design-course:focus-visible {
  outline: 2px solid #06b6d4;
  outline-offset: 3px;
}

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

.main-kleurtheorie-webontwerp {
  width: 100%;
  overflow: hidden;
}

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

.hero-section-kleurtheorie-webontwerp {
  background: #0f172a;
  padding: clamp(2rem, 6vw, 5rem) 0;
  overflow: hidden;
  position: relative;
}

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

.breadcrumbs-kleurtheorie-webontwerp a {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-kleurtheorie-webontwerp a:hover {
  color: #22d3ee;
}

.breadcrumbs-kleurtheorie-webontwerp span {
  color: #64748b;
}

.hero-content-kleurtheorie-webontwerp {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.hero-title-kleurtheorie-webontwerp {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-kleurtheorie-webontwerp {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #cbd5e1;
  max-width: 600px;
}

.hero-meta-kleurtheorie-webontwerp {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

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

.meta-badge-kleurtheorie-webontwerp i {
  color: #06b6d4;
}

.hero-image-wrapper-kleurtheorie-webontwerp {
  width: 100%;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 2rem;
}

.hero-image-kleurtheorie-webontwerp {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.introduction-content-kleurtheorie-webontwerp {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.introduction-text-kleurtheorie-webontwerp {
  flex: 1 1 400px;
}

.introduction-title-kleurtheorie-webontwerp {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.introduction-description-kleurtheorie-webontwerp {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin-bottom: 1.5rem;
}

.introduction-highlight-kleurtheorie-webontwerp {
  flex: 1 1 350px;
}

.featured-quote-kleurtheorie-webontwerp {
  padding: 2rem 2.5rem;
  background: #f1f5f9;
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
  margin: 0;
}

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

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

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

  .introduction-text-kleurtheorie-webontwerp,
  .introduction-highlight-kleurtheorie-webontwerp {
    flex: 1 1 100%;
  }
}

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

.content-wrapper-one-kleurtheorie-webontwerp {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-one-kleurtheorie-webontwerp {
  flex: 1 1 400px;
  max-width: 50%;
}

.content-title-one-kleurtheorie-webontwerp {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.content-body-one-kleurtheorie-webontwerp {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin-bottom: 1.5rem;
}

.emphasis-one-kleurtheorie-webontwerp {
  color: #06b6d4;
  font-weight: 600;
}

.content-list-one-kleurtheorie-webontwerp {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
}

.list-item-one-kleurtheorie-webontwerp {
  padding: 0.75rem 0 0.75rem 1.75rem;
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: #475569;
  position: relative;
}

.list-item-one-kleurtheorie-webontwerp:before {
  content: "";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: bold;
}

.content-image-one-kleurtheorie-webontwerp {
  flex: 1 1 400px;
  max-width: 50%;
}

.content-image-kleurtheorie-webontwerp {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .content-wrapper-one-kleurtheorie-webontwerp {
    flex-direction: column;
  }

  .content-text-one-kleurtheorie-webontwerp,
  .content-image-one-kleurtheorie-webontwerp {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-two-kleurtheorie-webontwerp {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-two-kleurtheorie-webontwerp {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-image-two-kleurtheorie-webontwerp {
  flex: 1 1 400px;
  max-width: 50%;
}

.content-text-two-kleurtheorie-webontwerp {
  flex: 1 1 400px;
  max-width: 50%;
}

.content-title-two-kleurtheorie-webontwerp {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.content-body-two-kleurtheorie-webontwerp {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin-bottom: 1.5rem;
}

.emphasis-two-kleurtheorie-webontwerp {
  color: #06b6d4;
  font-weight: 600;
}

.highlight-box-two-kleurtheorie-webontwerp {
  padding: 1.5rem;
  background: rgba(6, 182, 212, 0.1);
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.highlight-text-two-kleurtheorie-webontwerp {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: #0f172a;
  margin: 0;
}

.highlight-strong-two-kleurtheorie-webontwerp {
  color: #06b6d4;
}

@media (max-width: 768px) {
  .content-wrapper-two-kleurtheorie-webontwerp {
    flex-direction: column-reverse;
  }

  .content-image-two-kleurtheorie-webontwerp,
  .content-text-two-kleurtheorie-webontwerp {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.process-section-kleurtheorie-webontwerp {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-header-kleurtheorie-webontwerp {
  text-align: center;
  margin-bottom: 3rem;
}

.process-title-kleurtheorie-webontwerp {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

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

.process-steps-kleurtheorie-webontwerp {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.process-step-kleurtheorie-webontwerp {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
}

.process-number-kleurtheorie-webontwerp {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

.process-step-content-kleurtheorie-webontwerp {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.process-step-text-kleurtheorie-webontwerp {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  line-height: 1.6;
  color: #475569;
}

@media (max-width: 768px) {
  .process-step-kleurtheorie-webontwerp {
    flex: 1 1 100%;
  }
}

.gallery-section-kleurtheorie-webontwerp {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.gallery-title-kleurtheorie-webontwerp {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 1rem;
}

.gallery-subtitle-kleurtheorie-webontwerp {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.gallery-card-kleurtheorie-webontwerp:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #06b6d4;
}

.gallery-image-kleurtheorie-webontwerp {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.gallery-card-title-kleurtheorie-webontwerp {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.gallery-card-text-kleurtheorie-webontwerp {
  font-size: clamp(0.95rem, 1vw, 1rem);
  line-height: 1.6;
  color: #64748b;
}

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

.implementation-section-kleurtheorie-webontwerp {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-wrapper-kleurtheorie-webontwerp {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.implementation-text-kleurtheorie-webontwerp {
  flex: 1 1 400px;
  max-width: 50%;
}

.implementation-title-kleurtheorie-webontwerp {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.implementation-body-kleurtheorie-webontwerp {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin-bottom: 1.5rem;
}

.semantic-em-kleurtheorie-webontwerp {
  font-style: italic;
  color: #06b6d4;
  font-weight: 500;
}

.implementation-image-kleurtheorie-webontwerp {
  flex: 1 1 400px;
  max-width: 50%;
}

@media (max-width: 768px) {
  .implementation-wrapper-kleurtheorie-webontwerp {
    flex-direction: column;
  }

  .implementation-text-kleurtheorie-webontwerp,
  .implementation-image-kleurtheorie-webontwerp {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tools-section-kleurtheorie-webontwerp {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-title-kleurtheorie-webontwerp {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 1rem;
}

.tools-grid-kleurtheorie-webontwerp {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 3rem;
}

.tool-card-kleurtheorie-webontwerp {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.tool-card-kleurtheorie-webontwerp:hover {
  border-color: #06b6d4;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.15);
}

.tool-icon-kleurtheorie-webontwerp {
  font-size: 2.5rem;
  line-height: 1;
}

.tool-name-kleurtheorie-webontwerp {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.tool-description-kleurtheorie-webontwerp {
  font-size: clamp(0.95rem, 1vw, 1rem);
  line-height: 1.6;
  color: #64748b;
}

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

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

.conclusion-content-kleurtheorie-webontwerp {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-kleurtheorie-webontwerp {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
}

.conclusion-body-kleurtheorie-webontwerp {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.conclusion-cta-kleurtheorie-webontwerp {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.btn-primary-kleurtheorie-webontwerp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  background: #06b6d4;
  color: #000000;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  transition: all 0.3s ease;
}

.btn-primary-kleurtheorie-webontwerp:hover {
  background: #0891b2;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
}

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

.related-title-kleurtheorie-webontwerp {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 1rem;
}

.related-subtitle-kleurtheorie-webontwerp {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  text-align: center;
  margin-bottom: 3rem;
}

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

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

.related-card-kleurtheorie-webontwerp:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  border-color: #06b6d4;
}

.related-image-wrapper-kleurtheorie-webontwerp {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}

.related-image-kleurtheorie-webontwerp {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-kleurtheorie-webontwerp {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.related-card-text-kleurtheorie-webontwerp {
  font-size: clamp(0.95rem, 1vw, 1rem);
  line-height: 1.6;
  color: #64748b;
}

.related-link-kleurtheorie-webontwerp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #06b6d4;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1rem);
  transition: all 0.2s ease;
  margin-top: auto;
}

.related-link-kleurtheorie-webontwerp:hover {
  color: #0891b2;
  gap: 0.75rem;
}

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

.disclaimer-section-kleurtheorie-webontwerp {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.disclaimer-content-kleurtheorie-webontwerp {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.disclaimer-title-kleurtheorie-webontwerp {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-kleurtheorie-webontwerp {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.7;
  color: #64748b;
}

@media (max-width: 768px) {
  .hero-section-kleurtheorie-webontwerp {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .hero-title-kleurtheorie-webontwerp {
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .meta-badge-kleurtheorie-webontwerp {
    font-size: 0.8125rem;
    padding: 0.375rem 0.75rem;
  }

  .breadcrumbs-kleurtheorie-webontwerp {
    font-size: 0.8125rem;
  }
}

.main-typografie-leesbaarheid {
  width: 100%;
  position: relative;
}

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

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

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

.hero-section-typografie-leesbaarheid::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-wrapper-typografie-leesbaarheid {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content-typografie-leesbaarheid {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 2rem);
}

.hero-image-typografie-leesbaarheid {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
}

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

.breadcrumbs-typografie-leesbaarheid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  color: #94a3b8;
}

.breadcrumbs-typografie-leesbaarheid a {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-typografie-leesbaarheid a:hover {
  color: #0ea5e9;
  text-decoration: underline;
}

.breadcrumbs-typografie-leesbaarheid span {
  color: #64748b;
}

.hero-title-typografie-leesbaarheid {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw + 0.5rem, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-typografie-leesbaarheid {
  font-size: clamp(1.125rem, 2.5vw + 0.5rem, 1.5rem);
  color: #e2e8f0;
  line-height: 1.5;
}

.hero-description-typografie-leesbaarheid {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 550px;
}

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

.meta-badge-typografie-leesbaarheid {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.2);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #38bdf8;
  font-weight: 500;
}

.meta-badge-typografie-leesbaarheid i {
  font-size: 1rem;
}

.intro-section-typografie-leesbaarheid {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.intro-text-typografie-leesbaarheid {
  flex: 1 1 50%;
}

.intro-title-typografie-leesbaarheid {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-typografie-leesbaarheid {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-typografie-leesbaarheid {
  flex: 1 1 50%;
}

.intro-image-content-typografie-leesbaarheid {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.lettertype-section-typografie-leesbaarheid {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.lettertype-content-typografie-leesbaarheid {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.lettertype-text-typografie-leesbaarheid {
  flex: 1 1 50%;
}

.lettertype-title-typografie-leesbaarheid {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.lettertype-paragraph-typografie-leesbaarheid {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.lettertype-tips-typografie-leesbaarheid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.tip-item-typografie-leesbaarheid {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 10px;
  border-left: 4px solid #06b6d4;
}

.tip-number-typografie-leesbaarheid {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #06b6d4;
  flex-shrink: 0;
  min-width: 40px;
}

.tip-content-typografie-leesbaarheid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tip-title-typografie-leesbaarheid {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0f172a;
}

.tip-text-typografie-leesbaarheid {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

.lettertype-image-typografie-leesbaarheid {
  flex: 1 1 50%;
}

.lettertype-image-content-typografie-leesbaarheid {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

.hierarchy-section-typografie-leesbaarheid {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.hierarchy-content-typografie-leesbaarheid {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hierarchy-image-typografie-leesbaarheid {
  flex: 1 1 50%;
  order: -1;
}

.hierarchy-image-content-typografie-leesbaarheid {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.hierarchy-text-typografie-leesbaarheid {
  flex: 1 1 50%;
}

.hierarchy-title-typografie-leesbaarheid {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hierarchy-paragraph-typografie-leesbaarheid {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.hierarchy-benefits-typografie-leesbaarheid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.benefit-item-typografie-leesbaarheid {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

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

.benefit-text-typografie-leesbaarheid {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.spacing-section-typografie-leesbaarheid {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.spacing-content-typografie-leesbaarheid {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.spacing-text-typografie-leesbaarheid {
  flex: 1 1 50%;
}

.spacing-title-typografie-leesbaarheid {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.spacing-paragraph-typografie-leesbaarheid {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.spacing-grid-typografie-leesbaarheid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.spacing-card-typografie-leesbaarheid {
  flex: 1 1 calc(50% - 0.75rem);
  min-width: 180px;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 10px;
  border: 2px solid #e2e8f0;
  text-align: center;
}

.spacing-card-title-typografie-leesbaarheid {
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.spacing-card-value-typografie-leesbaarheid {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #06b6d4;
  margin-bottom: 0.5rem;
}

.spacing-card-description-typografie-leesbaarheid {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
}

.spacing-image-typografie-leesbaarheid {
  flex: 1 1 50%;
}

.spacing-image-content-typografie-leesbaarheid {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

.contrast-section-typografie-leesbaarheid {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.contrast-title-typografie-leesbaarheid {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1rem;
}

.contrast-subtitle-typografie-leesbaarheid {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
}

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

.contrast-image-typografie-leesbaarheid {
  flex: 1 1 50%;
}

.contrast-image-content-typografie-leesbaarheid {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.contrast-text-typografie-leesbaarheid {
  flex: 1 1 50%;
}

.contrast-paragraph-typografie-leesbaarheid {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.contrast-checklist-typografie-leesbaarheid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.checklist-item-typografie-leesbaarheid {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
}

.checklist-icon-typografie-leesbaarheid {
  color: #06b6d4;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.checklist-text-typografie-leesbaarheid {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.mobile-section-typografie-leesbaarheid {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.mobile-content-typografie-leesbaarheid {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.mobile-text-typografie-leesbaarheid {
  flex: 1 1 50%;
}

.mobile-title-typografie-leesbaarheid {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.mobile-paragraph-typografie-leesbaarheid {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.mobile-quote-typografie-leesbaarheid {
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #06b6d4;
  background: #ffffff;
  border-radius: 8px;
}

.mobile-quote-text-typografie-leesbaarheid {
  font-size: clamp(1.0625rem, 2vw + 0.5rem, 1.25rem);
  color: #0f172a;
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 1rem 0;
}

.mobile-quote-author-typografie-leesbaarheid {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

.mobile-image-typografie-leesbaarheid {
  flex: 1 1 50%;
}

.mobile-image-content-typografie-leesbaarheid {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

.tools-section-typografie-leesbaarheid {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.tools-title-typografie-leesbaarheid {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1rem;
}

.tools-subtitle-typografie-leesbaarheid {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
}

.tools-grid-typografie-leesbaarheid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.tool-card-typografie-leesbaarheid {
  flex: 1 1 260px;
  max-width: 340px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.tool-card-typografie-leesbaarheid:hover {
  border-color: #06b6d4;
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
  transform: translateY(-4px);
}

.tool-card-title-typografie-leesbaarheid {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.tool-card-text-typografie-leesbaarheid {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.conclusion-section-typografie-leesbaarheid {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.conclusion-content-typografie-leesbaarheid {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-typografie-leesbaarheid {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
}

.conclusion-text-typografie-leesbaarheid {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-steps-typografie-leesbaarheid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.step-item-typografie-leesbaarheid {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 10px;
  border-left: 4px solid #06b6d4;
  align-items: flex-start;
}

.step-number-typografie-leesbaarheid {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #06b6d4;
  flex-shrink: 0;
  min-width: 40px;
  line-height: 1;
}

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

.step-title-typografie-leesbaarheid {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0f172a;
}

.step-text-typografie-leesbaarheid {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

.disclaimer-section-typografie-leesbaarheid {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.disclaimer-content-typografie-leesbaarheid {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f0f9ff;
  border-left: 4px solid #0284c7;
  border-radius: 8px;
}

.disclaimer-title-typografie-leesbaarheid {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0c4a6e;
  margin-bottom: 1rem;
}

.disclaimer-text-typografie-leesbaarheid {
  font-size: 0.95rem;
  color: #1e3a8a;
  line-height: 1.7;
  margin: 0;
}

.related-section-typografie-leesbaarheid {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.related-title-typografie-leesbaarheid {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
}

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

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

.related-card-typografie-leesbaarheid:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.related-card-image-typografie-leesbaarheid {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-typografie-leesbaarheid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body-typografie-leesbaarheid {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.related-card-title-typografie-leesbaarheid {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}

.related-card-description-typografie-leesbaarheid {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-link-typografie-leesbaarheid {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #06b6d4;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-link-typografie-leesbaarheid:hover {
  color: #0891b2;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .hero-wrapper-typografie-leesbaarheid {
    flex-direction: column;
  }

  .hero-content-typografie-leesbaarheid {
    flex: 1 1 100%;
  }

  .hero-image-typografie-leesbaarheid {
    flex: 1 1 100%;
  }

  .intro-content-typografie-leesbaarheid,
  .lettertype-content-typografie-leesbaarheid,
  .hierarchy-content-typografie-leesbaarheid,
  .spacing-content-typografie-leesbaarheid,
  .contrast-wrapper-typografie-leesbaarheid,
  .mobile-content-typografie-leesbaarheid {
    flex-direction: column;
  }

  .hierarchy-image-typografie-leesbaarheid {
    order: 0;
  }

  .intro-text-typografie-leesbaarheid,
  .intro-image-typografie-leesbaarheid,
  .lettertype-text-typografie-leesbaarheid,
  .lettertype-image-typografie-leesbaarheid,
  .hierarchy-text-typografie-leesbaarheid,
  .hierarchy-image-typografie-leesbaarheid,
  .spacing-text-typografie-leesbaarheid,
  .spacing-image-typografie-leesbaarheid,
  .contrast-image-typografie-leesbaarheid,
  .contrast-text-typografie-leesbaarheid,
  .mobile-text-typografie-leesbaarheid,
  .mobile-image-typografie-leesbaarheid {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .spacing-grid-typografie-leesbaarheid {
    flex-direction: column;
  }

  .spacing-card-typografie-leesbaarheid {
    flex: 1 1 100%;
  }

  .related-cards-typografie-leesbaarheid {
    flex-direction: column;
    align-items: stretch;
  }

  .related-card-typografie-leesbaarheid {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section-typografie-leesbaarheid::before {
    width: 250px;
    height: 250px;
    right: -75px;
  }

  .breadcrumbs-typografie-leesbaarheid {
    font-size: 0.8125rem;
  }

  .hero-meta-typografie-leesbaarheid {
    flex-direction: column;
    gap: 0.75rem;
  }

  .meta-badge-typografie-leesbaarheid {
    width: 100%;
    justify-content: center;
  }

  .lettertype-tips-typografie-leesbaarheid,
  .hierarchy-benefits-typografie-leesbaarheid,
  .contrast-checklist-typografie-leesbaarheid,
  .conclusion-steps-typografie-leesbaarheid {
    gap: 0.75rem;
  }

  .tip-item-typografie-leesbaarheid,
  .step-item-typografie-leesbaarheid {
    padding: 1rem;
  }

  .tools-grid-typografie-leesbaarheid {
    gap: 1rem;
  }

  .tool-card-typografie-leesbaarheid {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.main-visuele-hierarchie-layout {
  width: 100%;
}

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

.hero-section-visuele-hierarchie-layout {
  background: #111827;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.breadcrumbs-visuele-hierarchie-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.breadcrumbs-visuele-hierarchie-layout a {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-visuele-hierarchie-layout a:hover {
  color: #22d3ee;
  text-decoration: underline;
}

.breadcrumbs-visuele-hierarchie-layout span {
  color: #9ca3af;
}

.hero-content-visuele-hierarchie-layout {
  margin-bottom: 3rem;
}

.hero-title-visuele-hierarchie-layout {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-visuele-hierarchie-layout {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #d1d5db;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-width: 700px;
}

.meta-badges-visuele-hierarchie-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

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

.meta-badge-visuele-hierarchie-layout i {
  font-size: 0.875rem;
}

.hero-image-container-visuele-hierarchie-layout {
  margin-top: 3rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.2);
}

.hero-image-visuele-hierarchie-layout {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

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

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

.intro-text-visuele-hierarchie-layout {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-visuele-hierarchie-layout {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.intro-paragraph-visuele-hierarchie-layout {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: #374151;
  margin-bottom: 1.5rem;
}

.intro-image-visuele-hierarchie-layout {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-visuele-hierarchie-layout {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .intro-wrapper-visuele-hierarchie-layout {
    flex-direction: column;
  }
  
  .intro-text-visuele-hierarchie-layout,
  .intro-image-visuele-hierarchie-layout {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.section-header-visuele-hierarchie-layout {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-title-visuele-hierarchie-layout {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.section-subtitle-visuele-hierarchie-layout {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.principles-grid-visuele-hierarchie-layout {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.principle-card-visuele-hierarchie-layout {
  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-left: 4px solid #06b6d4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.principle-card-visuele-hierarchie-layout:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.principle-icon-visuele-hierarchie-layout {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 8px;
  color: #06b6d4;
  font-size: 1.5rem;
}

.principle-card-title-visuele-hierarchie-layout {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.principle-card-text-visuele-hierarchie-layout {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.6;
  color: #64748b;
}

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

.layout-section-visuele-hierarchie-layout {
  background: #1f2937;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.layout-wrapper-visuele-hierarchie-layout {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.layout-text-visuele-hierarchie-layout {
  flex: 1 1 50%;
  max-width: 50%;
}

.layout-title-visuele-hierarchie-layout {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.layout-paragraph-visuele-hierarchie-layout {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: #d1d5db;
  margin-bottom: 1.5rem;
}

.layout-highlight-visuele-hierarchie-layout {
  background: rgba(6, 182, 212, 0.1);
  padding: 1.5rem;
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
  margin-top: 2rem;
}

.highlight-text-visuele-hierarchie-layout {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.0625rem);
  color: #e0e7ff;
  line-height: 1.6;
}

.layout-image-visuele-hierarchie-layout {
  flex: 1 1 50%;
  max-width: 50%;
}

.layout-img-visuele-hierarchie-layout {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .layout-wrapper-visuele-hierarchie-layout {
    flex-direction: column;
  }
  
  .layout-text-visuele-hierarchie-layout,
  .layout-image-visuele-hierarchie-layout {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practice-section-visuele-hierarchie-layout {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-wrapper-visuele-hierarchie-layout {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.practice-wrapper-visuele-hierarchie-layout:nth-child(even) {
  flex-direction: row-reverse;
}

.practice-text-visuele-hierarchie-layout {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-subheading-visuele-hierarchie-layout {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.375rem, 3vw + 0.5rem, 1.875rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.practice-paragraph-visuele-hierarchie-layout {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.7;
  color: #374151;
}

.practice-image-visuele-hierarchie-layout {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-img-visuele-hierarchie-layout {
  width: 100%;
  height: auto;
  max-height: 380px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .practice-wrapper-visuele-hierarchie-layout,
  .practice-wrapper-visuele-hierarchie-layout:nth-child(even) {
    flex-direction: column;
  }
  
  .practice-text-visuele-hierarchie-layout,
  .practice-image-visuele-hierarchie-layout {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.design-steps-section-visuele-hierarchie-layout {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.step-item-visuele-hierarchie-layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.step-item-visuele-hierarchie-layout:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number-visuele-hierarchie-layout {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

.step-title-visuele-hierarchie-layout {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.step-text-visuele-hierarchie-layout {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.6;
  color: #64748b;
}

@media (max-width: 768px) {
  .steps-container-visuele-hierarchie-layout {
    grid-template-columns: 1fr;
  }
}

.common-mistakes-section-visuele-hierarchie-layout {
  background: #111827;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.mistakes-wrapper-visuele-hierarchie-layout {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.mistakes-text-visuele-hierarchie-layout {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-title-visuele-hierarchie-layout {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.mistakes-paragraph-visuele-hierarchie-layout {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: #d1d5db;
  margin-bottom: 2rem;
}

.mistake-list-visuele-hierarchie-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mistake-item-visuele-hierarchie-layout {
  padding: 1.25rem;
  background: rgba(6, 182, 212, 0.08);
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
}

.mistake-label-visuele-hierarchie-layout {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #22d3ee;
  margin-bottom: 0.5rem;
}

.mistake-desc-visuele-hierarchie-layout {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.mistakes-image-visuele-hierarchie-layout {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-img-visuele-hierarchie-layout {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.15);
}

@media (max-width: 768px) {
  .mistakes-wrapper-visuele-hierarchie-layout {
    flex-direction: column;
  }
  
  .mistakes-text-visuele-hierarchie-layout,
  .mistakes-image-visuele-hierarchie-layout {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-visuele-hierarchie-layout {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-visuele-hierarchie-layout {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-visuele-hierarchie-layout {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-text-visuele-hierarchie-layout {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  color: #374151;
  margin-bottom: 1.5rem;
  text-align: left;
}

.conclusion-quote-visuele-hierarchie-layout {
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
  margin: 2rem 0;
}

.quote-text-visuele-hierarchie-layout {
  font-size: clamp(1.0625rem, 2vw + 0.5rem, 1.25rem);
  font-style: italic;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.quote-author-visuele-hierarchie-layout {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #64748b;
  font-style: normal;
}

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

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

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

.related-card-visuele-hierarchie-layout:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.related-card-image-visuele-hierarchie-layout {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-img-visuele-hierarchie-layout {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-visuele-hierarchie-layout {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.related-card-text-visuele-hierarchie-layout {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  line-height: 1.6;
  color: #64748b;
  flex-grow: 1;
}

.related-link-visuele-hierarchie-layout {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #06b6d4;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-link-visuele-hierarchie-layout:hover {
  color: #0891b2;
  gap: 0.75rem;
}

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

.disclaimer-section-visuele-hierarchie-layout {
  background: #f1f5f9;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-visuele-hierarchie-layout {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-visuele-hierarchie-layout {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #92400e;
  margin-bottom: 1rem;
}

.disclaimer-text-visuele-hierarchie-layout {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.7;
  color: #5a4a3a;
}

@media (max-width: 768px) {
  .hero-section-visuele-hierarchie-layout {
    padding: 2rem 0;
  }

  .hero-image-container-visuele-hierarchie-layout {
    margin-top: 2rem;
  }

  .principles-grid-visuele-hierarchie-layout,
  .related-cards-visuele-hierarchie-layout {
    gap: 1rem;
  }

  .steps-container-visuele-hierarchie-layout {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-visuele-hierarchie-layout {
    font-size: 0.8125rem;
    gap: 0.25rem;
  }

  .meta-badges-visuele-hierarchie-layout {
    flex-direction: column;
    gap: 0.5rem;
  }

  .meta-badge-visuele-hierarchie-layout {
    width: 100%;
    justify-content: flex-start;
  }
}

.main-grafische-elementen-iconen {
  width: 100%;
  overflow-x: hidden;
}

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

.hero-section-grafische-elementen-iconen {
  background: #111827;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.breadcrumbs-grafische-elementen-iconen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-grafische-elementen-iconen a {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-grafische-elementen-iconen a:hover {
  color: #22d3ee;
}

.breadcrumbs-grafische-elementen-iconen span {
  color: #6b7280;
}

.hero-content-grafische-elementen-iconen {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title-grafische-elementen-iconen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 6vw + 0.5rem, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-grafische-elementen-iconen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #d1d5db;
  max-width: 600px;
  line-height: 1.5;
}

.hero-meta-grafische-elementen-iconen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

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

.meta-badge-grafische-elementen-iconen i {
  font-size: 0.875rem;
}

.hero-image-wrapper-grafische-elementen-iconen {
  width: 100%;
  max-width: 800px;
  margin-top: 2rem;
  border-radius: 16px;
  overflow: hidden;
}

.hero-image-grafische-elementen-iconen {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.hero-stats-grafische-elementen-iconen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(107, 114, 128, 0.3);
}

.stat-item-grafische-elementen-iconen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-grafische-elementen-iconen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

.stat-label-grafische-elementen-iconen {
  font-size: 0.875rem;
  color: #9ca3af;
  font-weight: 500;
}

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

.intro-content-grafische-elementen-iconen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-grafische-elementen-iconen {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-title-grafische-elementen-iconen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.intro-description-grafische-elementen-iconen {
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  color: #475569;
  line-height: 1.7;
}

.intro-image-grafische-elementen-iconen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-grafische-elementen-iconen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.principles-section-grafische-elementen-iconen {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.principles-header-grafische-elementen-iconen {
  text-align: center;
  margin-bottom: 3rem;
}

.principles-title-grafische-elementen-iconen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.principles-subtitle-grafische-elementen-iconen {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
}

.principles-grid-grafische-elementen-iconen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.principle-card-grafische-elementen-iconen {
  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-left: 4px solid #06b6d4;
  transition: all 0.3s ease;
}

.principle-card-grafische-elementen-iconen:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.principle-number-grafische-elementen-iconen {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

.principle-title-grafische-elementen-iconen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.principle-text-grafische-elementen-iconen {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.methodology-section-grafische-elementen-iconen {
  background: #111827;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.methodology-content-grafische-elementen-iconen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.methodology-text-grafische-elementen-iconen {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.methodology-title-grafische-elementen-iconen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.methodology-description-grafische-elementen-iconen {
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  color: #d1d5db;
  line-height: 1.7;
}

.steps-container-grafische-elementen-iconen {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1rem;
}

.step-item-grafische-elementen-iconen {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
}

.step-number-grafische-elementen-iconen {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #06b6d4;
  min-width: 50px;
  line-height: 1;
}

.step-content-grafische-elementen-iconen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-grafische-elementen-iconen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.step-text-grafische-elementen-iconen {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.methodology-image-grafische-elementen-iconen {
  flex: 1 1 50%;
  max-width: 50%;
}

.methodology-img-grafische-elementen-iconen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

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

.features-header-grafische-elementen-iconen {
  text-align: center;
  margin-bottom: 3rem;
}

.features-title-grafische-elementen-iconen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.features-subtitle-grafische-elementen-iconen {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid-grafische-elementen-iconen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

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

.feature-card-grafische-elementen-iconen:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: #06b6d4;
}

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

.feature-card-title-grafische-elementen-iconen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
}

.feature-card-text-grafische-elementen-iconen {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.implementation-section-grafische-elementen-iconen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-content-grafische-elementen-iconen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.implementation-image-grafische-elementen-iconen {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-img-grafische-elementen-iconen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.implementation-text-grafische-elementen-iconen {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.implementation-title-grafische-elementen-iconen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.implementation-description-grafische-elementen-iconen {
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  color: #475569;
  line-height: 1.7;
}

.implementation-highlight-grafische-elementen-iconen {
  padding: 1.5rem;
  background: #f1f5f9;
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
}

.highlight-text-grafische-elementen-iconen {
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  color: #334155;
  line-height: 1.7;
  margin: 0;
}

.quote-section-grafische-elementen-iconen {
  background: #1f2937;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-grafische-elementen-iconen {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 2.5rem;
  border-left: 4px solid #06b6d4;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-text-grafische-elementen-iconen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

.quote-author-grafische-elementen-iconen {
  font-size: 0.9375rem;
  color: #cbd5e1;
  font-style: normal;
  font-weight: 500;
}

.best-practices-section-grafische-elementen-iconen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.best-practices-header-grafische-elementen-iconen {
  text-align: center;
  margin-bottom: 3rem;
}

.best-practices-title-grafische-elementen-iconen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
}

.practices-list-grafische-elementen-iconen {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practice-item-grafische-elementen-iconen {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  align-items: flex-start;
}

.practice-icon-grafische-elementen-iconen {
  width: 44px;
  height: 44px;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06b6d4;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.practice-content-grafische-elementen-iconen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.practice-title-grafische-elementen-iconen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

.practice-text-grafische-elementen-iconen {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.conclusion-section-grafische-elementen-iconen {
  background: #111827;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-grafische-elementen-iconen {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-grafische-elementen-iconen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-grafische-elementen-iconen {
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  color: #d1d5db;
  line-height: 1.8;
}

.cta-box-grafische-elementen-iconen {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-title-grafische-elementen-iconen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.cta-text-grafische-elementen-iconen {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #0f172a;
  margin: 0;
}

.cta-button-grafische-elementen-iconen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  background: #ffffff;
  color: #0891b2;
  border: 2px solid #ffffff;
  border-radius: 8px;
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  align-self: center;
  margin-top: 0.5rem;
}

.cta-button-grafische-elementen-iconen:hover {
  background: #f0f9fa;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.disclaimer-content-grafische-elementen-iconen {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.disclaimer-title-grafische-elementen-iconen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-grafische-elementen-iconen {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

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

.related-header-grafische-elementen-iconen {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-grafische-elementen-iconen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.related-subtitle-grafische-elementen-iconen {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.related-card-grafische-elementen-iconen:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.related-card-image-grafische-elementen-iconen {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-img-grafische-elementen-iconen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-grafische-elementen-iconen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

.related-card-title-grafische-elementen-iconen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.related-card-text-grafische-elementen-iconen {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #64748b;
  line-height: 1.6;
}

.related-link-grafische-elementen-iconen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #06b6d4;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-link-grafische-elementen-iconen:hover {
  color: #0891b2;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .hero-content-grafische-elementen-iconen {
    gap: 1.5rem;
  }

  .intro-content-grafische-elementen-iconen,
  .methodology-content-grafische-elementen-iconen,
  .implementation-content-grafische-elementen-iconen {
    flex-direction: column;
  }

  .intro-text-grafische-elementen-iconen,
  .intro-image-grafische-elementen-iconen,
  .methodology-text-grafische-elementen-iconen,
  .methodology-image-grafische-elementen-iconen,
  .implementation-image-grafische-elementen-iconen,
  .implementation-text-grafische-elementen-iconen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .principles-grid-grafische-elementen-iconen,
  .features-grid-grafische-elementen-iconen,
  .related-cards-grafische-elementen-iconen {
    flex-direction: column;
    align-items: center;
  }

  .principle-card-grafische-elementen-iconen,
  .feature-card-grafische-elementen-iconen,
  .related-card-grafische-elementen-iconen {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-stats-grafische-elementen-iconen {
    gap: 1.5rem;
  }

  .stat-item-grafische-elementen-iconen {
    flex: 1 1 auto;
    min-width: 120px;
  }

  .step-item-grafische-elementen-iconen {
    flex-direction: column;
    gap: 1rem;
  }

  .practice-item-grafische-elementen-iconen {
    flex-direction: column;
    gap: 1rem;
  }

  .practice-icon-grafische-elementen-iconen {
    width: 40px;
    height: 40px;
  }

  .featured-quote-grafische-elementen-iconen {
    padding: 1.5rem 2rem;
  }

  .cta-box-grafische-elementen-iconen {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title-grafische-elementen-iconen {
    word-break: break-word;
  }

  .hero-stats-grafische-elementen-iconen {
    flex-direction: column;
    gap: 1rem;
    border-top: none;
    padding-top: 0;
  }

  .stat-item-grafische-elementen-iconen {
    min-width: auto;
  }

  .breadcrumbs-grafische-elementen-iconen {
    font-size: 0.75rem;
  }

  .principles-grid-grafische-elementen-iconen,
  .features-grid-grafische-elementen-iconen {
    gap: 1rem;
  }

  .principle-card-grafische-elementen-iconen,
  .feature-card-grafische-elementen-iconen {
    max-width: 100%;
  }

  .steps-container-grafische-elementen-iconen {
    gap: 1rem;
  }

  .step-item-grafische-elementen-iconen {
    padding: 1rem;
  }

  .practices-list-grafische-elementen-iconen {
    gap: 1rem;
  }

  .practice-item-grafische-elementen-iconen {
    padding: 1rem;
  }
}

.main-responsief-ontwerp-aanpassingen {
  width: 100%;
}

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

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

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

.hero-content-responsief-ontwerp-aanpassingen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-block-responsief-ontwerp-aanpassingen {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-responsief-ontwerp-aanpassingen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-responsief-ontwerp-aanpassingen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 550px;
}

.hero-meta-responsief-ontwerp-aanpassingen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

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

.meta-badge-responsief-ontwerp-aanpassingen i {
  color: #06b6d4;
}

.hero-image-block-responsief-ontwerp-aanpassingen {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

@media (max-width: 768px) {
  .hero-content-responsief-ontwerp-aanpassingen {
    flex-direction: column;
  }

  .hero-image-block-responsief-ontwerp-aanpassingen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.breadcrumbs-responsief-ontwerp-aanpassingen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.breadcrumbs-responsief-ontwerp-aanpassingen a {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-responsief-ontwerp-aanpassingen a:hover {
  color: #22d3ee;
  text-decoration: underline;
}

.breadcrumbs-responsief-ontwerp-aanpassingen span {
  color: #64748b;
}

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

.intro-wrapper-responsief-ontwerp-aanpassingen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-responsief-ontwerp-aanpassingen {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-title-responsief-ontwerp-aanpassingen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}

.intro-description-responsief-ontwerp-aanpassingen {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
}

.intro-image-responsief-ontwerp-aanpassingen {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-featured-image-responsief-ontwerp-aanpassingen {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .intro-wrapper-responsief-ontwerp-aanpassingen {
    flex-direction: column;
  }

  .intro-image-responsief-ontwerp-aanpassingen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.breakpoints-section-responsief-ontwerp-aanpassingen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.section-header-responsief-ontwerp-aanpassingen {
  text-align: center;
  margin-bottom: 3rem;
}

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

.breakpoints-title-responsief-ontwerp-aanpassingen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1rem;
}

.section-subtitle-responsief-ontwerp-aanpassingen {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.breakpoints-content-responsief-ontwerp-aanpassingen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.breakpoints-text-responsief-ontwerp-aanpassingen {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.breakpoints-description-responsief-ontwerp-aanpassingen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
}

.breakpoints-list-responsief-ontwerp-aanpassingen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.breakpoint-item-responsief-ontwerp-aanpassingen {
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 10px;
  border-left: 4px solid #06b6d4;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.breakpoint-name-responsief-ontwerp-aanpassingen {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
}

.breakpoint-detail-responsief-ontwerp-aanpassingen {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.breakpoints-image-responsief-ontwerp-aanpassingen {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.breakpoints-visual-responsief-ontwerp-aanpassingen {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .breakpoints-content-responsief-ontwerp-aanpassingen {
    flex-direction: column;
  }

  .breakpoints-image-responsief-ontwerp-aanpassingen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.typography-section-responsief-ontwerp-aanpassingen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.typography-wrapper-responsief-ontwerp-aanpassingen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.typography-image-responsief-ontwerp-aanpassingen {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  order: -1;
}

.typography-visual-responsief-ontwerp-aanpassingen {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.typography-text-responsief-ontwerp-aanpassingen {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.typography-title-responsief-ontwerp-aanpassingen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}

.typography-description-responsief-ontwerp-aanpassingen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
}

.typography-highlights-responsief-ontwerp-aanpassingen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-box-responsief-ontwerp-aanpassingen {
  padding: 1.5rem;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 10px;
  border-left: 4px solid #06b6d4;
}

.highlight-text-responsief-ontwerp-aanpassingen {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.6;
  color: #0f172a;
}

.highlight-text-responsief-ontwerp-aanpassingen strong {
  color: #06b6d4;
  font-weight: 600;
}

@media (max-width: 768px) {
  .typography-wrapper-responsief-ontwerp-aanpassingen {
    flex-direction: column;
  }

  .typography-image-responsief-ontwerp-aanpassingen {
    order: 0;
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.images-colors-section-responsief-ontwerp-aanpassingen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.images-colors-wrapper-responsief-ontwerp-aanpassingen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.images-colors-text-responsief-ontwerp-aanpassingen {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.images-colors-title-responsief-ontwerp-aanpassingen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}

.images-colors-subtitle-responsief-ontwerp-aanpassingen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: #0f172a;
  margin-top: 1rem;
}

.images-colors-description-responsief-ontwerp-aanpassingen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
}

.images-colors-image-responsief-ontwerp-aanpassingen {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.images-colors-visual-responsief-ontwerp-aanpassingen {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .images-colors-wrapper-responsief-ontwerp-aanpassingen {
    flex-direction: column;
  }

  .images-colors-image-responsief-ontwerp-aanpassingen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.best-practices-section-responsief-ontwerp-aanpassingen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.best-practices-header-responsief-ontwerp-aanpassingen {
  text-align: center;
  margin-bottom: 3rem;
}

.best-practices-title-responsief-ontwerp-aanpassingen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1rem;
}

.best-practices-subtitle-responsief-ontwerp-aanpassingen {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #64748b;
}

.practices-grid-responsief-ontwerp-aanpassingen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.practice-card-responsief-ontwerp-aanpassingen {
  flex: 1 1 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.practice-card-responsief-ontwerp-aanpassingen:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #06b6d4;
}

.practice-number-responsief-ontwerp-aanpassingen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #06b6d4;
  line-height: 1;
}

.practice-content-responsief-ontwerp-aanpassingen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.practice-title-responsief-ontwerp-aanpassingen {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.practice-text-responsief-ontwerp-aanpassingen {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.6;
  color: #475569;
}

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

.quote-section-responsief-ontwerp-aanpassingen {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-responsief-ontwerp-aanpassingen {
  padding: clamp(2rem, 5vw, 3rem);
  border-left: 4px solid #06b6d4;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 8px;
  margin: 0;
}

.quote-text-responsief-ontwerp-aanpassingen {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 1rem;
  margin: 0;
}

.quote-author-responsief-ontwerp-aanpassingen {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #cbd5e1;
  font-style: normal;
  display: block;
  margin-top: 1.5rem;
}

.advanced-section-responsief-ontwerp-aanpassingen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.advanced-wrapper-responsief-ontwerp-aanpassingen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.advanced-text-responsief-ontwerp-aanpassingen {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.advanced-title-responsief-ontwerp-aanpassingen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}

.advanced-description-responsief-ontwerp-aanpassingen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
}

.advanced-callout-responsief-ontwerp-aanpassingen {
  padding: 1.5rem;
  background: #f8fafc;
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
}

.callout-text-responsief-ontwerp-aanpassingen {
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  line-height: 1.6;
  color: #0f172a;
}

.callout-text-responsief-ontwerp-aanpassingen strong {
  color: #06b6d4;
}

.advanced-image-responsief-ontwerp-aanpassingen {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advanced-visual-responsief-ontwerp-aanpassingen {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .advanced-wrapper-responsief-ontwerp-aanpassingen {
    flex-direction: column;
  }

  .advanced-image-responsief-ontwerp-aanpassingen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-responsief-ontwerp-aanpassingen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-title-responsief-ontwerp-aanpassingen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}

.conclusion-text-responsief-ontwerp-aanpassingen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
}

.conclusion-cta-responsief-ontwerp-aanpassingen {
  margin-top: 1.5rem;
}

.cta-button-responsief-ontwerp-aanpassingen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  background: #06b6d4;
  color: #000000;
  text-decoration: none;
  border-radius: 10px;
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #06b6d4;
}

.cta-button-responsief-ontwerp-aanpassingen:hover {
  background: #0891b2;
  border-color: #0891b2;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
}

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

.related-header-responsief-ontwerp-aanpassingen {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-responsief-ontwerp-aanpassingen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.related-subtitle-responsief-ontwerp-aanpassingen {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #64748b;
}

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

.related-card-responsief-ontwerp-aanpassingen {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.related-card-responsief-ontwerp-aanpassingen:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.related-card-image-responsief-ontwerp-aanpassingen {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f8fafc;
}

.related-image-responsief-ontwerp-aanpassingen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-responsief-ontwerp-aanpassingen {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-responsief-ontwerp-aanpassingen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-description-responsief-ontwerp-aanpassingen {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.6;
  color: #64748b;
}

.related-link-responsief-ontwerp-aanpassingen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #06b6d4;
  text-decoration: none;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  font-weight: 600;
  transition: all 0.2s ease;
  margin-top: auto;
}

.related-link-responsief-ontwerp-aanpassingen:hover {
  color: #0891b2;
  gap: 0.75rem;
}

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

.disclaimer-section-responsief-ontwerp-aanpassingen {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-responsief-ontwerp-aanpassingen {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 10px;
  border-left: 4px solid #06b6d4;
}

.disclaimer-title-responsief-ontwerp-aanpassingen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-responsief-ontwerp-aanpassingen {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.7;
  color: #475569;
}

@media (max-width: 768px) {
  .hero-content-responsief-ontwerp-aanpassingen {
    flex-direction: column;
  }

  .breadcrumbs-responsief-ontwerp-aanpassingen {
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .hero-title-responsief-ontwerp-aanpassingen {
    word-break: break-word;
  }

  .meta-badge-responsief-ontwerp-aanpassingen {
    font-size: 0.8125rem;
    padding: 0.4rem 0.875rem;
  }
}

.design-studio-narrative-about {
  width: 100%;
}

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

.design-studio-narrative-about section {
  width: 100%;
  overflow: hidden;
}

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

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

.hero-headline-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
}

.hero-subheading-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: #d1d5db;
  max-width: 700px;
  line-height: 1.6;
}

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

.stat-block-about {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.stat-label-about {
  font-size: 0.875rem;
  color: #9ca3af;
  font-weight: 500;
}

.hero-image-about {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: clamp(1rem, 2vw, 2rem);
}

@media (min-width: 768px) {
  .creative-foundation-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .creative-foundation-about {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

.design-philosophy-about {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.design-philosophy-content-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: flex-start;
}

.philosophy-text-about {
  flex: 1 1 300px;
  min-width: 300px;
}

.philosophy-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.philosophy-description-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.philosophy-highlight-about {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-tertiary);
  border-left: 4px solid var(--color-primary);
  margin-top: 1.5rem;
}

.philosophy-highlight-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-dark-muted);
  font-style: italic;
  line-height: 1.7;
}

.philosophy-image-about {
  flex: 1 1 280px;
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

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

  .philosophy-image-about {
    max-width: 100%;
  }
}

.visual-methodology-about {
  background: var(--color-bg-dark-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

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

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

.methodology-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.methodology-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.step-card-about {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-dark-tertiary);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.step-card-about:hover {
  background: rgba(6, 182, 212, 0.1);
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateX(8px);
}

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

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

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

.step-description-about {
  font-size: 0.9375rem;
  color: #d1d5db;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .visual-methodology-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

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

.expertise-header-about {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.expertise-subtitle-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-dark-muted);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.expertise-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.expertise-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.expertise-card-about:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--color-primary);
}

.expertise-card-icon-about {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.12);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.expertise-card-title-about {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.3;
}

.expertise-card-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-dark-secondary);
  line-height: 1.65;
}

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

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

.vision-content-about {
  max-width: 900px;
}

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

.vision-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.vision-text-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #d1d5db;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.vision-highlight-block-about {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(6, 182, 212, 0.08);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin-top: 2rem;
}

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

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

.vision-highlight-title-about {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.vision-highlight-text-about {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.vision-image-about {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 1024px) {
  .future-vision-about {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

.compliance-notice-about {
  background: var(--color-bg-light-tertiary);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid #e5e7eb;
}

.disclaimer-inner-about {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.disclaimer-icon-about {
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.disclaimer-text-wrapper-about {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.disclaimer-heading-about {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 700;
  color: var(--color-text-dark);
}

.disclaimer-body-about {
  font-size: 0.875rem;
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .disclaimer-inner-about {
    flex-direction: column;
    gap: 0.75rem;
  }

  .disclaimer-icon-about {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .design-studio-narrative-about {
    padding: 0;
  }

  .creative-foundation-about,
  .design-philosophy-about,
  .visual-methodology-about,
  .expertise-showcase-about,
  .future-vision-about,
  .compliance-notice-about {
    padding: clamp(2rem, 6vw, 3.5rem) 0;
  }
}

@media (min-width: 1024px) {
  .creative-foundation-about,
  .design-philosophy-about,
  .visual-methodology-about,
  .expertise-showcase-about,
  .future-vision-about {
    padding: clamp(4.5rem, 10vw, 8rem) 0;
  }
}

.legal-portal {
  font-family: var(--font-body);
  background: var(--color-bg-light-primary);
  color: var(--color-text-dark);
}

.legal-portal section {
  width: 100%;
  overflow: hidden;
}

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

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

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

.legal-portal-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-dark);
}

.legal-portal-hero-meta {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-muted);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-portal-content {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-light-primary);
}

.legal-portal-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
}

.legal-portal-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-portal-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-dark);
  margin-top: 1rem;
}

.legal-portal-content h2:first-child {
  margin-top: 0;
}

.legal-portal-content p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-dark-secondary);
}

.legal-portal-content li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-dark-secondary);
  margin-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-portal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
}

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

.legal-portal-contact-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
}

.legal-portal-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-dark);
}

.legal-portal-contact p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-dark-secondary);
}

.legal-portal-contact strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

.legal-portal-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .legal-portal-hero {
    padding: 5rem 0;
  }

  .legal-portal-content {
    padding: 5rem 0;
  }

  .legal-portal-contact {
    padding: 5rem 0;
  }

  .legal-portal-content-wrapper {
    gap: 3rem;
  }
}

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

  .legal-portal-content {
    padding: 6rem 0;
  }

  .legal-portal-contact {
    padding: 6rem 0;
  }

  .legal-portal-content-wrapper {
    gap: 3.5rem;
  }
}

.thank-page {
  width: 100%;
}

.thank-section {
  background: var(--color-bg-dark-primary);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 700px;
  margin: 0 auto;
}

.thank-icon {
  width: clamp(60px, 12vw, 120px);
  height: clamp(60px, 12vw, 120px);
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon i {
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: var(--color-primary);
}

.thank-section h1 {
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
  letter-spacing: -0.02em;
}

.thank-subtitle {
  color: var(--color-primary-light);
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 2.5vw + 0.5rem, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-description {
  color: var(--color-text-light-secondary);
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-follow-up {
  color: var(--color-text-light-muted);
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-dark);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

  .thank-content {
    gap: clamp(2rem, 5vw, 3.5rem);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .btn-primary:hover {
    transform: translateY(-3px);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
  }

  .thank-content {
    gap: 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-icon {
    animation: none;
  }

  .btn {
    transition: none;
  }
}

@media print {
  .thank-section {
    min-height: auto;
  }

  .btn {
    display: none;
  }
}

.error-404-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;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.error-decoration {
  position: absolute;
  font-size: clamp(2rem, 8vw, 4rem);
  opacity: 0.08;
  animation: float 6s ease-in-out infinite;
}

.error-decoration i {
  color: var(--color-primary);
}

.error-decoration-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.error-decoration-2 {
  top: 60%;
  right: 8%;
  animation-delay: 2s;
  font-size: clamp(2.5rem, 10vw, 5rem);
}

.error-decoration-3 {
  bottom: 15%;
  left: 10%;
  animation-delay: 4s;
}

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

.error-code-wrapper {
  position: relative;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
  position: relative;
  z-index: 3;
  text-shadow: 0 0 30px rgba(6, 182, 212, 0.2);
}

.error-code-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at center, rgba(6, 182, 212, 0.1), transparent);
  border-radius: var(--radius-xl);
  z-index: 1;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--color-text-light);
  margin: clamp(1rem, 3vw, 2rem) 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.error-message {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-light-secondary);
  max-width: 600px;
  margin: clamp(1rem, 2vw, 1.5rem) auto;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: var(--color-text-light-muted);
  max-width: 550px;
  margin: clamp(0.75rem, 2vw, 1.5rem) auto clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-bg-dark-primary);
  border: 2px solid var(--color-primary);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
}

.error-visual {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.design-element {
  position: absolute;
  border: 2px solid rgba(6, 182, 212, 0.15);
  animation: rotate 20s linear infinite;
}

.design-element-1 {
  width: clamp(80px, 15vw, 200px);
  height: clamp(80px, 15vw, 200px);
  top: 5%;
  right: 10%;
  border-radius: 20px;
  animation-delay: 0s;
}

.design-element-2 {
  width: clamp(60px, 10vw, 150px);
  height: clamp(60px, 10vw, 150px);
  bottom: 20%;
  left: 8%;
  border-radius: 50%;
  animation-delay: 5s;
  animation-direction: reverse;
}

.design-element-3 {
  width: clamp(100px, 18vw, 220px);
  height: clamp(100px, 18vw, 220px);
  top: 50%;
  left: 5%;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation-delay: 3s;
}

.design-element-4 {
  width: clamp(70px, 12vw, 180px);
  height: clamp(70px, 12vw, 180px);
  bottom: 10%;
  right: 5%;
  border-radius: 10px;
  animation-delay: 7s;
  animation-direction: reverse;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  .error-section {
    min-height: 100vh;
    padding: 2rem 0;
  }

  .error-code {
    text-shadow: 0 0 40px rgba(6, 182, 212, 0.25);
  }

  .error-message {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
  }

  .btn-primary {
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.35);
  }
}

@media (min-width: 1024px) {
  .error-section {
    min-height: 100vh;
    padding: 3rem 0;
  }

  .error-code {
    text-shadow: 0 0 50px rgba(6, 182, 212, 0.3);
  }

  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.45);
  }
}

@media (min-width: 1440px) {
  .error-code {
    text-shadow: 0 0 60px rgba(6, 182, 212, 0.35);
  }

  .error-content {
    padding: 0 2rem;
  }
}

.error-title,
.error-message,
.error-subtitle {
  word-break: break-word;
  hyphens: auto;
}

@media (max-width: 480px) {
  .error-code {
    letter-spacing: -0.05em;
  }

  .error-title {
    letter-spacing: -0.03em;
  }

  .error-message,
  .error-subtitle {
    padding: 0 var(--space-sm);
  }
}