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

:root {
  
  
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-primary-dark: #ffffff;
  --color-text-primary-light: #0a0f1e;
  --color-text-secondary-dark: #cbd5e1;
  --color-text-secondary-light: #475569;
  --color-text-muted-dark: #94a3b8;
  --color-text-muted-light: #64748b;
  
  
  --color-primary: #d4572a;
  --color-primary-hover: #c24620;
  --color-primary-light: #f97316;
  --color-secondary: #0066cc;
  --color-secondary-hover: #0052a3;
  --color-accent: #fbbf24;
  
  
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  
  
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  
  --tracking-tight: -0.02em;
  --tracking-normal: 0em;
  --tracking-wide: 0.05em;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: var(--line-height-normal);
  color: var(--color-text-primary-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  letter-spacing: var(--tracking-tight);
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

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

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

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

.section-hero {
  background: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 87, 42, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.section-hero .container {
  position: relative;
  z-index: 1;
}

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

.section-hero h2 {
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}

.section-hero p {
  color: var(--color-text-secondary-dark);
  font-size: 1.125rem;
  max-width: 600px;
  margin-bottom: var(--space-lg);
}

.section-light-primary {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary-light);
  padding: var(--space-3xl) var(--space-lg);
}

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

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

.section-light-secondary {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary-light);
  padding: var(--space-3xl) var(--space-lg);
}

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

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

.section-dark-accent {
  background: #1e293b;
  color: var(--color-text-primary-dark);
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
}

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

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

.grid {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

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

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

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

@media (max-width: 768px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.card {
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.card-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 87, 42, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-light {
  background: var(--color-bg-card-light);
  border: 1px solid #e2e8f0;
  color: var(--color-text-primary-light);
  box-shadow: var(--shadow-sm);
}

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

.card h3 {
  margin-top: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

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

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

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

.button-secondary:hover {
  background: var(--color-secondary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

.button-outline-light:hover {
  background: var(--color-text-primary-light);
  color: var(--color-bg-secondary);
}

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

.button-outline-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-accent);
}

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

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

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

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

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

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

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

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

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

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

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

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

.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

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

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

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-primary {
  background: rgba(212, 87, 42, 0.2);
  color: var(--color-primary);
}

.badge-secondary {
  background: rgba(0, 102, 204, 0.2);
  color: var(--color-secondary);
}

.badge-accent {
  background: rgba(251, 191, 36, 0.2);
  color: var(--color-accent);
}

.divider {
  height: 1px;
  background: #e2e8f0;
  margin: var(--space-lg) 0;
}

.divider-dark {
  background: rgba(255, 255, 255, 0.1);
}

ul, ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

li {
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-relaxed);
}

code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  background: #f1f5f9;
  color: #1e293b;
}

.section-dark-accent code {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-accent);
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.125rem;
  }
  
  .section-hero,
  .section-light-primary,
  .section-light-secondary,
  .section-dark-accent {
    padding: var(--space-2xl) var(--space-md);
  }
}

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

a:focus,
button:focus,
.button:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

* {
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

button, a, .button {
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

@media print {
  .button,
  .section-hero::before {
    display: none;
  }
}
.header-palette-studio {
  background: var(--color-bg-primary);
  padding: clamp(1rem, 2vw, 1.5rem) 0;
  position: static;
  z-index: 100;
  border-bottom: 1px solid rgba(212, 87, 42, 0.15);
  overflow: hidden;
}

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

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

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

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

.header-palette-studio-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  letter-spacing: var(--tracking-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.header-palette-studio-nav-link {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.header-palette-studio-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-text-primary-dark);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  white-space: nowrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.header-palette-studio-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
  z-index: 101;
}

.header-palette-studio-hamburger {
  width: 24px;
  height: 2.5px;
  background: var(--color-primary-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header-palette-studio-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.3s ease;
  z-index: 99;
  overflow-y: auto;
  padding-top: clamp(1rem, 2vw, 1.5rem);
}

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

.header-palette-studio-mobile-header {
  display: flex;
  justify-content: flex-end;
  padding: 0 clamp(1rem, 4vw, 2rem) clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(212, 87, 42, 0.15);
}

.header-palette-studio-mobile-close {
  background: transparent;
  border: none;
  color: var(--color-primary-light);
  font-size: 1.75rem;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

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

.header-palette-studio-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(1rem, 3vw, 1.5rem) 0;
  flex: 1;
}

.header-palette-studio-mobile-link {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: 500;
  text-decoration: none;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid rgba(212, 87, 42, 0.08);
  transition: all 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.header-palette-studio-mobile-link:active {
  background: rgba(212, 87, 42, 0.1);
  color: var(--color-primary-light);
}

.header-palette-studio-mobile-cta {
  padding: clamp(0.875rem, 2vw, 1rem) clamp(1rem, 4vw, 2rem);
  margin: clamp(1rem, 3vw, 1.5rem);
  background: var(--color-primary);
  color: var(--color-text-primary-dark);
  font-size: clamp(0.9375rem, 2vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.header-palette-studio-mobile-cta:active {
  background: var(--color-primary-hover);
}

@media (min-width: 768px) {
  .header-palette-studio {
    padding: 1rem 0;
  }

  .header-palette-studio-mobile-toggle {
    display: none;
  }

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

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

  .header-palette-studio-cta-button {
    display: block;
  }
}

@media (max-width: 767px) {
  .header-palette-studio-logo-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
  }
}

    .typography-hub {
  width: 100%;
  overflow: hidden;
}

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

.hero-section-index::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 87, 42, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

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

.hero-text-block-index {
  flex: 1 1 45%;
  min-width: 0;
}

.hero-image-block-index {
  flex: 1 1 45%;
  min-width: 0;
}

.hero-title-index {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-subtitle-index {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.6;
}

.hero-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

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

.btn-hero-primary-index {
  background: #d4572a;
  color: #ffffff;
}

.btn-hero-primary-index:hover {
  background: #c24620;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 87, 42, 0.3);
}

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

.btn-hero-secondary-index:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fbbf24;
}

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

.stat-item-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-index {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #fbbf24;
  font-family: 'Playfair Display', serif;
}

.stat-label-index {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

  .hero-text-block-index,
  .hero-image-block-index {
    flex: 1 1 100%;
  }

  .hero-buttons-index {
    flex-direction: column;
  }

  .btn-hero-primary-index,
  .btn-hero-secondary-index {
    width: 100%;
    justify-content: center;
  }
}

.about-section-index {
  background: #ffffff;
  color: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.about-header-index {
  text-align: center;
}

.about-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #d4572a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.about-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.about-block-index {
  flex: 1 1 250px;
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.about-block-title-index {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: #0a0f1e;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.about-block-text-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

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

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

.process-header-index {
  text-align: center;
}

.process-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0066cc;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.process-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.process-steps-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.process-step-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.step-number-index {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #0066cc;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-index {
  flex: 1;
  padding-top: clamp(0.5rem, 1vw, 0.75rem);
}

.step-title-index {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #0a0f1e;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  font-weight: 700;
}

.step-text-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .process-step-index {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-index {
    min-width: auto;
  }
}

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

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

.features-header-index {
  text-align: center;
}

.features-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #d4572a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.features-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.feature-card-index {
  flex: 1 1 280px;
  max-width: 350px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card-index:hover {
  border-color: #d4572a;
  box-shadow: 0 10px 25px rgba(212, 87, 42, 0.1);
  transform: translateY(-4px);
}

.feature-icon-index {
  font-size: clamp(2.5rem, 4vw, 3rem);
  color: #d4572a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.feature-card-title-index {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: #0a0f1e;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.feature-card-text-index {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.stats-section-index {
  background: #f8fafc;
  color: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.stats-header-index {
  text-align: center;
}

.stats-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0066cc;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.stats-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.stat-card-index {
  flex: 1 1 240px;
  max-width: 300px;
  padding: clamp(2rem, 3vw, 2.5rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-align: center;
}

.stat-card-number-index {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #0066cc;
  font-family: 'Playfair Display', serif;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.stat-card-label-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #0a0f1e;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  font-weight: 700;
}

.stat-card-description-index {
  font-size: clamp(0.8rem, 0.95vw, 0.9rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.faq-section-index {
  background: #ffffff;
  color: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.faq-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #d4572a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.faq-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.faq-list-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.faq-item-index {
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #f8fafc;
  border-left: 4px solid #d4572a;
  border-radius: 4px;
}

.faq-question-index {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: #0a0f1e;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.faq-answer-index {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.posts-section-index {
  background: #f8fafc;
  color: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.posts-header-index {
  text-align: center;
}

.posts-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0066cc;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.posts-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.post-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.post-card-index:hover {
  border-color: #0066cc;
  box-shadow: 0 10px 25px rgba(0, 102, 204, 0.1);
  transform: translateY(-4px);
}

.post-image-index {
  width: 100%;
  height: auto;
  max-height: 250px;
  overflow: hidden;
}

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

.post-content-index {
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.25rem);
  flex: 1;
}

.post-title-index {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: #0a0f1e;
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}

.post-description-index {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.post-link-index {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #0066cc;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.post-link-index:hover {
  color: #d4572a;
  text-decoration: underline;
}

.posts-cta-index {
  display: flex;
  justify-content: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.posts-cta-link-index {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #0066cc;
  color: #ffffff;
  border-radius: 6px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.posts-cta-link-index:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.cta-section-index {
  background: #ffffff;
  color: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-content-index {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.cta-box-index {
  flex: 1 1 45%;
  min-width: 0;
}

.cta-image-index {
  flex: 1 1 45%;
  min-width: 0;
}

.cta-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #d4572a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.cta-text-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.cta-button-index {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #d4572a;
  color: #ffffff;
  border: 2px solid #d4572a;
  border-radius: 6px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button-index:hover {
  background: #c24620;
  border-color: #c24620;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 87, 42, 0.3);
}

.cta-img-index {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

  .cta-box-index,
  .cta-image-index {
    flex: 1 1 100%;
  }
}

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

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

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

.cookie-banner-text-index {
  color: #ffffff;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  margin: 0;
  line-height: 1.5;
  max-width: 400px;
}

.cookie-banner-buttons-index {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex-wrap: wrap;
}

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: clamp(0.8rem, 0.95vw, 0.9rem);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

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

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

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

@media (max-width: 640px) {
  .cookie-banner-index {
    flex-direction: column;
    padding: clamp(1rem, 2vw, 1.25rem);
  }

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

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

h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #d4572a;
}

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

.footer .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block !important;
}

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

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

.footer h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary-dark);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: var(--tracking-tight);
}

.footer p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-about p {
  max-width: 85ch;
}

.footer-contact p {
  margin-bottom: 0.75rem;
}

.footer-contact p:last-child {
  margin-bottom: 0;
}

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

.footer-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
}

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

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.footer-copyright p {
  font-size: clamp(0.8125rem, 0.95vw + 0.3rem, 0.95rem);
  color: var(--color-text-muted-dark);
  margin: 0;
  text-align: center;
}

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

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

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

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

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

.category-page-web-typography-design {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-web-typography-design {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-section-web-typography-design::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 87, 42, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

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

.hero-header-web-typography-design {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title-web-typography-design {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.hero-subtitle-web-typography-design {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 0;
}

.hero-meta-web-typography-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.5rem);
  justify-content: center;
  align-items: center;
}

.hero-meta-item-web-typography-design {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #f59e0b;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.hero-meta-item-web-typography-design i {
  font-size: 1.25rem;
}

.posts-section-web-typography-design {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.posts-content-web-typography-design {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.posts-header-web-typography-design {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.posts-title-web-typography-design {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.posts-subtitle-web-typography-design {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
}

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

.card-web-typography-design {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card-web-typography-design:hover {
  border-color: #d4572a;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
}

.card-image-web-typography-design {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-web-typography-design > * {
  padding: 0 1.5rem;
}

.card-web-typography-design > *:first-of-type {
  padding-top: 0;
}

.card-title-web-typography-design {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #0a0f1e;
  line-height: 1.3;
  margin: 0;
  padding-top: 1.5rem;
}

.card-description-web-typography-design {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

.card-meta-web-typography-design {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0 1.5rem;
}

.card-meta-item-web-typography-design {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
}

.card-meta-item-web-typography-design i {
  color: #d4572a;
  font-size: 0.95rem;
}

.card-link-web-typography-design {
  padding: 0 1.5rem 1.5rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #d4572a;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-link-web-typography-design:hover {
  color: #c24620;
  text-decoration: underline;
}

.principles-section-web-typography-design {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.principles-content-web-typography-design {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.principles-header-web-typography-design {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.principles-title-web-typography-design {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.principles-subtitle-web-typography-design {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
}

.principles-list-web-typography-design {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 950px;
  margin: 0 auto;
}

.principle-item-web-typography-design {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.principle-number-web-typography-design {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d4572a;
  color: #ffffff;
  border-radius: 50%;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
}

.principle-text-web-typography-design {
  flex: 1;
  min-width: 0;
}

.principle-item-title-web-typography-design {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #0a0f1e;
  margin: 0 0 0.75rem 0;
}

.principle-item-description-web-typography-design {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.resources-section-web-typography-design {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.resources-content-web-typography-design {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.resources-header-web-typography-design {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.resources-title-web-typography-design {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.resources-description-web-typography-design {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 0;
}

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

.resource-card-web-typography-design {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 240px;
  max-width: 320px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.resource-card-web-typography-design:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 158, 11, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(212, 87, 42, 0.15);
}

.resource-icon-web-typography-design {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #f59e0b;
}

.resource-title-web-typography-design {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.resource-text-web-typography-design {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #cbd5e1;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-section-web-typography-design {
    padding: 3rem 0;
  }

  .hero-section-web-typography-design::before {
    width: 300px;
    height: 300px;
    right: -10%;
  }

  .posts-section-web-typography-design {
    padding: 3rem 0;
  }

  .posts-grid-web-typography-design {
    flex-direction: column;
    align-items: center;
  }

  .card-web-typography-design {
    max-width: 100%;
    width: 100%;
  }

  .principle-item-web-typography-design {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
  }

  .principle-number-web-typography-design {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .principles-section-web-typography-design {
    padding: 3rem 0;
  }

  .resources-section-web-typography-design {
    padding: 3rem 0;
  }

  .resources-grid-web-typography-design {
    flex-direction: column;
    align-items: center;
  }

  .resource-card-web-typography-design {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-meta-web-typography-design {
    flex-direction: column;
    gap: 0.75rem;
  }

  .card-meta-web-typography-design {
    flex-direction: column;
    gap: 0.75rem;
  }

  .principle-item-web-typography-design {
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .posts-grid-web-typography-design {
    gap: 2.5rem;
  }

  .resources-grid-web-typography-design {
    gap: 2.5rem;
  }
}

.main-kleurschema-webdesign {
  width: 100%;
  overflow-x: hidden;
}

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

.hero-section-kleurschema-webdesign::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 87, 42, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-section-kleurschema-webdesign .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs-kleurschema-webdesign {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-kleurschema-webdesign a {
  color: #cbd5e1;
  transition: color 0.3s ease;
}

.breadcrumbs-kleurschema-webdesign a:hover {
  color: #fbbf24;
  text-decoration: none;
}

.breadcrumbs-kleurschema-webdesign span {
  color: #64748b;
}

.breadcrumbs-kleurschema-webdesign span:last-child {
  color: #cbd5e1;
}

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

.hero-text-kleurschema-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-kleurschema-webdesign {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.hero-meta-kleurschema-webdesign {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.meta-item-kleurschema-webdesign {
  color: #94a3b8;
}

.meta-separator-kleurschema-webdesign {
  color: #475569;
}

.hero-image-kleurschema-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-kleurschema-webdesign {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

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

  .hero-text-kleurschema-webdesign,
  .hero-image-kleurschema-webdesign {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.intro-text-kleurschema-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-kleurschema-webdesign {
  color: #d4572a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-paragraph-kleurschema-webdesign {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-kleurschema-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-kleurschema-webdesign {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

  .intro-text-kleurschema-webdesign,
  .intro-image-kleurschema-webdesign {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.content-text-one-kleurschema-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-kleurschema-webdesign {
  color: #0066cc;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-paragraph-one-kleurschema-webdesign {
  color: #334155;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-image-one-kleurschema-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-one-kleurschema-webdesign {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.content-text-two-kleurschema-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-kleurschema-webdesign {
  color: #d4572a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-paragraph-two-kleurschema-webdesign {
  color: #334155;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-image-two-kleurschema-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-two-kleurschema-webdesign {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.content-text-three-kleurschema-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-three-kleurschema-webdesign {
  color: #0066cc;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-paragraph-three-kleurschema-webdesign {
  color: #334155;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-image-three-kleurschema-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-three-kleurschema-webdesign {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .content-wrapper-three-kleurschema-webdesign {
    flex-direction: column;
  }

  .content-text-three-kleurschema-webdesign,
  .content-image-three-kleurschema-webdesign {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.tips-content-kleurschema-webdesign {
  display: flex;
  flex-direction: column;
}

.tips-title-kleurschema-webdesign {
  color: #d4572a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 2.5rem;
  text-align: center;
  line-height: 1.2;
}

.tips-grid-kleurschema-webdesign {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tip-card-kleurschema-webdesign {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 250px;
  max-width: 350px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.tip-card-kleurschema-webdesign:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: #d4572a;
}

.tip-card-title-kleurschema-webdesign {
  color: #0a0f1e;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.tip-card-text-kleurschema-webdesign {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tip-card-kleurschema-webdesign {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tools-section-kleurschema-webdesign {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-content-kleurschema-webdesign {
  display: flex;
  flex-direction: column;
}

.tools-title-kleurschema-webdesign {
  color: #0066cc;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.2;
}

.tools-subtitle-kleurschema-webdesign {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  text-align: center;
  margin-bottom: 2.5rem;
}

.tools-list-kleurschema-webdesign {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.tool-item-kleurschema-webdesign {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #0066cc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.tool-item-kleurschema-webdesign:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tool-item-title-kleurschema-webdesign {
  color: #0a0f1e;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.tool-item-text-kleurschema-webdesign {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.conclusion-content-kleurschema-webdesign {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.conclusion-title-kleurschema-webdesign {
  color: #d4572a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-kleurschema-webdesign {
  color: #334155;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  max-width: 800px;
}

.conclusion-image-kleurschema-webdesign {
  margin-top: 1.5rem;
}

.conclusion-img-kleurschema-webdesign {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-height: 450px;
  object-fit: cover;
  width: 100%;
}

.disclaimer-section-kleurschema-webdesign {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-kleurschema-webdesign {
  max-width: 800px;
}

.disclaimer-title-kleurschema-webdesign {
  color: #0a0f1e;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.disclaimer-text-kleurschema-webdesign {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.related-content-kleurschema-webdesign {
  display: flex;
  flex-direction: column;
}

.related-title-kleurschema-webdesign {
  color: #0066cc;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 2.5rem;
  text-align: center;
  line-height: 1.2;
}

.related-cards-kleurschema-webdesign {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-kleurschema-webdesign {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.related-card-kleurschema-webdesign:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: #d4572a;
}

.related-image-kleurschema-webdesign {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e2e8f0;
}

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

.related-text-kleurschema-webdesign {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.related-card-title-kleurschema-webdesign {
  color: #0a0f1e;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
}

.related-card-description-kleurschema-webdesign {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}

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

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

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

.main-typografische-hierarchie-opbouwen {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-typografische-hierarchie-opbouwen {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-section-typografische-hierarchie-opbouwen::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 87, 42, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-section-typografische-hierarchie-opbouwen .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs-typografische-hierarchie-opbouwen {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.875rem;
}

.breadcrumbs-typografische-hierarchie-opbouwen a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-typografische-hierarchie-opbouwen a:hover {
  color: #fbbf24;
}

.breadcrumbs-typografische-hierarchie-opbouwen span {
  color: #64748b;
}

.hero-content-typografische-hierarchie-opbouwen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-typografische-hierarchie-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-typografische-hierarchie-opbouwen {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-typografische-hierarchie-opbouwen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-meta-typografische-hierarchie-opbouwen {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: #94a3b8;
}

.meta-item-typografische-hierarchie-opbouwen {
  color: #cbd5e1;
}

.meta-divider-typografische-hierarchie-opbouwen {
  color: #475569;
}

.hero-image-wrapper-typografische-hierarchie-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-typografische-hierarchie-opbouwen {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .hero-content-typografische-hierarchie-opbouwen {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .hero-text-wrapper-typografische-hierarchie-opbouwen,
  .hero-image-wrapper-typografische-hierarchie-opbouwen {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .breadcrumbs-typografische-hierarchie-opbouwen {
    flex-wrap: wrap;
  }
}

.intro-section-typografische-hierarchie-opbouwen {
  background: #ffffff;
  color: #0a0f1e;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.intro-content-typografische-hierarchie-opbouwen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.intro-text-typografische-hierarchie-opbouwen {
  flex: 1 1 60%;
  max-width: 60%;
}

.intro-title-typografische-hierarchie-opbouwen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #d4572a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-typografische-hierarchie-opbouwen {
  font-size: 1rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-stats-typografische-hierarchie-opbouwen {
  flex: 1 1 40%;
  max-width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-card-typografische-hierarchie-opbouwen {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.stat-number-typografische-hierarchie-opbouwen {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #d4572a;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-typografische-hierarchie-opbouwen {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

@media (max-width: 768px) {
  .intro-content-typografische-hierarchie-opbouwen {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .intro-text-typografische-hierarchie-opbouwen,
  .intro-stats-typografische-hierarchie-opbouwen {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .intro-stats-typografische-hierarchie-opbouwen {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .stat-card-typografische-hierarchie-opbouwen {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

.content-section-one-typografische-hierarchie-opbouwen {
  background: #f8fafc;
  color: #0a0f1e;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.content-section-two-typografische-hierarchie-opbouwen {
  background: #ffffff;
  color: #0a0f1e;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.content-section-three-typografische-hierarchie-opbouwen {
  background: #f8fafc;
  color: #0a0f1e;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.content-text-block-typografische-hierarchie-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-block-typografische-hierarchie-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-typografische-hierarchie-opbouwen {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: #0a0f1e;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-section-one-typografische-hierarchie-opbouwen .content-title-typografische-hierarchie-opbouwen {
  color: #d4572a;
}

.content-section-two-typografische-hierarchie-opbouwen .content-title-typografische-hierarchie-opbouwen {
  color: #0066cc;
}

.content-section-three-typografische-hierarchie-opbouwen .content-title-typografische-hierarchie-opbouwen {
  color: #d4572a;
}

.content-paragraph-typografische-hierarchie-opbouwen {
  font-size: 1rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-image-typografische-hierarchie-opbouwen {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-typografische-hierarchie-opbouwen {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .content-text-block-typografische-hierarchie-opbouwen,
  .content-image-block-typografische-hierarchie-opbouwen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.highlight-section-typografische-hierarchie-opbouwen {
  background: #1e293b;
  color: #ffffff;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.featured-quote-typografische-hierarchie-opbouwen {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #fbbf24;
  background: rgba(251, 191, 36, 0.08);
  border-radius: 8px;
}

.quote-text-typografische-hierarchie-opbouwen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-typografische-hierarchie-opbouwen {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-style: normal;
  font-weight: 500;
}

.techniques-section-typografische-hierarchie-opbouwen {
  background: #ffffff;
  color: #0a0f1e;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.techniques-title-typografische-hierarchie-opbouwen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0a0f1e;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.techniques-grid-typografische-hierarchie-opbouwen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.technique-card-typografische-hierarchie-opbouwen {
  flex: 1 1 calc(33.333% - 1.33rem);
  max-width: 350px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.technique-card-typografische-hierarchie-opbouwen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #d4572a;
}

.technique-number-typografische-hierarchie-opbouwen {
  font-size: 2rem;
  font-weight: 700;
  color: #d4572a;
  line-height: 1;
  margin-bottom: 1rem;
}

.technique-heading-typografische-hierarchie-opbouwen {
  font-size: 1.125rem;
  color: #0a0f1e;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.technique-text-typografische-hierarchie-opbouwen {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 1024px) {
  .technique-card-typografische-hierarchie-opbouwen {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .technique-card-typografische-hierarchie-opbouwen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.implementation-section-typografische-hierarchie-opbouwen {
  background: #f8fafc;
  color: #0a0f1e;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.implementation-image-typografische-hierarchie-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-visual-typografische-hierarchie-opbouwen {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.implementation-text-typografische-hierarchie-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-typografische-hierarchie-opbouwen {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: #0a0f1e;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.implementation-paragraph-typografische-hierarchie-opbouwen {
  font-size: 1rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.implementation-list-typografische-hierarchie-opbouwen {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 1.5rem 0;
}

.list-item-typografische-hierarchie-opbouwen {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.list-item-typografische-hierarchie-opbouwen::before {
  content: '';
  position: absolute;
  left: 0;
  color: #d4572a;
  font-weight: 700;
}

@media (max-width: 768px) {
  .implementation-wrapper-typografische-hierarchie-opbouwen {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .implementation-image-typografische-hierarchie-opbouwen,
  .implementation-text-typografische-hierarchie-opbouwen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.cta-section-typografische-hierarchie-opbouwen {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.cta-box-typografische-hierarchie-opbouwen {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(212, 87, 42, 0.15), rgba(0, 102, 204, 0.15));
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 12px;
  border: 1px solid rgba(212, 87, 42, 0.2);
}

.cta-title-typografische-hierarchie-opbouwen {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text-typografische-hierarchie-opbouwen {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-button-typografische-hierarchie-opbouwen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background: #d4572a;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid #d4572a;
}

.cta-button-typografische-hierarchie-opbouwen:hover {
  background: #c24620;
  border-color: #c24620;
  transform: translateY(-2px);
}

.related-section-typografische-hierarchie-opbouwen {
  background: #ffffff;
  color: #0a0f1e;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.related-title-typografische-hierarchie-opbouwen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0a0f1e;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-grid-typografische-hierarchie-opbouwen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-typografische-hierarchie-opbouwen {
  flex: 1 1 calc(33.333% - 1.33rem);
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.related-card-typografische-hierarchie-opbouwen:hover {
  border-color: #d4572a;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-image-wrapper-typografische-hierarchie-opbouwen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-typografische-hierarchie-opbouwen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-content-typografische-hierarchie-opbouwen {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-typografische-hierarchie-opbouwen {
  font-size: 1.1rem;
  color: #0a0f1e;
  line-height: 1.3;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-typografische-hierarchie-opbouwen {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 1024px) {
  .related-card-typografische-hierarchie-opbouwen {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

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

.disclaimer-section-typografische-hierarchie-opbouwen {
  background: #f8fafc;
  color: #0a0f1e;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-box-typografische-hierarchie-opbouwen {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #0066cc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #0066cc;
}

.disclaimer-title-typografische-hierarchie-opbouwen {
  font-size: 1.1rem;
  color: #0a0f1e;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-typografische-hierarchie-opbouwen {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.main-visueel-systeem-documentatie {
  width: 100%;
  overflow: hidden;
}

.hero-section-visueel-systeem-documentatie {
  background: #0a0f1e;
  padding: clamp(2rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.hero-section-visueel-systeem-documentatie .container{
  flex-direction: column;
}

.hero-section-visueel-systeem-documentatie::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 87, 42, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.breadcrumbs-visueel-systeem-documentatie {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.breadcrumbs-visueel-systeem-documentatie a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-visueel-systeem-documentatie a:hover {
  color: #fbbf24;
}

.breadcrumbs-visueel-systeem-documentatie span {
  color: #64748b;
}

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

.hero-content-visueel-systeem-documentatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-visueel-systeem-documentatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-visueel-systeem-documentatie {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.hero-meta-visueel-systeem-documentatie {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.meta-item-visueel-systeem-documentatie {
  color: #cbd5e1;
}

.meta-divider-visueel-systeem-documentatie {
  color: #475569;
}

.meta-level-visueel-systeem-documentatie {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(212, 87, 42, 0.2);
  color: #fbbf24;
  border-radius: 20px;
  font-weight: 600;
}

.hero-title-visueel-systeem-documentatie {
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-subtitle-visueel-systeem-documentatie {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 500px;
}

@media (max-width: 768px) {
  .hero-wrapper-visueel-systeem-documentatie {
    flex-direction: column;
  }

  .hero-content-visueel-systeem-documentatie,
  .hero-image-visueel-systeem-documentatie {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-img-visueel-systeem-documentatie {
    max-height: 300px;
  }
}

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

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

.intro-text-visueel-systeem-documentatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-visueel-systeem-documentatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-visueel-systeem-documentatie img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.intro-title-visueel-systeem-documentatie {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #d4572a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.intro-paragraph-visueel-systeem-documentatie {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .intro-content-visueel-systeem-documentatie {
    flex-direction: column;
  }

  .intro-text-visueel-systeem-documentatie,
  .intro-image-visueel-systeem-documentatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.structure-section-visueel-systeem-documentatie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.structure-image-visueel-systeem-documentatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-image-visueel-systeem-documentatie img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.structure-text-visueel-systeem-documentatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-title-visueel-systeem-documentatie {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0066cc;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.structure-paragraph-visueel-systeem-documentatie {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.structure-highlight-visueel-systeem-documentatie {
  background: rgba(0, 102, 204, 0.08);
  border-left: 4px solid #0066cc;
  padding: 1.25rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.highlight-text-visueel-systeem-documentatie {
  color: #0f172a;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.code-inline-visueel-systeem-documentatie {
  background: #e2e8f0;
  color: #0f172a;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}

@media (max-width: 768px) {
  .structure-content-visueel-systeem-documentatie {
    flex-direction: column-reverse;
  }

  .structure-image-visueel-systeem-documentatie,
  .structure-text-visueel-systeem-documentatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.color-section-visueel-systeem-documentatie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.color-content-visueel-systeem-documentatie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.color-text-visueel-systeem-documentatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.color-image-visueel-systeem-documentatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.color-image-visueel-systeem-documentatie img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.color-title-visueel-systeem-documentatie {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #d4572a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.color-paragraph-visueel-systeem-documentatie {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .color-content-visueel-systeem-documentatie {
    flex-direction: column;
  }

  .color-text-visueel-systeem-documentatie,
  .color-image-visueel-systeem-documentatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.implementation-title-visueel-systeem-documentatie {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0066cc;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}

.implementation-steps-visueel-systeem-documentatie {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.step-card-visueel-systeem-documentatie {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.step-card-visueel-systeem-documentatie:hover {
  border-color: #d4572a;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.step-number-visueel-systeem-documentatie {
  font-size: 2.5rem;
  font-weight: 800;
  color: #d4572a;
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1;
}

.step-content-visueel-systeem-documentatie {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-visueel-systeem-documentatie {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
}

.step-text-visueel-systeem-documentatie {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.implementation-image-visueel-systeem-documentatie {
  width: 100%;
  margin-top: 1rem;
}

.implementation-image-visueel-systeem-documentatie img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 1024px) {
  .step-card-visueel-systeem-documentatie {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .step-card-visueel-systeem-documentatie {
    flex: 1 1 100%;
  }

  .implementation-steps-visueel-systeem-documentatie {
    flex-direction: column;
  }
}

.maintenance-section-visueel-systeem-documentatie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.maintenance-content-visueel-systeem-documentatie {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.maintenance-title-visueel-systeem-documentatie {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #d4572a;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}

.maintenance-paragraph-visueel-systeem-documentatie {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  text-align: center;
}

.maintenance-quote-visueel-systeem-documentatie {
  background: #f8fafc;
  border-left: 4px solid #0066cc;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.quote-text-visueel-systeem-documentatie {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 1rem 0;
}

.quote-author-visueel-systeem-documentatie {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: #64748b;
  font-style: normal;
  margin: 0;
}

.conclusion-section-visueel-systeem-documentatie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-title-visueel-systeem-documentatie {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0066cc;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}

.conclusion-paragraph-visueel-systeem-documentatie {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  text-align: center;
}

.conclusion-cta-visueel-systeem-documentatie {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

.cta-text-visueel-systeem-documentatie {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

.cta-button-visueel-systeem-documentatie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background: #d4572a;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  transition: all 0.3s ease;
  border: 2px solid #d4572a;
}

.cta-button-visueel-systeem-documentatie:hover {
  background: #c24620;
  border-color: #c24620;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 87, 42, 0.2);
}

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

.disclaimer-content-visueel-systeem-documentatie {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-text-visueel-systeem-documentatie {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: #64748b;
  line-height: 1.7;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #cbd5e1;
  margin: 0;
}

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

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

.related-title-visueel-systeem-documentatie {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  line-height: 1.2;
  text-align: center;
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.related-grid-visueel-systeem-documentatie {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-visueel-systeem-documentatie {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-visueel-systeem-documentatie:hover {
  border-color: #d4572a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-image-visueel-systeem-documentatie {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-image-visueel-systeem-documentatie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-visueel-systeem-documentatie:hover .related-image-visueel-systeem-documentatie img {
  transform: scale(1.05);
}

.related-text-visueel-systeem-documentatie {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-visueel-systeem-documentatie {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #0f172a;
  line-height: 1.4;
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
}

.related-card-description-visueel-systeem-documentatie {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

@media (max-width: 1024px) {
  .related-card-visueel-systeem-documentatie {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .related-card-visueel-systeem-documentatie {
    flex: 1 1 100%;
  }

  .related-grid-visueel-systeem-documentatie {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero-section-visueel-systeem-documentatie {
    padding: clamp(2rem, 4vw, 3rem) 0;
  }

  .intro-section-visueel-systeem-documentatie,
  .structure-section-visueel-systeem-documentatie,
  .color-section-visueel-systeem-documentatie,
  .implementation-section-visueel-systeem-documentatie,
  .maintenance-section-visueel-systeem-documentatie,
  .conclusion-section-visueel-systeem-documentatie,
  .disclaimer-section-visueel-systeem-documentatie,
  .related-section-visueel-systeem-documentatie {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }
}

html {
  scroll-behavior: smooth;
}

* {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.main-lettertype-selectie-pairing {
  width: 100%;
  overflow: hidden;
}

.hero-section-lettertype-selectie-pairing {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-lettertype-selectie-pairing::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 87, 42, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-section-lettertype-selectie-pairing .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs-lettertype-selectie-pairing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
}

.breadcrumbs-lettertype-selectie-pairing a {
  color: #cbd5e1;
  transition: color 0.3s ease;
}

.breadcrumbs-lettertype-selectie-pairing a:hover {
  color: #fbbf24;
  text-decoration: none;
}

.breadcrumbs-lettertype-selectie-pairing span {
  color: #64748b;
}

.breadcrumbs-lettertype-selectie-pairing span:last-child {
  color: #fbbf24;
}

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

.hero-text-lettertype-selectie-pairing {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-lettertype-selectie-pairing {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-subtitle-lettertype-selectie-pairing {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.hero-meta-lettertype-selectie-pairing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.meta-item-lettertype-selectie-pairing {
  color: #94a3b8;
}

.meta-divider-lettertype-selectie-pairing {
  color: #475569;
}

.hero-image-lettertype-selectie-pairing {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 300px;
}

.hero-img-lettertype-selectie-pairing {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .hero-content-lettertype-selectie-pairing {
    flex-direction: column;
  }
  
  .hero-text-lettertype-selectie-pairing,
  .hero-image-lettertype-selectie-pairing {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-image-lettertype-selectie-pairing {
    min-height: 250px;
  }
}

.intro-section-lettertype-selectie-pairing {
  background: #ffffff;
  color: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-lettertype-selectie-pairing {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-lettertype-selectie-pairing {
  color: #d4572a;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-lettertype-selectie-pairing {
  color: #374151;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-lettertype-selectie-pairing {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 300px;
}

.intro-img-lettertype-selectie-pairing {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-lettertype-selectie-pairing {
    flex-direction: column;
  }
  
  .intro-text-lettertype-selectie-pairing,
  .intro-image-lettertype-selectie-pairing {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .intro-image-lettertype-selectie-pairing {
    min-height: 250px;
  }
}

.contrast-section-lettertype-selectie-pairing {
  background: #f8fafc;
  color: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.contrast-image-lettertype-selectie-pairing {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 300px;
  order: -1;
}

.contrast-img-lettertype-selectie-pairing {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contrast-text-lettertype-selectie-pairing {
  flex: 1 1 50%;
  max-width: 50%;
}

.contrast-title-lettertype-selectie-pairing {
  color: #0066cc;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.contrast-paragraph-lettertype-selectie-pairing {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
  .contrast-content-lettertype-selectie-pairing {
    flex-direction: column;
  }
  
  .contrast-image-lettertype-selectie-pairing {
    order: 0;
  }
  
  .contrast-image-lettertype-selectie-pairing,
  .contrast-text-lettertype-selectie-pairing {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .contrast-image-lettertype-selectie-pairing {
    min-height: 250px;
  }
}

.pairing-section-lettertype-selectie-pairing {
  background: #ffffff;
  color: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.pairing-text-lettertype-selectie-pairing {
  flex: 1 1 60%;
  max-width: 60%;
}

.pairing-title-lettertype-selectie-pairing {
  color: #d4572a;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.pairing-intro-lettertype-selectie-pairing {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.pairing-cards-lettertype-selectie-pairing {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.pairing-card-lettertype-selectie-pairing {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: clamp(1rem, 2vw, 1.5rem);
  transition: all 0.3s ease;
}

.pairing-card-lettertype-selectie-pairing:hover {
  border-color: #d4572a;
  box-shadow: 0 4px 12px rgba(212, 87, 42, 0.1);
  transform: translateX(4px);
}

.card-title-lettertype-selectie-pairing {
  color: #0a0f1e;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.card-text-lettertype-selectie-pairing {
  color: #475569;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  line-height: 1.6;
  margin-bottom: 0;
}

.pairing-image-lettertype-selectie-pairing {
  flex: 1 1 40%;
  max-width: 40%;
  min-height: 300px;
}

.pairing-img-lettertype-selectie-pairing {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .pairing-content-lettertype-selectie-pairing {
    flex-direction: column;
  }
  
  .pairing-text-lettertype-selectie-pairing,
  .pairing-image-lettertype-selectie-pairing {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .pairing-image-lettertype-selectie-pairing {
    min-height: 300px;
  }
}

.practice-section-lettertype-selectie-pairing {
  background: #f8fafc;
  color: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.practice-image-lettertype-selectie-pairing {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 300px;
}

.practice-img-lettertype-selectie-pairing {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.practice-text-lettertype-selectie-pairing {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-lettertype-selectie-pairing {
  color: #0066cc;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.practice-paragraph-lettertype-selectie-pairing {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.practice-steps-lettertype-selectie-pairing {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.step-lettertype-selectie-pairing {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.step-number-lettertype-selectie-pairing {
  color: #d4572a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  flex-shrink: 0;
  min-width: 60px;
  font-family: 'Playfair Display', Georgia, serif;
}

.step-content-lettertype-selectie-pairing {
  flex: 1;
}

.step-title-lettertype-selectie-pairing {
  color: #0a0f1e;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.step-text-lettertype-selectie-pairing {
  color: #475569;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .practice-content-lettertype-selectie-pairing {
    flex-direction: column;
  }
  
  .practice-image-lettertype-selectie-pairing,
  .practice-text-lettertype-selectie-pairing {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .practice-image-lettertype-selectie-pairing {
    min-height: 250px;
  }
}

.mistakes-section-lettertype-selectie-pairing {
  background: #ffffff;
  color: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.mistakes-title-lettertype-selectie-pairing {
  color: #d4572a;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.mistakes-wrapper-lettertype-selectie-pairing {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  flex-wrap: wrap;
  justify-content: center;
}

.mistake-block-lettertype-selectie-pairing {
  flex: 1 1 300px;
  max-width: 350px;
  background: #f8fafc;
  border-left: 4px solid #d4572a;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 0 8px 8px 0;
}

.mistake-heading-lettertype-selectie-pairing {
  color: #0a0f1e;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.mistake-text-lettertype-selectie-pairing {
  color: #475569;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.6;
  margin-bottom: 0;
}

.mistakes-image-lettertype-selectie-pairing {
  width: 100%;
  max-width: 500px;
  margin: clamp(1rem, 2vw, 2rem) auto 0;
  min-height: 300px;
}

.mistakes-img-lettertype-selectie-pairing {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tools-section-lettertype-selectie-pairing {
  background: #f8fafc;
  color: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.tools-title-lettertype-selectie-pairing {
  color: #0066cc;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  text-align: center;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.tools-intro-lettertype-selectie-pairing {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
  line-height: 1.75;
}

.tools-grid-lettertype-selectie-pairing {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tool-item-lettertype-selectie-pairing {
  flex: 1 1 250px;
  max-width: 300px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: clamp(1.5rem, 2vw, 2rem);
  transition: all 0.3s ease;
}

.tool-item-lettertype-selectie-pairing:hover {
  border-color: #0066cc;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
  transform: translateY(-4px);
}

.tool-name-lettertype-selectie-pairing {
  color: #0a0f1e;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.tool-description-lettertype-selectie-pairing {
  color: #475569;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.6;
  margin-bottom: 0;
}

.conclusion-section-lettertype-selectie-pairing {
  background: #1e293b;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-lettertype-selectie-pairing {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-lettertype-selectie-pairing {
  color: #fbbf24;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-text-lettertype-selectie-pairing {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.conclusion-highlight-lettertype-selectie-pairing {
  background: rgba(251, 191, 36, 0.1);
  border-left: 4px solid #fbbf24;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 0 8px 8px 0;
  margin-top: clamp(1.5rem, 2vw, 2rem);
}

.highlight-text-lettertype-selectie-pairing {
  color: #fbbf24;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-style: italic;
  margin-bottom: 0;
  line-height: 1.7;
}

.disclaimer-section-lettertype-selectie-pairing {
  background: #ffffff;
  color: #0a0f1e;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-lettertype-selectie-pairing {
  max-width: 700px;
  margin: 0 auto;
}

.disclaimer-title-lettertype-selectie-pairing {
  color: #475569;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  margin-top: 0;
}

.disclaimer-text-lettertype-selectie-pairing {
  color: #64748b;
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  line-height: 1.7;
  margin-bottom: 0;
}

.related-section-lettertype-selectie-pairing {
  background: #f8fafc;
  color: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-lettertype-selectie-pairing {
  color: #d4572a;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.related-cards-lettertype-selectie-pairing {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-lettertype-selectie-pairing {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-lettertype-selectie-pairing:hover {
  border-color: #d4572a;
  box-shadow: 0 10px 30px rgba(212, 87, 42, 0.15);
  transform: translateY(-4px);
}

.related-image-lettertype-selectie-pairing {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-lettertype-selectie-pairing {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-lettertype-selectie-pairing:hover .related-img-lettertype-selectie-pairing {
  transform: scale(1.05);
}

.related-body-lettertype-selectie-pairing {
  padding: clamp(1.5rem, 2vw, 2rem);
}

.related-card-title-lettertype-selectie-pairing {
  color: #0a0f1e;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  margin-top: 0;
  line-height: 1.4;
}

.related-card-text-lettertype-selectie-pairing {
  color: #475569;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.6;
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
}

.related-link-lettertype-selectie-pairing {
  color: #d4572a;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 600;
  transition: color 0.3s ease;
}

.related-link-lettertype-selectie-pairing:hover {
  color: #c24620;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-lettertype-selectie-pairing {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .related-card-lettertype-selectie-pairing {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .main-lettertype-selectie-pairing {
    font-size: 16px;
  }
}

* {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.typography-design-studio-about {
  background: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  overflow: hidden;
}

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

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

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

.hero-gateway-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: var(--tracking-tight);
  line-height: var(--line-height-tight);
}

.hero-gateway-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  max-width: 700px;
  line-height: var(--line-height-normal);
}

.hero-visual-gateway-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}

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

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

.stat-number-gateway-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #f97316;
  font-family: var(--font-heading);
}

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

.expertise-foundation-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.expertise-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.section-tag-about {
  display: inline-block;
  padding: 0.35rem 1.25rem;
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.expertise-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-top: 1rem;
  line-height: var(--line-height-tight);
}

.expertise-intro-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 800px;
  margin: 1.5rem auto 0;
  line-height: var(--line-height-normal);
}

.expertise-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.expertise-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.expertise-card-about:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(249, 115, 22, 0.3);
}

.card-icon-expertise-about {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #f97316;
  margin-bottom: 1rem;
}

.card-title-expertise-about {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.card-text-expertise-about {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
  line-height: var(--line-height-normal);
}

.approach-methodology-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.approach-intro-about {
  max-width: 900px;
  margin: 0 auto;
}

.approach-intro-text-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #cbd5e1;
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
}

.approach-intro-text-about:last-child {
  margin-bottom: 0;
}

.process-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.process-step-about {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.step-number-about {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #f97316;
  font-family: var(--font-heading);
  flex-shrink: 0;
  line-height: 1;
  min-width: clamp(3rem, 6vw, 4.5rem);
}

.step-content-about {
  flex: 1;
}

.step-title-about {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.step-text-about {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
  line-height: var(--line-height-normal);
}

.story-narrative-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.story-text-section-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 850px;
}

.story-paragraph-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #cbd5e1;
  line-height: var(--line-height-relaxed);
}

.story-image-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}

.featured-quote-about {
  background: rgba(249, 115, 22, 0.08);
  border-left: 4px solid #f97316;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-md);
  font-style: italic;
  margin: clamp(2rem, 4vw, 3rem) 0;
  max-width: 750px;
}

.quote-text-about {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #ffffff;
  line-height: var(--line-height-relaxed);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.quote-author-about {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
  font-style: normal;
  font-weight: 500;
}

.distinction-philosophy-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.distinction-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.distinction-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: var(--line-height-tight);
}

.distinction-subtitle-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #cbd5e1;
  max-width: 750px;
  margin: 1.5rem auto 0;
  line-height: var(--line-height-normal);
}

.distinction-features-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.distinction-item-about {
  flex: 1 1 260px;
  max-width: 320px;
}

.distinction-label-about {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #f97316;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-bottom: 0.5rem;
}

.distinction-point-about {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #ffffff;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: var(--line-height-tight);
}

.disclaimer-section-about {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 850px;
}

.disclaimer-heading-about {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
}

.disclaimer-icon-about {
  color: #f97316;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.disclaimer-text-about {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #94a3b8;
  line-height: var(--line-height-relaxed);
}

@media (max-width: 768px) {
  .process-step-about {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-about {
    font-size: 2rem;
  }

  .expertise-card-about {
    flex: 1 1 100%;
  }

  .distinction-item-about {
    flex: 1 1 100%;
  }
}

@media (min-width: 768px) {
  .hero-gateway-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .expertise-foundation-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .approach-methodology-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .story-narrative-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .distinction-philosophy-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

.portfolio-page {
  width: 100%;
  overflow: hidden;
}

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.portfolio-hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.portfolio-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  line-height: var(--line-height-tight);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: var(--tracking-tight);
}

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw + 0.25rem, 1.25rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
  max-width: 600px;
}

.portfolio-content {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.portfolio-card {
  background-color: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.portfolio-card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: var(--color-bg-tertiary);
}

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

.portfolio-card-content {
  padding: var(--space-lg);
}

.portfolio-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.portfolio-card-tag {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-bg-secondary);
  background-color: var(--color-primary);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.portfolio-card-year {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  color: var(--color-text-muted-light);
  font-weight: 500;
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.25rem, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  line-height: var(--line-height-tight);
  margin: 0 0 var(--space-sm) 0;
  letter-spacing: var(--tracking-tight);
}

.portfolio-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.25rem, 1.05rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.portfolio-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.portfolio-cta-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: flex-start;
}

.portfolio-cta-content {
  flex: 1;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.25rem, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  line-height: var(--line-height-tight);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: var(--tracking-tight);
}

.portfolio-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.25rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
  max-width: 500px;
}

.portfolio-cta-button {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-bg-secondary);
  background-color: var(--color-primary);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
  letter-spacing: var(--tracking-normal);
}

.portfolio-cta-button:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.portfolio-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-content {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-card-image {
    height: 320px;
  }

  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }

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

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-3xl) 0;
  }

  .portfolio-content {
    padding: var(--space-3xl) 0;
  }

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

  .portfolio-card-image {
    height: 360px;
  }

  .portfolio-cta {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1280px) {
  .portfolio-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.services-page {
  width: 100%;
  overflow: hidden;
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-lg);
  overflow: hidden;
}

.services-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: var(--line-height-normal);
  max-width: 700px;
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .services-hero-title {
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .services-hero-title {
    font-size: 3.5rem;
  }

  .services-hero-subtitle {
    font-size: 1.25rem;
  }
}

.services-content {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-lg);
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .services-content {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .services-content {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

.service-card {
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.service-card-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}

.service-card-icon i {
  color: var(--color-text-primary-dark);
  font-size: 1.5rem;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary-light);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--line-height-tight);
}

.service-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary-light);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-relaxed);
  flex-grow: 1;
}

.service-card-topics {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-muted-light);
  margin: var(--space-md) 0 0 0;
  padding-left: var(--space-md);
  list-style: disc;
  line-height: var(--line-height-normal);
}

.service-card-topics li {
  margin-bottom: var(--space-xs);
}

@media (min-width: 768px) {
  .service-card-topics {
    font-size: 0.95rem;
  }
}

.services-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-lg);
  overflow: hidden;
}

.services-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .services-cta-container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .services-cta-container {
    gap: var(--space-3xl);
  }
}

.services-cta-content {
  display: flex;
  flex-direction: column;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.services-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--line-height-relaxed);
}

.services-cta-button {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  background-color: var(--color-primary);
  color: var(--color-text-primary-dark);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  display: inline-block;
  width: fit-content;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-weight: 600;
  text-align: center;
}

.services-cta-button:hover {
  background-color: var(--color-primary-hover);
  transform: translateX(4px);
}

.services-cta-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.services-cta-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

@media (min-width: 768px) {
  .services-cta-image img {
    aspect-ratio: 4/3;
  }
}

@media (max-width: 767px) {
  .services-cta-container {
    order: -1;
  }
}

:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  --color-text-primary-dark: #ffffff;
  --color-text-primary-light: #0a0f1e;
  --color-text-secondary-dark: #cbd5e1;
  --color-text-secondary-light: #475569;
  --color-text-muted-dark: #94a3b8;
  --color-text-muted-light: #64748b;
  --color-primary: #d4572a;
  --color-primary-hover: #c24620;
  --color-primary-light: #f97316;
  --color-secondary: #0066cc;
  --color-secondary-hover: #0052a3;
  --color-accent: #fbbf24;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  --tracking-tight: -0.02em;
  --tracking-normal: 0em;
  --tracking-wide: 0.05em;
}

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

.docs-portal {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-primary-light);
  font-family: var(--font-primary);
  overflow: hidden;
}

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

.docs-portal .docs-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-lg) 0;
}

.docs-portal h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary-light);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
}

.docs-portal .last-updated {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-muted-light);
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.docs-portal h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary-light);
  line-height: var(--line-height-tight);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
}

.docs-portal p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.docs-portal ul {
  list-style: none;
  margin-bottom: var(--space-lg);
  padding-left: var(--space-lg);
}

.docs-portal li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: var(--space-md);
}

.docs-portal li:before {
  content: '';
  color: var(--color-primary);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.25em;
}

.docs-portal .contact-section {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-2xl);
  border-left: 4px solid var(--color-primary);
}

.docs-portal .contact-section h2 {
  margin-top: 0;
  margin-bottom: var(--space-lg);
  color: var(--color-text-primary-light);
}

.docs-portal .contact-section p {
  color: var(--color-text-secondary-light);
  margin-bottom: var(--space-sm);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
}

.docs-portal .contact-section strong {
  color: var(--color-text-primary-light);
  font-weight: 600;
}

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

  .docs-portal .docs-content {
    padding: var(--space-2xl) 0;
  }

  .docs-portal h1 {
    margin-bottom: var(--space-lg);
  }

  .docs-portal h2 {
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-lg);
  }
}

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

  .docs-portal .docs-content {
    padding: var(--space-3xl) 0;
  }
}

.thank-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.thank-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.thank-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-lg);
}

.thank-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--color-primary);
  flex-shrink: 0;
}

.thank-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  line-height: var(--line-height-tight);
  margin: 0 0 var(--space-sm) 0;
  letter-spacing: var(--tracking-tight);
}

.thank-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--color-primary);
  line-height: var(--line-height-normal);
  margin: 0 0 var(--space-lg) 0;
  letter-spacing: var(--tracking-normal);
}

.thank-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: var(--tracking-normal);
}

.thank-next {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-xl) 0;
  letter-spacing: var(--tracking-normal);
}

.btn-return {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: var(--tracking-normal);
  text-align: center;
  margin-top: var(--space-md);
}

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

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

@media (min-width: 640px) {
  .thank-section {
    padding: var(--space-xl) var(--space-md);
  }
  
  .thank-wrapper {
    padding: var(--space-2xl) var(--space-xl);
  }
  
  .thank-icon {
    width: 120px;
    height: 120px;
    margin-bottom: var(--space-xl);
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-2xl) var(--space-lg);
    min-height: 100vh;
  }
  
  .thank-wrapper {
    padding: var(--space-3xl) var(--space-2xl);
  }
  
  .thank-icon {
    width: 140px;
    height: 140px;
    margin-bottom: var(--space-2xl);
  }
  
  .btn-return {
    padding: 0.75rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-2xl);
  }
  
  .thank-wrapper {
    padding: 4rem 3rem;
  }
  
  .thank-icon {
    width: 160px;
    height: 160px;
    margin-bottom: var(--space-3xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-return {
    transition: none;
  }
  
  .btn-return:hover {
    transform: none;
  }
}

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

html,
body {
  width: 100%;
  height: 100%;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  line-height: var(--line-height-relaxed);
  overflow-x: hidden;
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl) var(--space-md);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
}

.content {
  width: 100%;
  max-width: 800px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .content {
    gap: var(--space-2xl);
  }
}

.error-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 15vw, 8rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: var(--line-height-tight);
  letter-spacing: var(--tracking-tight);
  text-shadow: 0 4px 20px rgba(212, 87, 42, 0.15);
  animation: float 6s ease-in-out infinite;
}

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

@media (min-width: 768px) {
  @keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-30px);
    }
  }
}

.error-decoration {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .error-decoration {
    width: 160px;
    height: 6px;
    bottom: -60px;
  }
}

.error-message {
  width: 100%;
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .error-message {
    padding-top: var(--space-lg);
    gap: var(--space-lg);
  }
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 600;
  color: var(--color-text-primary-dark);
  line-height: var(--line-height-tight);
  letter-spacing: var(--tracking-tight);
}

.error-description {
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  letter-spacing: var(--tracking-normal);
  margin: 0;
}

@media (min-width: 768px) {
  .error-description {
    font-size: clamp(1rem, 1.1vw, 1.2rem);
  }
}

.error-details {
  width: 100%;
  padding: var(--space-md);
  border-left: 3px solid var(--color-primary);
  background-color: rgba(212, 87, 42, 0.05);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .error-details {
    padding: var(--space-lg);
    border-left: 4px solid var(--color-primary);
  }
}

.error-subtext {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-relaxed);
  letter-spacing: var(--tracking-normal);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  letter-spacing: var(--tracking-normal);
  margin-top: var(--space-sm);
}

@media (min-width: 768px) {
  .btn {
    padding: var(--space-md) var(--space-2xl);
    margin-top: var(--space-md);
  }
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-primary-light);
  box-shadow: var(--shadow-md);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

@media (prefers-reduced-motion: reduce) {
  .error-code {
    animation: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
  
  .btn-primary:active {
    transform: none;
  }
}

@media (max-width: 480px) {
  .error-section {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .error-decoration {
    display: none;
  }
  
  .error-details {
    border-left: 3px solid var(--color-primary);
  }
}

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

.contact-feedback-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-feedback-hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-feedback-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  line-height: var(--line-height-tight);
  letter-spacing: var(--tracking-tight);
}

.contact-feedback-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
}

.contact-feedback-main {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.contact-feedback-main-content {
  width: 100%;
}

.contact-feedback-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.contact-feedback-form-wrapper {
  flex: 1;
  width: 100%;
}

.contact-feedback-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-lg);
  letter-spacing: var(--tracking-tight);
}

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

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

.contact-feedback-label {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  color: var(--color-text-primary-dark);
  letter-spacing: var(--tracking-normal);
}

.contact-feedback-input,
.contact-feedback-textarea {
  font-family: var(--font-primary);
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: var(--color-text-primary-dark);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: var(--line-height-normal);
  transition: all 0.3s ease;
}

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

.contact-feedback-input:focus,
.contact-feedback-textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(212, 87, 42, 0.15);
}

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

.contact-feedback-form-privacy {
  margin-top: var(--space-sm);
}

.contact-feedback-privacy-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-normal);
}

.contact-feedback-privacy-link {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

.contact-feedback-submit {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: var(--space-md);
  text-transform: uppercase;
}

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

.contact-feedback-submit:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.contact-feedback-info-wrapper {
  flex: 1;
  width: 100%;
}

.contact-feedback-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-lg);
  letter-spacing: var(--tracking-tight);
}

.contact-feedback-info-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

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

.contact-feedback-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: var(--color-primary-light);
  font-size: 1.5rem;
}

.contact-feedback-info-content {
  flex: 1;
}

.contact-feedback-info-label {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-xs);
  letter-spacing: var(--tracking-normal);
}

.contact-feedback-info-value {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.contact-feedback-info-link {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-feedback-info-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.contact-feedback-info-section {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.contact-feedback-info-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
  letter-spacing: var(--tracking-tight);
}

.contact-feedback-info-section-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

@media (min-width: 768px) {
  .contact-feedback-hero {
    padding: var(--space-3xl) 0;
  }

  .contact-feedback-main {
    padding: var(--space-3xl) 0;
  }

  .contact-feedback-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }

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

@media (min-width: 1024px) {
  .contact-feedback-hero {
    padding: var(--space-3xl) 0;
  }

  .contact-feedback-main {
    padding: var(--space-3xl) 0;
  }

  .contact-feedback-hero-subtitle {
    max-width: 700px;
  }
}
.header-palette-studio-mobile-toggle[aria-expanded="true"]{
  display: none;
}  
.typography-hub,.container{
  padding: 0px 10px;
}
img{
  max-width: 100%;
}
.hero-section-typografische-hierarchie-opbouwen .container{
  flex-direction: column;
}

.related-section-typografische-hierarchie-opbouwen .container{
  display: flex;
  flex-direction: column;
}
.techniques-section-typografische-hierarchie-opbouwen .container{
  flex-direction: column;
}
.hero-section-lettertype-selectie-pairing .container{
  display: flex;
  flex-direction: column;
}

.hero-section-kleurschema-webdesign .container{
  display: flex !important;
  flex-direction: column !important;
}