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

:root {
  
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;
  
  
  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  
  
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-secondary: #10b981;
  --color-accent-warm: #f59e0b;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  overflow-x: hidden;
}

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

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

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

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

p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.hidden {
  display: none !important;
}

@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hidden-tablet {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .flex-mobile-column {
    flex-direction: column;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  margin: var(--space-xl) 0;
}

.accent-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--color-secondary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.accent-line {
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
  width: clamp(40px, 10vw, 80px);
  margin: var(--space-md) 0;
}

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

li {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

li strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-lg);
  margin: var(--space-lg) 0;
  font-style: italic;
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

code {
  background: var(--color-bg-tertiary);
  color: var(--color-primary);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.875em;
}

pre {
  background: var(--color-bg-tertiary);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin-bottom: var(--space-md);
}

pre code {
  background: transparent;
  color: var(--color-text-primary);
  padding: 0;
}

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

label {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

input, textarea, select {
  padding: clamp(0.625rem, 1vw, 0.875rem) var(--space-md);
  border: 2px solid var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-primary);
  background: var(--color-bg-secondary);
  transition: all 0.3s ease;
}

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

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

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

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

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-hover);
}

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

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

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

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

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

@media (max-width: 767px) {
  body {
    font-size: 0.9375rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .flex-mobile-column {
    flex-direction: column;
  }
  
  .container {
    padding: 0 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

@media print {
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
  
  .no-print {
    display: none !important;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

.header-design-forge {
  position: relative;
  background: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-bg-tertiary);
  padding: 1rem 0;
  z-index: 100;
}

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

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

.header-design-forge-brand:hover {
  opacity: 0.8;
}

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

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

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

.header-design-forge-nav-link {
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 300ms ease;
  position: relative;
  padding-bottom: 4px;
}

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

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

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

.header-design-forge-cta-button {
  display: none;
  padding: 0.75rem 1.75rem;
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 300ms ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-design-forge-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

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

.header-design-forge-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
}

.header-design-forge-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 1px;
  transition: all 300ms ease;
}

.header-design-forge-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.header-design-forge-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header-design-forge-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-design-forge-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-bg-secondary);
  border-left: 1px solid var(--color-bg-tertiary);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
}

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

.header-design-forge-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-bg-tertiary);
}

.header-design-forge-mobile-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.header-design-forge-mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-text-primary);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 300ms ease;
}

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

.header-design-forge-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.header-design-forge-mobile-link {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-bg-tertiary);
  transition: all 300ms ease;
}

.header-design-forge-mobile-link:hover {
  background: var(--color-bg-tertiary);
  color: var(--color-primary);
  padding-left: 2rem;
}

.header-design-forge-mobile-cta {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: block;
  padding: 0.875rem 1.5rem;
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  transition: all 300ms ease;
}

.header-design-forge-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

@media (min-width: 768px) {
  .header-design-forge {
    padding: 1.25rem 0;
  }

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

  .header-design-forge-cta-button {
    display: block;
  }

  .header-design-forge-mobile-toggle {
    display: none;
  }

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

@media (min-width: 1024px) {
  .header-design-forge {
    padding: 1.5rem 0;
  }

  .header-design-forge-logo-text {
    font-size: 1.375rem;
  }

  .header-design-forge-nav-link {
    font-size: 1rem;
  }

  .header-design-forge-cta-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

    .design-thinking-hub {
  width: 100%;
}

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

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

.hero-glow-primary {
  position: absolute;
  top: 20%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-accent-orb-left {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.07);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.hero-accent-orb-right {
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(245, 158, 11, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-card {
  position: absolute;
  top: 15%;
  left: 50%;
  width: 150px;
  height: 120px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(5, 150, 105, 0.1);
  border-radius: 12px;
  transform: rotate(-12deg);
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

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

.hero-corner-shape {
  position: absolute;
  top: 5%;
  right: 15%;
  width: 100px;
  height: 100px;
  background: rgba(10, 185, 129, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-secondary-glow {
  position: absolute;
  top: 40%;
  left: -50px;
  width: 280px;
  height: 280px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 50%;
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-section-title {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #111827;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

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

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

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

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

.hero-stat-label {
  font-size: clamp(0.75rem, 1vw, 0.9375rem);
  color: #64748b;
  font-weight: 500;
}

.hero-section-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
}

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

.about-gradient-field {
  position: absolute;
  top: 10%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.about-accent-glow {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(5, 150, 105, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.about-shape-left {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 150px;
  height: 150px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.about-shape-right {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.about-line-divider {
  position: absolute;
  left: 50%;
  top: 30%;
  width: 2px;
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(5, 150, 105, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
}

.about-floating-element {
  position: absolute;
  top: 50%;
  right: 15%;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(5, 150, 105, 0.15);
  border-radius: 12px;
  transform: rotate(25deg);
  z-index: 2;
  pointer-events: none;
}

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

.about-text-block {
  flex: 1 1 350px;
}

.about-section-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #111827;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.about-section-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.about-section-image {
  flex: 1 1 350px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.process-mesh-gradient {
  position: absolute;
  top: -50px;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.process-glow-accent {
  position: absolute;
  bottom: 10%;
  right: -80px;
  width: 350px;
  height: 350px;
  background: rgba(59, 130, 246, 0.07);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.process-shape-top {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 180px;
  height: 180px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.process-shape-bottom {
  position: absolute;
  bottom: 5%;
  left: 8%;
  width: 220px;
  height: 220px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.process-line-element {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, rgba(5, 150, 105, 0.3), transparent, rgba(5, 150, 105, 0.3));
  z-index: 0;
  pointer-events: none;
}

.process-floating-card {
  position: absolute;
  top: 30%;
  left: 12%;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(5, 150, 105, 0.12);
  border-radius: 12px;
  transform: rotate(-15deg);
  z-index: 2;
  pointer-events: none;
}

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

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

.process-section-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.process-section-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #111827;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.process-section-subtitle {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.process-step-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(5, 150, 105, 0.08);
}

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

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

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

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

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

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

.principles-accent-blob-1 {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.principles-accent-blob-2 {
  position: absolute;
  bottom: 15%;
  left: 15%;
  width: 250px;
  height: 250px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.principles-floating-shape {
  position: absolute;
  top: 20%;
  left: 8%;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(5, 150, 105, 0.1);
  border-radius: 12px;
  transform: rotate(20deg);
  z-index: 2;
  pointer-events: none;
}

.principles-line-accent {
  position: absolute;
  right: 30%;
  bottom: 30%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.principles-corner-glow {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

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

.principles-section-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.principles-section-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #111827;
  font-weight: 700;
}

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

.principles-card {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(5, 150, 105, 0.1);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.principles-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.principles-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 12px;
  color: #059669;
  font-size: 1.5rem;
}

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

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

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

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

.featured-gradient-mesh {
  position: absolute;
  top: 5%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.featured-glow-primary {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.07);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.featured-accent-shape-1 {
  position: absolute;
  top: 20%;
  left: 15%;
  width: 150px;
  height: 150px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 50% 30% 60% 40% / 60% 40% 30% 50%;
  z-index: 2;
  pointer-events: none;
}

.featured-accent-shape-2 {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 180px;
  height: 180px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 40% 60% 30% 70% / 40% 60% 70% 30%;
  z-index: 1;
  pointer-events: none;
}

.featured-floating-element {
  position: absolute;
  top: 40%;
  right: 8%;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(5, 150, 105, 0.15);
  border-radius: 12px;
  transform: rotate(-10deg);
  z-index: 2;
  pointer-events: none;
}

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

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

.featured-section-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-section-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #111827;
  font-weight: 700;
}

.featured-quote {
  background: #ffffff;
  border-left: 4px solid #059669;
  padding: clamp(2rem, 4vw, 2.5rem);
  border-radius: 8px;
  margin: clamp(2rem, 4vw, 3rem) auto;
  max-width: 700px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

.featured-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.featured-stat-value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.featured-stat-label {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
}

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

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

.posts-glow-accent {
  position: absolute;
  bottom: 5%;
  right: -50px;
  width: 350px;
  height: 350px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.posts-shape-accent {
  position: absolute;
  top: 25%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 60% 40% 30% 70% / 40% 60% 70% 30%;
  z-index: 1;
  pointer-events: none;
}

.posts-floating-card-1 {
  position: absolute;
  top: 15%;
  left: 8%;
  width: 130px;
  height: 130px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(5, 150, 105, 0.12);
  border-radius: 12px;
  transform: rotate(15deg);
  z-index: 2;
  pointer-events: none;
}

.posts-floating-card-2 {
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(5, 150, 105, 0.1);
  border-radius: 12px;
  transform: rotate(-20deg);
  z-index: 2;
  pointer-events: none;
}

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

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

.posts-section-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.posts-section-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #111827;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.posts-section-subtitle {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.posts-cards {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.posts-card {
  flex: 1 1 320px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(5, 150, 105, 0.08);
  transition: transform 350ms ease, box-shadow 350ms ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

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

.posts-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

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

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

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

.posts-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.posts-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(5, 150, 105, 0.08);
  color: #059669;
  border-radius: 16px;
  font-size: 0.8125rem;
  font-weight: 500;
}

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

.posts-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #059669;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 300ms ease;
  text-decoration: none;
  margin-top: 0.5rem;
}

.posts-card-link:hover {
  color: #047857;
  gap: 1rem;
}

.posts-card-link::after {
  content: "";
}

.posts-footer {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.posts-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  color: #059669;
  border: 2px solid #059669;
  border-radius: 12px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 300ms ease;
  text-decoration: none;
}

.posts-view-all:hover {
  background: #059669;
  color: #ffffff;
  transform: translateY(-2px);
}

.posts-view-all::after {
  content: "";
}

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

.cta-section {
  position: relative;
  overflow: hidden;
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.cta-gradient-field {
  position: absolute;
  top: 10%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.cta-glow-primary {
  position: absolute;
  bottom: 5%;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.07);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.cta-accent-shape-1 {
  position: absolute;
  top: 15%;
  right: 15%;
  width: 150px;
  height: 150px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.cta-accent-shape-2 {
  position: absolute;
  bottom: 10%;
  left: 8%;
  width: 180px;
  height: 180px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.cta-floating-element {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 110px;
  height: 110px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(5, 150, 105, 0.15);
  border-radius: 12px;
  transform: rotate(-8deg);
  z-index: 2;
  pointer-events: none;
}

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

.cta-section-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #111827;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.cta-section-text {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  line-height: 1.7;
}

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

.contact-mesh-gradient {
  position: absolute;
  top: 5%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-glow-accent {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.07);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.contact-shape-left {
  position: absolute;
  top: 20%;
  left: 15%;
  width: 180px;
  height: 180px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 50% 30% 60% 40% / 60% 40% 30% 50%;
  z-index: 2;
  pointer-events: none;
}

.contact-shape-right {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 220px;
  height: 220px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 40% 60% 30% 70% / 40% 60% 70% 30%;
  z-index: 1;
  pointer-events: none;
}

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

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

.contact-section-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #111827;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.contact-section-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

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

.contact-form-label {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  color: #1e293b;
}

.contact-form-input,
.contact-form-textarea {
  width: 100%;
  padding: clamp(0.75rem, 1.5vw, 1rem);
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  color: #1e293b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-family: var(--font-primary);
  transition: all 300ms ease;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
  outline: none;
  border-color: #059669;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

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

.contact-form-submit {
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(1.75rem, 3vw, 2.5rem);
  background: #059669;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: all 300ms ease;
  margin-top: 0.5rem;
}

.contact-form-submit:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

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

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

.contact-info-title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: #1e293b;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

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

.contact-faq-item {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid #059669;
}

.contact-faq-question {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.contact-faq-answer {
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    gap: clamp(2rem, 4vw, 2.5rem);
  }
  
  .contact-form-wrapper,
  .contact-info-wrapper {
    flex: 1 1 100%;
  }
}

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

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

.cookie-banner-text {
  color: #cbd5e1;
  margin: 0;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  flex: 1 1 auto;
  min-width: 250px;
  line-height: 1.5;
}

.cookie-banner-link {
  color: #38bdf8;
  text-decoration: underline;
  transition: color 300ms ease;
}

.cookie-banner-link:hover {
  color: #0ea5e9;
}

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

.cookie-btn-accept,
.cookie-btn-decline {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  border: none;
  border-radius: 6px;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  font-weight: 600;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: all 300ms ease;
  white-space: nowrap;
}

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

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

.cookie-btn-decline {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid rgba(203, 213, 225, 0.3);
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(203, 213, 225, 0.5);
}

@media (min-width: 768px) {
  .hero-section {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
  
  .about-section {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
  
  .process-section {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
  
  .principles-section {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
  
  .featured-section {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
  
  .posts-section {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
  
  .cta-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
  
  .contact-section {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

@media (max-width: 767px) {
  .about-content {
    flex-direction: column;
  }
  
  .about-text-block {
    flex: 1 1 100%;
  }
  
  .about-section-image {
    flex: 1 1 100%;
    width: 100%;
  }
  
  .featured-stats {
    gap: clamp(1rem, 3vw, 1.5rem);
  }
  
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .cookie-banner-text {
    min-width: auto;
    width: 100%;
  }
  
  .cookie-banner-buttons {
    width: 100%;
  }
  
  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1 1 auto;
    min-width: 120px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-primary);
  text-decoration: none;
}

.btn-primary {
  background: #059669;
  color: #ffffff;
}

.btn-primary:hover {
  background: #047857;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
}

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

.btn-secondary {
  background: transparent;
  color: #059669;
  border-color: #059669;
}

.btn-secondary:hover {
  background: #059669;
  color: #ffffff;
  transform: translateY(-3px);
}

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

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

.btn:focus-visible,
.contact-form-input:focus-visible,
.contact-form-textarea:focus-visible {
  outline: 2px solid #059669;
  outline-offset: 2px;
}

.cookie-btn-accept:focus-visible,
.cookie-btn-decline:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 2px;
}

    
.footer {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid var(--color-bg-tertiary);
  position: relative;
  overflow: hidden;
}

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

.footer-content {
  display: block;
}

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

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

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

.footer-navigation {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.footer-nav-title {
  font-family: var(--font-primary);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
}

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

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

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

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

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

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

.footer-contact {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-tertiary);
}

.footer-contact-title {
  font-family: var(--font-primary);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
}

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

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

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

.footer-contact-value {
  display: block;
  color: var(--color-text-secondary);
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.9375rem);
}

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

.footer-legal-title {
  font-family: var(--font-primary);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
}

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

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

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

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

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

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

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

.footer-copyright-text {
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.9375rem);
  color: var(--color-text-muted);
  margin: 0;
  letter-spacing: 0.3px;
}

@media (min-width: 768px) {
  .footer {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

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

  .footer-about {
    grid-column: 1 / -1;
    margin-bottom: 0;
    padding-bottom: clamp(2rem, 5vw, 3rem);
  }

  .footer-navigation,
  .footer-contact,
  .footer-legal {
    margin-bottom: 0;
  }

  .footer-copyright {
    grid-column: 1 / -1;
    padding-top: clamp(2rem, 5vw, 3rem);
  }
}

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

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

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

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

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

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

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

.category-page-webdesign {
  width: 100%;
  background: #f9fafb;
}

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

.hero-ambient-glow-webdesign {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-field-webdesign {
  position: absolute;
  top: 50%;
  right: -8%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-shape-webdesign {
  position: absolute;
  bottom: 10%;
  left: 15%;
  width: 280px;
  height: 280px;
  background: rgba(5, 150, 105, 0.04);
  border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

.hero-accent-orb-webdesign {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-tag-webdesign {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.hero-title-webdesign {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-description-webdesign {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #4b5563;
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 2rem;
}

.hero-stats-webdesign {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 2.5rem;
  margin-top: 2.5rem;
}

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

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

.stat-label-webdesign {
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-buttons-webdesign {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary-hero-webdesign {
  background: #059669;
  color: #ffffff;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary-hero-webdesign:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.2);
}

.btn-secondary-hero-webdesign {
  background: transparent;
  color: #111827;
  border: 2px solid #111827;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary-hero-webdesign:hover {
  background: #111827;
  color: #ffffff;
  transform: translateY(-2px);
}

.posts-section-webdesign {
  position: relative;
  overflow: hidden;
  background: #f3f4f6;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.posts-shape-accent-1-webdesign {
  position: absolute;
  top: 5%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.07);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.posts-shape-accent-2-webdesign {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.posts-header-webdesign {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3rem;
}

.posts-tag-webdesign {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.posts-title-webdesign {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.posts-subtitle-webdesign {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

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

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

.card-webdesign:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.card-image-webdesign {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.card-title-webdesign {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

.card-description-webdesign {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.card-meta-webdesign {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-webdesign {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: rgba(5, 150, 105, 0.08);
  color: #059669;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
}

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

.card-link-webdesign {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #059669;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.card-link-webdesign:hover {
  color: #047857;
  gap: 0.75rem;
}

.card-link-webdesign::after {
  content: '';
  transition: transform 0.3s ease;
}

.card-link-webdesign:hover::after {
  transform: translateX(4px);
}

.process-section-webdesign {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.process-glow-accent-webdesign {
  position: absolute;
  top: 30%;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.process-header-webdesign {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3.5rem;
}

.process-tag-webdesign {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.process-title-webdesign {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.process-subtitle-webdesign {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

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

.process-step-webdesign {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.process-step-webdesign:hover {
  background: #f3f4f6;
  transform: translateX(8px);
}

.process-step-number-webdesign {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

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

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

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

.insights-section-webdesign {
  position: relative;
  overflow: hidden;
  background: #f3f4f6;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.insights-shape-1-webdesign {
  position: absolute;
  top: -50px;
  left: 10%;
  width: 280px;
  height: 280px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.insights-shape-2-webdesign {
  position: absolute;
  bottom: 5%;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.insights-content-webdesign {
  position: relative;
  z-index: 10;
  max-width: 850px;
  margin: 0 auto;
}

.insights-title-webdesign {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-align: center;
}

.featured-quote-webdesign {
  border-left: 5px solid #059669;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  padding-left: clamp(2rem, 4vw, 3rem);
  background: #ffffff;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

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

.quote-author-webdesign {
  font-size: 0.9375rem;
  color: #4b5563;
  font-style: normal;
  font-weight: 500;
}

.insights-list-webdesign {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.insight-item-webdesign {
  padding: 1.75rem;
  background: #ffffff;
  border-radius: 8px;
  border-left: 4px solid #10b981;
}

.insight-item-title-webdesign {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.insight-item-text-webdesign {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-stats-webdesign {
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  .process-step-webdesign {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .process-step-number-webdesign {
    min-width: auto;
  }

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

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

  .btn-primary-hero-webdesign,
  .btn-secondary-hero-webdesign {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .process-step-webdesign:nth-child(even) {
    padding-left: 3rem;
  }

  .process-step-webdesign:nth-child(odd) {
    padding-right: 3rem;
  }
}

@media (min-width: 1024px) {
  .posts-grid-webdesign {
    gap: 2rem;
  }

  .card-webdesign {
    flex: 1 1 320px;
  }

  .process-step-webdesign {
    padding: 2.5rem;
  }
}

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

.main-design-thinking-methodologie {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.hero-section-design-thinking-methodologie {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-section-design-thinking-methodologie .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.breadcrumbs-design-thinking-methodologie {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.breadcrumb-link-design-thinking-methodologie {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-design-thinking-methodologie:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumb-separator-design-thinking-methodologie {
  color: var(--color-text-muted);
  margin: 0 0.25rem;
}

.breadcrumb-current-design-thinking-methodologie {
  color: var(--color-text-secondary);
  font-weight: 500;
}

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

.hero-text-wrapper-design-thinking-methodologie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-image-wrapper-design-thinking-methodologie {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-design-thinking-methodologie {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-design-thinking-methodologie {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero-description-design-thinking-methodologie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.hero-image-design-thinking-methodologie {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.hero-meta-design-thinking-methodologie {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
}

.meta-badge-design-thinking-methodologie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-design-thinking-methodologie i {
  font-size: 0.875rem;
}

.hero-stats-design-thinking-methodologie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  justify-content: flex-start;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.stat-item-design-thinking-methodologie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-design-thinking-methodologie {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-design-thinking-methodologie {
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 500;
}

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

  .hero-text-wrapper-design-thinking-methodologie,
  .hero-image-wrapper-design-thinking-methodologie {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-stats-design-thinking-methodologie {
    gap: 1.5rem;
  }
}

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

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

.intro-text-design-thinking-methodologie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-design-thinking-methodologie {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-design-thinking-methodologie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-design-thinking-methodologie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-design-thinking-methodologie img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .intro-content-design-thinking-methodologie {
    flex-direction: column;
  }

  .intro-text-design-thinking-methodologie,
  .intro-image-design-thinking-methodologie {
    flex: 1 1 100%;
    max-width: none;
  }
}

.phases-section-design-thinking-methodologie {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.phases-header-design-thinking-methodologie {
  text-align: center;
  margin-bottom: 3rem;
}

.phases-title-design-thinking-methodologie {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.phases-subtitle-design-thinking-methodologie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.phases-wrapper-design-thinking-methodologie {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.phase-item-design-thinking-methodologie {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phase-item-design-thinking-methodologie:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

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

.phase-content-design-thinking-methodologie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.phase-title-design-thinking-methodologie {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
}

.phase-text-design-thinking-methodologie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .phase-item-design-thinking-methodologie {
    flex-direction: column;
    gap: 1rem;
  }

  .phase-number-design-thinking-methodologie {
    font-size: 2rem;
  }
}

.implementation-section-design-thinking-methodologie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.implementation-image-design-thinking-methodologie {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-design-thinking-methodologie img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.implementation-text-design-thinking-methodologie {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-design-thinking-methodologie {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.implementation-description-design-thinking-methodologie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.implementation-highlight-design-thinking-methodologie {
  background: rgba(5, 150, 105, 0.08);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.highlight-text-design-thinking-methodologie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #111827;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.implementation-list-design-thinking-methodologie {
  list-style: none;
  margin: 1.5rem 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.implementation-list-item-design-thinking-methodologie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.implementation-list-item-design-thinking-methodologie::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.implementation-list-item-design-thinking-methodologie strong {
  color: #111827;
  font-weight: 600;
}

@media (max-width: 768px) {
  .implementation-wrapper-design-thinking-methodologie {
    flex-direction: column;
  }

  .implementation-image-design-thinking-methodologie,
  .implementation-text-design-thinking-methodologie {
    flex: 1 1 100%;
    max-width: none;
  }
}

.benefits-section-design-thinking-methodologie {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.benefits-header-design-thinking-methodologie {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-title-design-thinking-methodologie {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.benefits-subtitle-design-thinking-methodologie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.benefits-cards-design-thinking-methodologie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.benefits-card-design-thinking-methodologie {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-card-design-thinking-methodologie:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.benefits-card-icon-design-thinking-methodologie {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(5, 150, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.75rem;
}

.benefits-card-title-design-thinking-methodologie {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
}

.benefits-card-text-design-thinking-methodologie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

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

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

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

.conclusion-text-design-thinking-methodologie {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-design-thinking-methodologie {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.conclusion-description-design-thinking-methodologie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.conclusion-quote-design-thinking-methodologie {
  border-left: 4px solid var(--color-primary);
  padding-left: clamp(1.25rem, 3vw, 2rem);
  margin: 2rem 0;
  font-style: italic;
}

.quote-text-design-thinking-methodologie {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #111827;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.quote-cite-design-thinking-methodologie {
  font-size: 0.875rem;
  color: #4b5563;
  font-style: normal;
  display: block;
}

.conclusion-cta-design-thinking-methodologie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 1rem;
}

.conclusion-cta-design-thinking-methodologie:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.conclusion-image-design-thinking-methodologie {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-design-thinking-methodologie img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .conclusion-content-design-thinking-methodologie {
    flex-direction: column;
  }

  .conclusion-text-design-thinking-methodologie,
  .conclusion-image-design-thinking-methodologie {
    flex: 1 1 100%;
    max-width: none;
  }
}

.disclaimer-section-design-thinking-methodologie {
  background: #f3f4f6;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-design-thinking-methodologie {
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
}

.disclaimer-title-design-thinking-methodologie {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.disclaimer-text-design-thinking-methodologie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.related-section-design-thinking-methodologie {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-design-thinking-methodologie {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-design-thinking-methodologie {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.related-subtitle-design-thinking-methodologie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-design-thinking-methodologie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-design-thinking-methodologie {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-design-thinking-methodologie:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.related-card-image-design-thinking-methodologie {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e5e7eb;
}

.related-card-image-design-thinking-methodologie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-design-thinking-methodologie {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 1.5rem);
}

.related-card-title-design-thinking-methodologie {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #111827;
}

.related-card-text-design-thinking-methodologie {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-design-thinking-methodologie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-design-thinking-methodologie:hover {
  color: var(--color-primary-hover);
}

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

@media (max-width: 767px) {
  .hero-title-design-thinking-methodologie {
    font-size: 1.75rem;
  }

  .hero-subtitle-design-thinking-methodologie {
    font-size: 1.125rem;
  }

  .phases-title-design-thinking-methodologie,
  .intro-title-design-thinking-methodologie,
  .implementation-title-design-thinking-methodologie,
  .benefits-title-design-thinking-methodologie,
  .conclusion-title-design-thinking-methodologie,
  .related-title-design-thinking-methodologie {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-title-design-thinking-methodologie {
    font-size: 2.5rem;
  }

  .phases-title-design-thinking-methodologie,
  .intro-title-design-thinking-methodologie,
  .implementation-title-design-thinking-methodologie,
  .benefits-title-design-thinking-methodologie,
  .conclusion-title-design-thinking-methodologie,
  .related-title-design-thinking-methodologie {
    font-size: 2rem;
  }
}

.main-creatief-webdesign-proces {
  width: 100%;
  background: var(--color-bg-primary);
}

.hero-section-creatief-webdesign-proces {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
  position: relative;
}

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

.hero-text-wrapper-creatief-webdesign-proces {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-wrapper-creatief-webdesign-proces {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-creatief-webdesign-proces {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

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

.breadcrumb-link-creatief-webdesign-proces {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb-link-creatief-webdesign-proces:hover {
  color: var(--color-primary-hover);
}

.breadcrumb-separator-creatief-webdesign-proces {
  color: #cbd5e1;
}

.breadcrumb-current-creatief-webdesign-proces {
  color: var(--color-text-secondary);
  font-weight: 500;
}

.hero-title-creatief-webdesign-proces {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-family: var(--font-heading);
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-creatief-webdesign-proces {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-meta-creatief-webdesign-proces {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-creatief-webdesign-proces {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-creatief-webdesign-proces i {
  font-size: 0.875rem;
}

.hero-stats-creatief-webdesign-proces {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(5, 150, 105, 0.1);
}

.stat-item-creatief-webdesign-proces {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.stat-label-creatief-webdesign-proces {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

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

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

  .hero-stats-creatief-webdesign-proces {
    gap: 1.5rem;
  }
}

.intro-section-creatief-webdesign-proces {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

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

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

.intro-title-creatief-webdesign-proces {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.intro-description-creatief-webdesign-proces {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-image-creatief-webdesign-proces img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

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

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

.process-section-creatief-webdesign-proces {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.section-header-creatief-webdesign-proces {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-creatief-webdesign-proces {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.section-title-creatief-webdesign-proces {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.section-subtitle-creatief-webdesign-proces {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-creatief-webdesign-proces {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-creatief-webdesign-proces {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.process-step-creatief-webdesign-proces:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

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

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

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

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

@media (max-width: 768px) {
  .process-step-creatief-webdesign-proces {
    flex-direction: row;
    gap: 1rem;
  }

  .process-step-number-creatief-webdesign-proces {
    font-size: 1.75rem;
    min-width: 50px;
  }
}

.principles-section-creatief-webdesign-proces {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.principles-split-creatief-webdesign-proces {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.principles-text-creatief-webdesign-proces {
  flex: 1 1 50%;
  max-width: 50%;
}

.principles-image-creatief-webdesign-proces {
  flex: 1 1 50%;
  max-width: 50%;
}

.principles-title-creatief-webdesign-proces {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.principles-description-creatief-webdesign-proces {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.principles-list-creatief-webdesign-proces {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.principle-item-creatief-webdesign-proces {
  padding: 1.25rem;
  background: #f9fafb;
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.principle-name-creatief-webdesign-proces {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.principle-text-creatief-webdesign-proces {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.principles-image-creatief-webdesign-proces img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .principles-split-creatief-webdesign-proces {
    flex-direction: column;
  }

  .principles-text-creatief-webdesign-proces,
  .principles-image-creatief-webdesign-proces {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tools-section-creatief-webdesign-proces {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.tools-grid-creatief-webdesign-proces {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.tool-card-creatief-webdesign-proces {
  flex: 1 1 calc(50% - 1rem);
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.tool-card-creatief-webdesign-proces:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.tool-icon-creatief-webdesign-proces {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  font-size: 1.5rem;
}

.tool-name-creatief-webdesign-proces {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.tool-description-creatief-webdesign-proces {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.best-practices-section-creatief-webdesign-proces {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.best-practices-wrapper-creatief-webdesign-proces {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.best-practices-image-creatief-webdesign-proces {
  flex: 1 1 50%;
  max-width: 50%;
}

.best-practices-text-creatief-webdesign-proces {
  flex: 1 1 50%;
  max-width: 50%;
}

.best-practices-image-creatief-webdesign-proces img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.best-practices-title-creatief-webdesign-proces {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 2rem;
  font-family: var(--font-heading);
}

.practices-highlight-creatief-webdesign-proces {
  padding: 1.5rem 2rem;
  background: rgba(5, 150, 105, 0.05);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin-bottom: 2rem;
}

.practices-highlight-text-creatief-webdesign-proces {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #0f172a;
  font-style: italic;
  line-height: 1.7;
}

.practices-list-creatief-webdesign-proces {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practice-item-creatief-webdesign-proces {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.practice-bullet-creatief-webdesign-proces {
  color: var(--color-primary);
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.practice-content-creatief-webdesign-proces {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.practice-title-creatief-webdesign-proces {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
}

.practice-text-creatief-webdesign-proces {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .best-practices-wrapper-creatief-webdesign-proces {
    flex-direction: column;
  }

  .best-practices-image-creatief-webdesign-proces,
  .best-practices-text-creatief-webdesign-proces {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.cta-section-creatief-webdesign-proces {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.cta-box-creatief-webdesign-proces {
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem);
}

.cta-title-creatief-webdesign-proces {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.cta-description-creatief-webdesign-proces {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.cta-button-creatief-webdesign-proces {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: var(--color-primary);
  border: 2px solid #ffffff;
  border-radius: var(--radius-lg);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button-creatief-webdesign-proces:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-2px);
}

.related-section-creatief-webdesign-proces {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.related-title-creatief-webdesign-proces {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.related-subtitle-creatief-webdesign-proces {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: 3rem;
}

.related-cards-creatief-webdesign-proces {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-creatief-webdesign-proces {
  flex: 1 1 calc(33.333% - 1.4rem);
  max-width: 400px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-content-creatief-webdesign-proces {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  transition: all 0.3s ease;
}

.related-card-creatief-webdesign-proces:hover .related-card-content-creatief-webdesign-proces {
  background: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.15);
  transform: translateY(-4px);
}

.related-card-title-creatief-webdesign-proces {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.related-card-text-creatief-webdesign-proces {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-creatief-webdesign-proces {
  font-size: 0.9375rem;
  color: var(--color-primary);
  font-weight: 600;
  display: inline-block;
}

@media (max-width: 1024px) {
  .related-card-creatief-webdesign-proces {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

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

.disclaimer-section-creatief-webdesign-proces {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-box-creatief-webdesign-proces {
  padding: clamp(2rem, 4vw, 3rem);
  background: #ffffff;
  border-left: 4px solid var(--color-accent-warm);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  border: 1px solid #fef3c7;
  border-left: 4px solid var(--color-accent-warm);
}

.disclaimer-title-creatief-webdesign-proces {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-creatief-webdesign-proces {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-section-creatief-webdesign-proces {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .intro-section-creatief-webdesign-proces {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .process-section-creatief-webdesign-proces {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .principles-section-creatief-webdesign-proces {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .tools-section-creatief-webdesign-proces {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .best-practices-section-creatief-webdesign-proces {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .cta-section-creatief-webdesign-proces {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .related-section-creatief-webdesign-proces {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .disclaimer-section-creatief-webdesign-proces {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
}

@media (max-width: 767px) {
  .hero-title-creatief-webdesign-proces {
    font-size: 1.75rem;
  }

  .section-title-creatief-webdesign-proces {
    font-size: 1.5rem;
  }

  .process-step-creatief-webdesign-proces {
    padding: 1.25rem;
    gap: 1rem;
  }

  .breadcrumbs-creatief-webdesign-proces {
    font-size: 0.75rem;
  }
}

.main-kleur-typografie-richtlijnen {
  width: 100%;
  background: var(--color-bg-primary);
}

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

.hero-section-kleur-typografie-richtlijnen {
  width: 100%;
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-bottom: 1px solid #e5e7eb;
}

.breadcrumbs-kleur-typografie-richtlijnen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-kleur-typografie-richtlijnen {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.breadcrumb-link-kleur-typografie-richtlijnen:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumb-separator-kleur-typografie-richtlijnen {
  color: #d1d5db;
  font-weight: 300;
}

.breadcrumb-current-kleur-typografie-richtlijnen {
  color: var(--color-text-secondary);
  font-weight: 500;
}

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

.hero-text-wrapper-kleur-typografie-richtlijnen {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-tag-kleur-typografie-richtlijnen {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.hero-title-kleur-typografie-richtlijnen {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-kleur-typografie-richtlijnen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 500px;
}

.hero-meta-kleur-typografie-richtlijnen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-kleur-typografie-richtlijnen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-kleur-typografie-richtlijnen i {
  color: var(--color-primary);
  font-size: 0.875rem;
}

.hero-image-wrapper-kleur-typografie-richtlijnen {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.hero-image-kleur-typografie-richtlijnen {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.intro-section-kleur-typografie-richtlijnen {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.intro-title-kleur-typografie-richtlijnen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-kleur-typografie-richtlijnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-highlight-kleur-typografie-richtlijnen {
  flex: 1 1 50%;
}

.intro-quote-kleur-typografie-richtlijnen {
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
}

.intro-quote-text-kleur-typografie-richtlijnen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.intro-quote-author-kleur-typografie-richtlijnen {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-style: normal;
}

.color-theory-section-kleur-typografie-richtlijnen {
  width: 100%;
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.section-header-kleur-typografie-richtlijnen {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-kleur-typografie-richtlijnen {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.section-title-kleur-typografie-richtlijnen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.color-content-wrapper-kleur-typografie-richtlijnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.color-text-kleur-typografie-richtlijnen {
  flex: 1 1 50%;
}

.color-subtitle-kleur-typografie-richtlijnen {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.color-description-kleur-typografie-richtlijnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.color-list-kleur-typografie-richtlijnen {
  list-style: none;
  padding: 0;
  margin: 0;
}

.color-list-item-kleur-typografie-richtlijnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}

.color-list-item-kleur-typografie-richtlijnen::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.color-list-item-kleur-typografie-richtlijnen strong {
  color: #1e293b;
  font-weight: 600;
}

.color-image-kleur-typografie-richtlijnen {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.color-image-asset-kleur-typografie-richtlijnen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.contrast-accessibility-section-kleur-typografie-richtlijnen {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.contrast-image-kleur-typografie-richtlijnen {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.contrast-image-asset-kleur-typografie-richtlijnen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

.contrast-title-kleur-typografie-richtlijnen {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contrast-description-kleur-typografie-richtlijnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.contrast-tip-kleur-typografie-richtlijnen {
  padding: 1.5rem;
  background: rgba(5, 150, 105, 0.08);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.contrast-tip-kleur-typografie-richtlijnen strong {
  color: #1e293b;
  font-weight: 600;
}

.typography-fundamentals-section-kleur-typografie-richtlijnen {
  width: 100%;
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

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

.typography-text-kleur-typografie-richtlijnen {
  flex: 1 1 50%;
}

.typography-subtitle-kleur-typografie-richtlijnen {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.typography-description-kleur-typografie-richtlijnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.typography-steps-kleur-typografie-richtlijnen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.typography-step-kleur-typografie-richtlijnen {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number-kleur-typografie-richtlijnen {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-kleur-typografie-richtlijnen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.step-title-kleur-typografie-richtlijnen {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #1e293b;
  font-weight: 600;
}

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

.typography-image-kleur-typografie-richtlijnen {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.typography-image-asset-kleur-typografie-richtlijnen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.implementation-section-kleur-typografie-richtlijnen {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.implementation-image-kleur-typografie-richtlijnen {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.implementation-image-asset-kleur-typografie-richtlijnen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.implementation-text-kleur-typografie-richtlijnen {
  flex: 1 1 50%;
}

.implementation-title-kleur-typografie-richtlijnen {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.implementation-description-kleur-typografie-richtlijnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.implementation-cards-kleur-typografie-richtlijnen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.implementation-card-kleur-typografie-richtlijnen {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

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

.card-icon-kleur-typografie-richtlijnen {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

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

.card-text-kleur-typografie-richtlijnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.best-practices-section-kleur-typografie-richtlijnen {
  width: 100%;
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.best-practices-wrapper-kleur-typografie-richtlijnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.best-practices-text-kleur-typografie-richtlijnen {
  flex: 1 1 50%;
}

.best-practices-subtitle-kleur-typografie-richtlijnen {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 2rem;
}

.best-practices-items-kleur-typografie-richtlijnen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.best-practice-item-kleur-typografie-richtlijnen {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.item-number-kleur-typografie-richtlijnen {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.item-content-kleur-typografie-richtlijnen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.item-title-kleur-typografie-richtlijnen {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #1e293b;
  font-weight: 600;
}

.item-text-kleur-typografie-richtlijnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.best-practices-image-kleur-typografie-richtlijnen {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.best-practices-image-asset-kleur-typografie-richtlijnen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.conclusion-section-kleur-typografie-richtlijnen {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-kleur-typografie-richtlijnen {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-kleur-typografie-richtlijnen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-kleur-typografie-richtlijnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-kleur-typografie-richtlijnen {
  margin-top: 2rem;
}

.cta-button-kleur-typografie-richtlijnen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.cta-button-kleur-typografie-richtlijnen:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.disclaimer-section-kleur-typografie-richtlijnen {
  width: 100%;
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

.disclaimer-box-kleur-typografie-richtlijnen {
  padding: 2rem;
  background: rgba(5, 150, 105, 0.05);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-kleur-typografie-richtlijnen {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-title-kleur-typografie-richtlijnen i {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.disclaimer-text-kleur-typografie-richtlijnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.related-posts-section-kleur-typografie-richtlijnen {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

.related-posts-title-kleur-typografie-richtlijnen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.related-posts-subtitle-kleur-typografie-richtlijnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
}

.related-posts-grid-kleur-typografie-richtlijnen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-post-card-kleur-typografie-richtlijnen {
  flex: 1 1 300px;
  max-width: 400px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.related-post-card-kleur-typografie-richtlijnen:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.related-card-content-kleur-typografie-richtlijnen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.related-card-title-kleur-typografie-richtlijnen {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #1e293b;
  font-weight: 700;
  line-height: 1.3;
}

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

.related-card-link-kleur-typografie-richtlijnen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.related-card-link-kleur-typografie-richtlijnen:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

.related-card-link-kleur-typografie-richtlijnen i {
  font-size: 0.75rem;
}

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

  .hero-text-wrapper-kleur-typografie-richtlijnen,
  .hero-image-wrapper-kleur-typografie-richtlijnen,
  .intro-text-kleur-typografie-richtlijnen,
  .intro-highlight-kleur-typografie-richtlijnen,
  .color-text-kleur-typografie-richtlijnen,
  .color-image-kleur-typografie-richtlijnen,
  .contrast-image-kleur-typografie-richtlijnen,
  .contrast-text-kleur-typografie-richtlijnen,
  .typography-text-kleur-typografie-richtlijnen,
  .typography-image-kleur-typografie-richtlijnen,
  .implementation-image-kleur-typografie-richtlijnen,
  .implementation-text-kleur-typografie-richtlijnen,
  .best-practices-text-kleur-typografie-richtlijnen,
  .best-practices-image-kleur-typografie-richtlijnen {
    flex: 1 1 100%;
  }

  .intro-wrapper-kleur-typografie-richtlijnen,
  .color-content-wrapper-kleur-typografie-richtlijnen,
  .contrast-wrapper-kleur-typografie-richtlijnen,
  .typography-wrapper-kleur-typografie-richtlijnen,
  .implementation-wrapper-kleur-typografie-richtlijnen,
  .best-practices-wrapper-kleur-typografie-richtlijnen {
    flex-direction: column;
  }

  .section-header-kleur-typografie-richtlijnen {
    margin-bottom: 2rem;
  }

  .related-post-card-kleur-typografie-richtlijnen {
    flex: 1 1 100%;
    max-width: none;
  }

  .implementation-cards-kleur-typografie-richtlijnen {
    flex-direction: column;
  }

  .implementation-card-kleur-typografie-richtlijnen {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .section-header-kleur-typografie-richtlijnen {
    margin-bottom: 3.5rem;
  }

  .hero-section-kleur-typografie-richtlijnen {
    padding: 6rem 0;
  }

  .intro-section-kleur-typografie-richtlijnen,
  .color-theory-section-kleur-typografie-richtlijnen,
  .contrast-accessibility-section-kleur-typografie-richtlijnen,
  .typography-fundamentals-section-kleur-typografie-richtlijnen,
  .implementation-section-kleur-typografie-richtlijnen,
  .best-practices-section-kleur-typografie-richtlijnen,
  .conclusion-section-kleur-typografie-richtlijnen,
  .disclaimer-section-kleur-typografie-richtlijnen,
  .related-posts-section-kleur-typografie-richtlijnen {
    padding: 6rem 0;
  }
}

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

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

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

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

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

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

.hero-title-gebruikergerichtheid-webdesign {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.15;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-gebruikergerichtheid-webdesign {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-stats-gebruikergerichtheid-webdesign {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2rem;
}

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

.stat-number-gebruikergerichtheid-webdesign {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #059669;
  line-height: 1;
}

.stat-label-gebruikergerichtheid-webdesign {
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 500;
}

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

.hero-image-gebruikergerichtheid-webdesign {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.breadcrumbs-gebruikergerichtheid-webdesign {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: 0.875rem;
}

.breadcrumb-link-gebruikergerichtheid-webdesign {
  color: #059669;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb-link-gebruikergerichtheid-webdesign:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumb-separator-gebruikergerichtheid-webdesign {
  color: #9ca3af;
}

.breadcrumb-current-gebruikergerichtheid-webdesign {
  color: #4b5563;
  font-weight: 500;
}

.meta-section-gebruikergerichtheid-webdesign {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem) 0;
  border-bottom: 1px solid #e5e7eb;
}

.meta-badges-gebruikergerichtheid-webdesign {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-gebruikergerichtheid-webdesign {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

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

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

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

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

.intro-title-gebruikergerichtheid-webdesign {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

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

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

.intro-image-element-gebruikergerichtheid-webdesign {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.content-section-1-gebruikergerichtheid-webdesign {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

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

.content-title-gebruikergerichtheid-webdesign {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

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

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

.content-image-element-gebruikergerichtheid-webdesign {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.steps-section-gebruikergerichtheid-webdesign {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.steps-header-gebruikergerichtheid-webdesign {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.steps-title-gebruikergerichtheid-webdesign {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.steps-subtitle-gebruikergerichtheid-webdesign {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.steps-content-gebruikergerichtheid-webdesign {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-gebruikergerichtheid-webdesign {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  align-items: flex-start;
}

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

.step-details-gebruikergerichtheid-webdesign {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-gebruikergerichtheid-webdesign {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #111827;
}

.step-text-gebruikergerichtheid-webdesign {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
}

.content-section-2-gebruikergerichtheid-webdesign {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.content-image-2-gebruikergerichtheid-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-element-2-gebruikergerichtheid-webdesign {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.content-text-2-gebruikergerichtheid-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-2-gebruikergerichtheid-webdesign {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

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

.features-section-gebruikergerichtheid-webdesign {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.features-title-gebruikergerichtheid-webdesign {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.features-subtitle-gebruikergerichtheid-webdesign {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.features-cards-gebruikergerichtheid-webdesign {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.features-card-gebruikergerichtheid-webdesign {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-card-gebruikergerichtheid-webdesign:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.features-card-icon-gebruikergerichtheid-webdesign {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(5, 150, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 1.5rem;
}

.features-card-title-gebruikergerichtheid-webdesign {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
}

.features-card-text-gebruikergerichtheid-webdesign {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

.quote-section-gebruikergerichtheid-webdesign {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.featured-quote-gebruikergerichtheid-webdesign {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #059669;
  background: #ffffff;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.quote-text-gebruikergerichtheid-webdesign {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #111827;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.quote-author-gebruikergerichtheid-webdesign {
  font-size: 0.875rem;
  color: #4b5563;
  font-style: normal;
  font-weight: 500;
}

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

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

.content-text-3-gebruikergerichtheid-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-3-gebruikergerichtheid-webdesign {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

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

.content-image-3-gebruikergerichtheid-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-element-3-gebruikergerichtheid-webdesign {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.cta-section-gebruikergerichtheid-webdesign {
  background: #059669;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.cta-content-gebruikergerichtheid-webdesign {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title-gebruikergerichtheid-webdesign {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-text-gebruikergerichtheid-webdesign {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #e0f2fe;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta-button-gebruikergerichtheid-webdesign {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  color: #059669;
  border-radius: 12px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 0.5rem;
}

.cta-button-gebruikergerichtheid-webdesign:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.disclaimer-section-gebruikergerichtheid-webdesign {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid #e5e7eb;
}

.disclaimer-content-gebruikergerichtheid-webdesign {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-gebruikergerichtheid-webdesign {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.disclaimer-text-gebruikergerichtheid-webdesign {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.7;
}

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

.related-header-gebruikergerichtheid-webdesign {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.related-title-gebruikergerichtheid-webdesign {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-gebruikergerichtheid-webdesign {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-gebruikergerichtheid-webdesign {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-gebruikergerichtheid-webdesign:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.related-card-image-gebruikergerichtheid-webdesign {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
}

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

.related-card-content-gebruikergerichtheid-webdesign {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.related-card-title-gebruikergerichtheid-webdesign {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.related-card-text-gebruikergerichtheid-webdesign {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
  flex-grow: 1;
}

.related-link-gebruikergerichtheid-webdesign {
  color: #059669;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.related-link-gebruikergerichtheid-webdesign:hover {
  color: #047857;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-content-gebruikergerichtheid-webdesign,
  .intro-content-gebruikergerichtheid-webdesign,
  .content-wrapper-gebruikergerichtheid-webdesign,
  .content-wrapper-2-gebruikergerichtheid-webdesign,
  .content-wrapper-3-gebruikergerichtheid-webdesign {
    flex-direction: column;
  }

  .hero-text-block-gebruikergerichtheid-webdesign,
  .hero-image-block-gebruikergerichtheid-webdesign,
  .intro-text-gebruikergerichtheid-webdesign,
  .intro-image-gebruikergerichtheid-webdesign,
  .content-text-gebruikergerichtheid-webdesign,
  .content-image-gebruikergerichtheid-webdesign,
  .content-image-2-gebruikergerichtheid-webdesign,
  .content-text-2-gebruikergerichtheid-webdesign,
  .content-text-3-gebruikergerichtheid-webdesign,
  .content-image-3-gebruikergerichtheid-webdesign {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-gebruikergerichtheid-webdesign {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

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

  .related-card-gebruikergerichtheid-webdesign {
    flex: 1 1 100%;
    max-width: none;
  }

  .step-item-gebruikergerichtheid-webdesign {
    flex-direction: column;
  }

  .step-number-gebruikergerichtheid-webdesign {
    min-width: auto;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .features-card-gebruikergerichtheid-webdesign {
    flex: 1 1 calc(50% - 1rem);
  }

  .related-card-gebruikergerichtheid-webdesign {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .hero-section-gebruikergerichtheid-webdesign,
  .intro-section-gebruikergerichtheid-webdesign,
  .content-section-1-gebruikergerichtheid-webdesign,
  .steps-section-gebruikergerichtheid-webdesign,
  .content-section-2-gebruikergerichtheid-webdesign,
  .features-section-gebruikergerichtheid-webdesign,
  .quote-section-gebruikergerichtheid-webdesign,
  .content-section-3-gebruikergerichtheid-webdesign,
  .cta-section-gebruikergerichtheid-webdesign,
  .related-section-gebruikergerichtheid-webdesign {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

.main-responsive-design-fundamentals {
  width: 100%;
}

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

.hero-section-responsive-design-fundamentals {
  background: #f9fafb;
  padding: clamp(3rem, 6vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-wrapper-responsive-design-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-responsive-design-fundamentals {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-responsive-design-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-meta-responsive-design-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-responsive-design-fundamentals {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-responsive-design-fundamentals i {
  font-size: 0.875rem;
}

.hero-image-wrapper-responsive-design-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-responsive-design-fundamentals {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.breadcrumbs-responsive-design-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-responsive-design-fundamentals {
  color: #059669;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.breadcrumb-link-responsive-design-fundamentals:hover {
  text-decoration: underline;
}

.breadcrumb-separator-responsive-design-fundamentals {
  color: #9ca3af;
  margin: 0 0.25rem;
}

.breadcrumb-current-responsive-design-fundamentals {
  color: #4b5563;
}

.introduction-section-responsive-design-fundamentals {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 6rem) 0;
  overflow: hidden;
}

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

.introduction-text-responsive-design-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-responsive-design-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.introduction-body-responsive-design-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.introduction-image-responsive-design-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-img-responsive-design-fundamentals {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.principles-section-responsive-design-fundamentals {
  background: #f3f4f6;
  padding: clamp(3rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.section-header-responsive-design-fundamentals {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-responsive-design-fundamentals {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.principles-title-responsive-design-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.principles-subtitle-responsive-design-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.principles-steps-responsive-design-fundamentals {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.principles-step-responsive-design-fundamentals {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  align-items: flex-start;
}

.principles-step-number-responsive-design-fundamentals {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.principles-step-content-responsive-design-fundamentals {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.principles-step-title-responsive-design-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.principles-step-text-responsive-design-fundamentals {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

.breakpoints-section-responsive-design-fundamentals {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.breakpoints-wrapper-responsive-design-fundamentals {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.breakpoints-text-responsive-design-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.breakpoints-title-responsive-design-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.breakpoints-body-responsive-design-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.breakpoints-list-responsive-design-fundamentals {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.breakpoints-list-item-responsive-design-fundamentals {
  color: #4b5563;
  margin-bottom: 0.75rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.breakpoints-list-item-responsive-design-fundamentals strong {
  color: #111827;
  font-weight: 600;
}

.breakpoints-image-responsive-design-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.breakpoints-img-responsive-design-fundamentals {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.techniques-section-responsive-design-fundamentals {
  background: #f3f4f6;
  padding: clamp(3rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.techniques-title-responsive-design-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.techniques-cards-responsive-design-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.techniques-card-responsive-design-fundamentals {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.techniques-card-responsive-design-fundamentals:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.techniques-card-icon-responsive-design-fundamentals {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(5, 150, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 1.5rem;
}

.techniques-card-title-responsive-design-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.techniques-card-text-responsive-design-fundamentals {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

.best-practices-section-responsive-design-fundamentals {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.best-practices-wrapper-responsive-design-fundamentals {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.best-practices-image-responsive-design-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.best-practices-img-responsive-design-fundamentals {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.best-practices-text-responsive-design-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.best-practices-title-responsive-design-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 2rem;
}

.best-practices-quote-responsive-design-fundamentals {
  border-left: 4px solid #059669;
  padding-left: 2rem;
  margin: 2rem 0;
  font-style: italic;
  background: #f9fafb;
  padding: 1.5rem;
  padding-left: 2rem;
  border-radius: 8px;
}

.quote-text-responsive-design-fundamentals {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-responsive-design-fundamentals {
  font-size: 0.875rem;
  color: #4b5563;
  font-style: normal;
  opacity: 0.8;
}

.best-practices-list-responsive-design-fundamentals {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practice-item-responsive-design-fundamentals {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.practice-item-title-responsive-design-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.practice-item-text-responsive-design-fundamentals {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

.conclusion-section-responsive-design-fundamentals {
  background: #f3f4f6;
  padding: clamp(3rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-responsive-design-fundamentals {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-responsive-design-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-body-responsive-design-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-cta-responsive-design-fundamentals {
  background: linear-gradient(135deg, #059669, #10b981);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

.cta-title-responsive-design-fundamentals {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cta-text-responsive-design-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #f0fdf4;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-button-responsive-design-fundamentals {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #059669;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-responsive-design-fundamentals:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.disclaimer-section-responsive-design-fundamentals {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-box-responsive-design-fundamentals {
  background: #f9fafb;
  border-left: 4px solid #f59e0b;
  padding: 1.5rem;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-responsive-design-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.disclaimer-text-responsive-design-fundamentals {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

.related-section-responsive-design-fundamentals {
  background: #f3f4f6;
  padding: clamp(3rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.related-header-responsive-design-fundamentals {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-responsive-design-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.related-subtitle-responsive-design-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
}

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

.related-card-responsive-design-fundamentals {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-responsive-design-fundamentals:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.related-card-content-responsive-design-fundamentals {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-responsive-design-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.related-card-text-responsive-design-fundamentals {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

.related-card-link-responsive-design-fundamentals {
  display: inline-block;
  margin-top: 0.5rem;
  color: #059669;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.related-card-responsive-design-fundamentals:hover .related-card-link-responsive-design-fundamentals {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .hero-content-responsive-design-fundamentals,
  .introduction-content-responsive-design-fundamentals,
  .breakpoints-wrapper-responsive-design-fundamentals,
  .best-practices-wrapper-responsive-design-fundamentals {
    flex-direction: column;
  }

  .hero-text-wrapper-responsive-design-fundamentals,
  .hero-image-wrapper-responsive-design-fundamentals,
  .introduction-text-responsive-design-fundamentals,
  .introduction-image-responsive-design-fundamentals,
  .breakpoints-text-responsive-design-fundamentals,
  .breakpoints-image-responsive-design-fundamentals,
  .best-practices-image-responsive-design-fundamentals,
  .best-practices-text-responsive-design-fundamentals {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .principles-step-responsive-design-fundamentals {
    flex-direction: column;
    align-items: flex-start;
  }

  .related-card-responsive-design-fundamentals {
    flex: 1 1 100%;
    max-width: none;
  }

  .techniques-card-responsive-design-fundamentals {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-title-responsive-design-fundamentals {
    font-size: 2.5rem;
  }

  .principles-title-responsive-design-fundamentals,
  .breakpoints-title-responsive-design-fundamentals,
  .best-practices-title-responsive-design-fundamentals,
  .conclusion-title-responsive-design-fundamentals {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .section-header-responsive-design-fundamentals {
    margin-bottom: 4rem;
  }

  .principles-steps-responsive-design-fundamentals {
    gap: 2rem;
  }
}

.design-foundations-about {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

.hero-section-about {
  background: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-section-about {
    padding: 5rem 0;
  }
}

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

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

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

.hero-title-about {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.15;
}

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

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

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

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

.stat-label-about {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.hero-image-about {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-lg);
  margin-top: 1rem;
}

.philosophy-section-about {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .philosophy-section-about {
    padding: 5rem 0;
  }
}

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

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

.philosophy-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

.section-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.philosophy-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.philosophy-intro-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 800px;
}

.philosophy-image-about {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: var(--radius-lg);
}

.methodology-section-about {
  background: var(--color-bg-tertiary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .methodology-section-about {
    padding: 5rem 0;
  }
}

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

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

.methodology-header-about {
  text-align: center;
  margin-bottom: 2rem;
}

.methodology-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.methodology-subtitle-about {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.process-step-about {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

.process-number-about {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

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

.process-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.process-text-about {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.pillars-section-about {
  background: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .pillars-section-about {
    padding: 5rem 0;
  }
}

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

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

.pillars-header-about {
  text-align: center;
  margin-bottom: 2rem;
}

.pillars-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.pillars-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.pillar-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card-about:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.pillar-icon-about {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(5, 150, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.pillar-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.pillar-text-about {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.vision-section-about {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .vision-section-about {
    padding: 5rem 0;
  }
}

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

.vision-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.vision-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

.vision-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.vision-quote-about {
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-tertiary);
  margin: 2rem 0;
  border-radius: var(--radius-md);
}

.vision-quote-text-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.vision-quote-author-about {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-style: normal;
}

.vision-description-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 800px;
}

.vision-image-about {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-lg);
}

.commitment-section-about {
  background: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .commitment-section-about {
    padding: 5rem 0;
  }
}

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

.commitment-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

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

.commitment-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.commitment-text-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.disclaimer-section-about {
  background: var(--color-bg-tertiary);
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

@media (min-width: 768px) {
  .disclaimer-section-about {
    padding: 4rem 0;
  }
}

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

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.disclaimer-icon-about {
  font-size: 1.25rem;
  color: var(--color-primary);
}

.disclaimer-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.disclaimer-text-about {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.docs-hub {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
}

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

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

.privacy-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.privacy-hero-meta {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
}

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

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

.privacy-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.privacy-section h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
}

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

.privacy-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.privacy-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-secondary);
  padding-left: 1.5rem;
  position: relative;
}

.privacy-section li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.contact-section {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-text-muted);
  border-opacity: 0.2;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-section h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.contact-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

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

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

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

@media (min-width: 768px) {
  .privacy-hero {
    padding: 5rem 0;
  }

  .privacy-content {
    padding: 5rem 0;
  }

  .contact-section {
    padding: 5rem 0;
  }

  .privacy-section {
    gap: 1.5rem;
  }
}

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

  .privacy-content {
    padding: 6rem 0;
  }

  .contact-section {
    padding: 6rem 0;
  }

  .privacy-content-wrapper {
    gap: 3.5rem;
  }
}

.thank-you-page {
  width: 100%;
}

.thank-section {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 10vh, 6rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thank-icon {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.thank-section h1 {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-family: var(--font-heading);
  margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-subtitle {
  color: var(--color-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: 0.5px;
}

.thank-description {
  color: var(--color-text-primary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1.2vw + 0.5rem, 1rem);
  line-height: 1.7;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(4rem, 12vh, 8rem) 0;
    min-height: 100vh;
  }

  .thank-icon {
    margin-bottom: 2rem;
  }

  .thank-section h1 {
    margin-bottom: 1rem;
  }

  .thank-subtitle {
    margin-bottom: 1.5rem;
  }

  .thank-description {
    margin-bottom: 1.5rem;
  }

  .thank-next-steps {
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: 6rem 0;
    min-height: 100vh;
  }

  .thank-content {
    max-width: 700px;
  }

  .thank-icon {
    margin-bottom: 2.5rem;
  }

  .thank-section h1 {
    margin-bottom: 1.5rem;
  }

  .thank-subtitle {
    margin-bottom: 1.75rem;
    letter-spacing: 0.8px;
  }

  .thank-description {
    margin-bottom: 1.75rem;
  }

  .thank-next-steps {
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
  }

  .thank-content {
    max-width: 750px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-icon {
    animation: none;
    opacity: 1;
    transform: scale(1);
  }

  .btn {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}

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

@media (prefers-color-scheme: dark) {
  .thank-section {
    background: #1a1a1a;
  }

  .thank-section h1 {
    color: #ffffff;
  }

  .thank-description {
    color: #e0e0e0;
  }

  .thank-next-steps {
    color: #b0b0b0;
  }
}

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  padding: clamp(2rem, 10vh, 4rem) 0;
  overflow: hidden;
  position: relative;
}

.error-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.error-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

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

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2rem, 6vw, 4rem);
}

.error-decoration {
  position: absolute;
  opacity: 0.15;
  animation: pulse 3s ease-in-out infinite;
}

.error-decoration-top {
  top: 5%;
  left: 5%;
  font-size: clamp(2rem, 8vw, 5rem);
}

.error-decoration-bottom {
  bottom: 10%;
  right: 8%;
  font-size: clamp(1.5rem, 6vw, 4rem);
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.1;
    transform: scale(1);
  }
  50% {
    opacity: 0.2;
    transform: scale(1.1);
  }
}

.error-code-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.error-code {
  font-size: clamp(3.5rem, 15vw, 8rem);
  font-family: var(--font-heading);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.error-glyph {
  font-size: clamp(2rem, 8vw, 4rem);
  color: rgba(255, 255, 255, 0.7);
  animation: rotate 8s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.error-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  color: #ffffff;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  animation: slideDown 0.8s ease-out 0.1s both;
}

.error-description {
  font-size: clamp(0.875rem, 1.5vw + 0.3rem, 1.125rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 500px;
  margin: 0;
  animation: slideDown 0.8s ease-out 0.2s both;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-suggestions {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  backdrop-filter: blur(10px);
  max-width: 400px;
  animation: slideDown 0.8s ease-out 0.3s both;
}

.suggestions-intro {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.suggestions-list li {
  font-size: clamp(0.8125rem, 1vw + 0.3rem, 1rem);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.4;
}

.suggestions-list i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.0625rem);
  font-weight: 600;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.75rem, 4vw, 2.5rem);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  animation: slideDown 0.8s ease-out 0.4s both;
}

.btn-primary {
  background: #ffffff;
  color: #059669;
  font-weight: 700;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.btn-large {
  font-size: clamp(0.9375rem, 1.5vw + 0.4rem, 1.125rem);
  padding: clamp(1rem, 2.5vw, 1.25rem) clamp(2rem, 5vw, 3rem);
}

.error-quote {
  margin-top: clamp(1.5rem, 4vw, 3rem);
  animation: slideDown 0.8s ease-out 0.5s both;
}

.error-quote p {
  font-size: clamp(0.8125rem, 1.2vw + 0.3rem, 1.0625rem);
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin: 0;
  line-height: 1.7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.error-quote i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75em;
  margin: 0 0.25rem;
}

@media (min-width: 768px) {
  .error-section {
    padding: clamp(3rem, 12vh, 5rem) 0;
  }

  .error-content {
    gap: clamp(2rem, 5vw, 4rem);
    padding: clamp(3rem, 8vw, 5rem);
  }

  .error-code-wrapper {
    gap: clamp(1.5rem, 4vw, 3rem);
  }

  .error-suggestions {
    max-width: 450px;
  }
}

@media (min-width: 1024px) {
  .error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
  }

  .error-content {
    gap: clamp(2.5rem, 6vw, 4rem);
  }

  .error-decoration-top {
    top: 10%;
    left: 8%;
  }

  .error-decoration-bottom {
    bottom: 15%;
    right: 10%;
  }

  .error-code:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
  }

  .btn-primary:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  }
}

@media (min-width: 1440px) {
  .error-code {
    font-size: clamp(4rem, 16vw, 10rem);
  }

  .error-glyph {
    font-size: clamp(2.5rem, 9vw, 5rem);
  }

  .error-title {
    font-size: clamp(2rem, 5vw + 0.5rem, 3rem);
  }

  .error-description {
    font-size: clamp(1rem, 1.8vw + 0.3rem, 1.25rem);
  }

  .error-suggestions {
    max-width: 500px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code,
  .error-title,
  .error-description,
  .error-suggestions,
  .btn,
  .error-quote {
    animation: none;
  }

  .error-glyph,
  .error-decoration {
    animation: none;
  }

  .error-section::before,
  .error-section::after {
    animation: none;
  }
}

@media print {
  .error-section::before,
  .error-section::after {
    display: none;
  }

  .error-decoration {
    display: none;
  }

  .error-code {
    color: #000;
    text-shadow: none;
  }

  .error-title,
  .error-description {
    color: #333;
  }

  .btn {
    border: 1px solid #000;
    color: #000;
    background: transparent;
  }
}