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

:root {
  
  
  
  --color-bg-primary: #fffbeb;
  --color-bg-secondary: #fef3c7;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  
  
  --color-text-primary: #1c1917;
  --color-text-secondary: #57534e;
  --color-text-muted: #9ca3af;
  
  
  --color-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-primary-light: #ccfbf1;
  --color-secondary: #f59e0b;
  --color-secondary-hover: #d97706;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Lora', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
}

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

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

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: var(--line-height-normal);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

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

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

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

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

h6 {
  font-size: 1.125rem;
  font-weight: 600;
}

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

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 500;
}

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

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

ul li,
ol li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  gap: var(--space-sm);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

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

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

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

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

.btn-outline:hover:not(:disabled) {
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-primary);
  font-weight: 500;
}

.btn-ghost:hover:not(:disabled) {
  background: var(--color-bg-secondary);
}

.btn-sm {
  padding: var(--space-xs) var(--space-md);
  font-size: 0.875rem;
}

.btn-lg {
  padding: var(--space-md) var(--space-xl);
  font-size: 1.125rem;
}

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

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

.card-compact {
  padding: var(--space-md);
}

.card-elevated {
  box-shadow: var(--shadow-lg);
}

input,
textarea,
select {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-md);
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
  transition: all var(--transition-base);
}

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

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

label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  color: var(--color-text-primary);
}

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-primary {
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
}

.badge-secondary {
  background: #fef08a;
  color: #92400e;
}

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

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

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

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

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

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

section {
  padding: var(--space-3xl) 0;
}

section.compact {
  padding: var(--space-2xl) 0;
}

@media (max-width: 768px) {
  section {
    padding: var(--space-2xl) 0;
  }
  
  section.compact {
    padding: var(--space-lg) 0;
  }
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d1d5db, transparent);
  margin: var(--space-lg) 0;
}

.hidden {
  display: none !important;
}

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

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

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

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

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-fadeIn {
  animation: fadeIn var(--transition-base);
}

.animate-slideInUp {
  animation: slideInUp var(--transition-base);
}

.animate-slideInDown {
  animation: slideInDown var(--transition-base);
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

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

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

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

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

@media print {
  body {
    background: #ffffff;
  }
  
  .no-print {
    display: none;
  }
}
.header-taal-hub {
  background: var(--color-bg-tertiary);
  border-bottom: 1px solid #f0ede7;
  position: static;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-taal-hub-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: clamp(60px, 12vw, 80px);
  gap: 2rem;
}

.header-taal-hub-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
  flex-shrink: 0;
  transition: opacity var(--transition-base);
}

.header-taal-hub-brand:hover {
  opacity: 0.8;
}

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

.header-taal-hub-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

.header-taal-hub-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 2rem);
  margin: 0 auto;
  flex: 1;
  justify-content: flex-end;
}

.header-taal-hub-nav-link {
  color: var(--color-text-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  transition: color var(--transition-base);
  white-space: nowrap;
}

.header-taal-hub-nav-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.header-taal-hub-cta-button {
  background: var(--color-primary);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  display: none;
  white-space: nowrap;
}

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

.header-taal-hub-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-right: -0.5rem;
  transition: all var(--transition-base);
}

.header-taal-hub-mobile-toggle:hover {
  transform: scale(1.05);
}

.header-taal-hub-hamburger-line {
  width: 24px;
  height: 2.5px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.header-taal-hub-mobile-toggle.active .header-taal-hub-hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.header-taal-hub-mobile-toggle.active .header-taal-hub-hamburger-line:nth-child(2) {
  opacity: 0;
}

.header-taal-hub-mobile-toggle.active .header-taal-hub-hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.header-taal-hub-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-tertiary);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  overflow-y: auto;
}

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

.header-taal-hub-mobile-header {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background: var(--color-bg-tertiary);
  border-bottom: 1px solid #f0ede7;
  z-index: 1001;
}

.header-taal-hub-mobile-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-base);
}

.header-taal-hub-mobile-close:hover {
  color: var(--color-primary);
}

.header-taal-hub-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 2rem 1.5rem 1.5rem;
  width: 100%;
}

.header-taal-hub-mobile-link {
  color: var(--color-text-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid #f0ede7;
  transition: color var(--transition-base);
}

.header-taal-hub-mobile-link:hover {
  color: var(--color-primary);
}

.header-taal-hub-mobile-cta {
  background: var(--color-primary);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  display: block;
}

.header-taal-hub-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

  .header-taal-hub-mobile-menu {
    display: none;
  }

  .header-taal-hub-desktop-nav {
    display: flex;
  }

  .header-taal-hub-cta-button {
    display: inline-block;
  }

  .header-taal-hub-container {
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .header-taal-hub-container {
    gap: 4rem;
  }

  .header-taal-hub-nav-link {
    font-size: 1rem;
  }
}

    .grammar-hub {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

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

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

.hero-header-index {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-tag-index {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title-index {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: var(--space-xl);
}

.stat-card-index {
  text-align: center;
  padding: var(--space-md);
}

.stat-number-index {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label-index {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.approach-section-index {
  padding: clamp(3rem, 10vw, 6rem) 0;
  background: var(--color-bg-tertiary);
  overflow: hidden;
}

.approach-content-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: flex-start;
}

.approach-text-index {
  flex: 1 1 300px;
  min-width: 0;
}

.approach-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
}

.approach-intro-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.approach-features-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

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

.feature-icon-index {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-hover);
  font-size: 1.5rem;
}

.feature-text-index {
  flex: 1;
}

.feature-title-index {
  font-size: 1.1rem;
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  font-family: var(--font-heading);
}

.feature-desc-index {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.approach-image-index {
  flex: 1 1 300px;
  min-width: 0;
  min-height: 300px;
}

.approach-img-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .approach-content-index {
    flex-direction: column;
  }
  
  .approach-image-index {
    min-height: 250px;
  }
}

.featured-lessons-section-index {
  padding: clamp(3rem, 10vw, 6rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

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

.featured-header-index {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.featured-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
}

.featured-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.featured-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.featured-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.card-image-wrapper-index {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

.featured-card-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.card-title-index {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--color-text-primary);
  font-weight: 600;
  font-family: var(--font-heading);
  line-height: 1.3;
  margin: 0;
}

.card-description-index {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  flex: 1;
  margin: 0;
}

.card-link-index {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
  margin-top: auto;
}

.card-link-index:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

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

.learning-path-section-index {
  padding: clamp(3rem, 10vw, 6rem) 0;
  background: var(--color-bg-tertiary);
  overflow: hidden;
}

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

.learning-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  text-align: center;
  font-family: var(--font-heading);
}

.learning-intro-index {
  text-align: center;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.steps-container-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.step-card-index {
  flex: 1 1 250px;
  max-width: 300px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: relative;
}

.step-number-index {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: 1;
}

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

.step-title-index {
  font-size: clamp(1.15rem, 2vw, 1.3rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
}

.step-text-index {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.testimonials-section-index {
  padding: clamp(3rem, 10vw, 6rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

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

.testimonials-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  text-align: center;
  font-family: var(--font-heading);
}

.testimonials-intro-index {
  text-align: center;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.testimonial-quote-index {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.quote-text-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}

.quote-author-index {
  font-size: 0.9rem;
  color: var(--color-text-primary);
  font-weight: 600;
  display: block;
  font-style: normal;
}

.faq-section-index {
  padding: clamp(3rem, 10vw, 6rem) 0;
  background: var(--color-bg-tertiary);
  overflow: hidden;
}

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

.faq-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  text-align: center;
  font-family: var(--font-heading);
}

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

.faq-item-index {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.faq-question-index {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
}

.faq-answer-index {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.cta-final-section-index {
  padding: clamp(3rem, 10vw, 6rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

.cta-final-content-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: stretch;
  justify-content: center;
}

.cta-box-index {
  flex: 1 1 400px;
  background: linear-gradient(135deg, var(--color-primary), #0a8077);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.cta-box-title-index {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #ffffff;
  font-family: var(--font-heading);
  margin: 0;
}

.cta-box-text-index {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin: 0;
}

.cta-secondary-index {
  flex: 1 1 300px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
}

.cta-secondary-text-index {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.cookie-banner-index {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-text-primary);
  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-index.hidden {
  display: none;
}

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

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.6rem 1.25rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 600;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

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

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

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

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

@media (max-width: 768px) {
  .hero-buttons-index {
    flex-direction: column;
  }
  
  .hero-buttons-index .btn {
    width: 100%;
  }
  
  .cta-final-content-index {
    flex-direction: column;
  }
  
  .cta-box-index,
  .cta-secondary-index {
    flex: 1 1 100%;
  }
  
  .cookie-banner-index {
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-md);
  }
  
  .cookie-banner-text-index {
    flex: 1 1 100%;
    text-align: center;
  }
  
  .cookie-banner-buttons-index {
    flex: 1 1 100%;
    justify-content: center;
  }
}

    .footer {
  background: var(--color-bg-primary);
  border-top: 1px solid #e5e7eb;
  padding: clamp(3rem, 8vw, 5rem) 0;
  color: var(--color-text-secondary);
  overflow: hidden;
}

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

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

.footer-about {
  display: block;
  max-width: 500px;
}

.footer-about h3 {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  line-height: var(--line-height-tight);
}

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

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

.footer-nav,
.footer-contact {
  display: block;
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-nav h3,
.footer-contact h3 {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  line-height: var(--line-height-tight);
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.footer-nav-list li {
  display: block;
}

.footer-nav-list a {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  text-decoration: none;
  transition: color var(--transition-base);
  line-height: var(--line-height-normal);
}

.footer-nav-list a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

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

.footer-legal {
  display: block;
  width: 100%;
}

.footer-legal h3 {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  line-height: var(--line-height-tight);
}

.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.footer-legal-list li {
  display: inline-block;
}

.footer-legal-list a {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  text-decoration: none;
  transition: color var(--transition-base);
  line-height: var(--line-height-normal);
}

.footer-legal-list a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.footer-copyright {
  display: block;
  border-top: 1px solid #e5e7eb;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.footer-copyright p {
  color: var(--color-text-muted);
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.875rem);
  line-height: var(--line-height-normal);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .footer-sections {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .footer-nav,
  .footer-contact {
    flex: 1 1 100%;
  }

  .footer-legal-list {
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 0.75rem);
  }

  .footer-legal-list li {
    display: block;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .footer-about {
    max-width: 100%;
  }

  .footer-content {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .footer-sections {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}
    

.category-page-nederlandse-grammatica {
  background: var(--color-bg-primary);
}

.hero-section-nederlandse-grammatica {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-header-nederlandse-grammatica {
  flex: 1 1 45%;
  min-width: 300px;
}

.hero-title-nederlandse-grammatica {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.hero-subtitle-nederlandse-grammatica {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
}

.hero-image-wrapper-nederlandse-grammatica {
  flex: 1 1 45%;
  min-width: 300px;
  min-height: 350px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-image-nederlandse-grammatica {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

  .hero-header-nederlandse-grammatica {
    flex: 1 1 100%;
  }

  .hero-image-wrapper-nederlandse-grammatica {
    flex: 1 1 100%;
    min-height: 250px;
  }
}

.posts-section-nederlandse-grammatica {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.posts-content-nederlandse-grammatica {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

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

.posts-title-nederlandse-grammatica {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--space-md);
}

.posts-description-nederlandse-grammatica {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  margin-bottom: 0;
}

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

.card-nederlandse-grammatica {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.card-image-nederlandse-grammatica {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.card-body-nederlandse-grammatica {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-lg);
  flex: 1;
}

.card-title-nederlandse-grammatica {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin-bottom: var(--space-xs);
  line-height: var(--line-height-tight);
}

.card-description-nederlandse-grammatica {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: var(--line-height-relaxed);
  flex: 1;
}

.card-meta-nederlandse-grammatica {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  padding-top: var(--space-sm);
  border-top: 1px solid #e5e7eb;
  margin-top: auto;
}

.card-reading-time-nederlandse-grammatica,
.card-level-nederlandse-grammatica,
.card-date-nederlandse-grammatica {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.card-reading-time-nederlandse-grammatica i,
.card-level-nederlandse-grammatica i,
.card-date-nederlandse-grammatica i {
  color: var(--color-primary);
  font-size: 0.875rem;
}

.card-link-nederlandse-grammatica {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all var(--transition-fast);
  align-self: flex-start;
  margin-top: var(--space-sm);
}

.card-link-nederlandse-grammatica:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

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

.tips-section-nederlandse-grammatica {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-content-nederlandse-grammatica {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.tips-header-nederlandse-grammatica {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.tips-title-nederlandse-grammatica {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--space-md);
}

.tips-intro-nederlandse-grammatica {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  margin-bottom: 0;
}

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

.tip-card-nederlandse-grammatica {
  flex: 1 1 220px;
  max-width: 280px;
  background: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.tip-card-nederlandse-grammatica:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.tip-icon-nederlandse-grammatica {
  font-size: clamp(2.5rem, 4vw, 3rem);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  display: flex;
  justify-content: center;
}

.tip-card-title-nederlandse-grammatica {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-tight);
}

.tip-card-text-nederlandse-grammatica {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
}

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

.insights-section-nederlandse-grammatica {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.insights-content-nederlandse-grammatica {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
  max-width: 800px;
  margin: 0 auto;
}

.insights-header-nederlandse-grammatica {
  text-align: center;
}

.insights-title-nederlandse-grammatica {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 0;
}

.insights-body-nederlandse-grammatica {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.insights-text-nederlandse-grammatica {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .insights-content-nederlandse-grammatica {
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .hero-section-nederlandse-grammatica {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .posts-section-nederlandse-grammatica {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .tips-section-nederlandse-grammatica {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .insights-section-nederlandse-grammatica {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

.main-voornaamwoorden-nederlands {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-voornaamwoorden-nederlands {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-voornaamwoorden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-voornaamwoorden-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

.meta-item-voornaamwoorden-nederlands {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.meta-item-voornaamwoorden-nederlands i {
  color: #f59e0b;
}

.hero-image-voornaamwoorden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-voornaamwoorden-nederlands {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.breadcrumbs-voornaamwoorden-nederlands {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.breadcrumbs-voornaamwoorden-nederlands a {
  color: #f59e0b;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: color 0.3s ease;
}

.breadcrumbs-voornaamwoorden-nederlands a:hover {
  color: #fbbf24;
  text-decoration: underline;
}

.breadcrumbs-voornaamwoorden-nederlands span {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.breadcrumbs-voornaamwoorden-nederlands span:last-child {
  color: #cbd5e1;
}

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

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

.intro-text-voornaamwoorden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-voornaamwoorden-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.intro-paragraph-voornaamwoorden-nederlands {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.intro-image-voornaamwoorden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-voornaamwoorden-nederlands {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.types-content-voornaamwoorden-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.types-header-voornaamwoorden-nederlands {
  text-align: center;
}

.types-title-voornaamwoorden-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.types-subtitle-voornaamwoorden-nederlands {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
}

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

.type-card-voornaamwoorden-nederlands {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #1e293b;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
  transition: all 0.3s ease;
}

.type-card-voornaamwoorden-nederlands:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.2);
}

.card-number-voornaamwoorden-nederlands {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #f59e0b;
  margin-bottom: 1rem;
  opacity: 0.3;
  line-height: 1;
}

.card-title-voornaamwoorden-nederlands {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.card-text-voornaamwoorden-nederlands {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

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

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

.practice-text-voornaamwoorden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-voornaamwoorden-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.practice-paragraph-voornaamwoorden-nederlands {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.practice-highlight-voornaamwoorden-nederlands {
  background: #f1f5f9;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #0d9488;
  border-radius: 8px;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.highlight-label-voornaamwoorden-nederlands {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #0f172a;
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
}

.highlight-text-voornaamwoorden-nederlands {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #334155;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.highlight-note-voornaamwoorden-nederlands {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  font-style: italic;
}

.practice-image-voornaamwoorden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-img-voornaamwoorden-nederlands {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

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

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

.common-img-voornaamwoorden-nederlands {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.common-text-voornaamwoorden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.common-title-voornaamwoorden-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.common-paragraph-voornaamwoorden-nederlands {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.common-list-voornaamwoorden-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.list-item-voornaamwoorden-nederlands {
  background: #0f172a;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  border-left: 3px solid #f59e0b;
}

.list-title-voornaamwoorden-nederlands {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #f59e0b;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.list-text-voornaamwoorden-nederlands {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: #cbd5e1;
  line-height: 1.6;
}

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

.tips-content-voornaamwoorden-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.tips-header-voornaamwoorden-nederlands {
  text-align: center;
}

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

.tips-subtitle-voornaamwoorden-nederlands {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #64748b;
  line-height: 1.6;
}

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

.tip-card-voornaamwoorden-nederlands {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #f8f9fa;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.tip-card-voornaamwoorden-nederlands:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.tip-icon-voornaamwoorden-nederlands {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #0d9488;
  margin-bottom: 1rem;
}

.tip-card-title-voornaamwoorden-nederlands {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.tip-card-text-voornaamwoorden-nederlands {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
}

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

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

.conclusion-text-voornaamwoorden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-voornaamwoorden-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.conclusion-paragraph-voornaamwoorden-nederlands {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #cbd5e1;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.conclusion-highlight-voornaamwoorden-nederlands {
  background: #1e293b;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.conclusion-highlight-text-voornaamwoorden-nederlands {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #fef3c7;
  line-height: 1.7;
}

.conclusion-image-voornaamwoorden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-img-voornaamwoorden-nederlands {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.related-section-voornaamwoorden-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-header-voornaamwoorden-nederlands {
  text-align: center;
}

.related-title-voornaamwoorden-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.related-subtitle-voornaamwoorden-nederlands {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #64748b;
  line-height: 1.6;
}

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

.related-card-voornaamwoorden-nederlands {
  flex: 1 1 calc(33.333% - 1.3rem);
  min-width: 300px;
  max-width: 420px;
  background: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.related-card-voornaamwoorden-nederlands:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.related-img-voornaamwoorden-nederlands {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-voornaamwoorden-nederlands:hover .related-img-voornaamwoorden-nederlands {
  transform: scale(1.05);
}

.related-card-text-voornaamwoorden-nederlands {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.related-card-title-voornaamwoorden-nederlands {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.related-card-desc-voornaamwoorden-nederlands {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.related-card-link-voornaamwoorden-nederlands {
  display: inline-block;
  color: #0d9488;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
}

.related-card-link-voornaamwoorden-nederlands:hover {
  color: #0f766e;
  text-decoration: underline;
}

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

.disclaimer-content-voornaamwoorden-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #0d9488;
}

.disclaimer-icon-voornaamwoorden-nederlands {
  flex-shrink: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: #0d9488;
  margin-top: 0.25rem;
}

.disclaimer-text-voornaamwoorden-nederlands {
  flex: 1;
}

.disclaimer-title-voornaamwoorden-nederlands {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.disclaimer-paragraph-voornaamwoorden-nederlands {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
}

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

@media (max-width: 768px) {
  .hero-content-voornaamwoorden-nederlands,
  .intro-content-voornaamwoorden-nederlands,
  .practice-content-voornaamwoorden-nederlands,
  .common-content-voornaamwoorden-nederlands,
  .conclusion-content-voornaamwoorden-nederlands {
    flex-direction: column;
  }

  .hero-text-voornaamwoorden-nederlands,
  .hero-image-voornaamwoorden-nederlands,
  .intro-text-voornaamwoorden-nederlands,
  .intro-image-voornaamwoorden-nederlands,
  .practice-text-voornaamwoorden-nederlands,
  .practice-image-voornaamwoorden-nederlands,
  .common-image-voornaamwoorden-nederlands,
  .common-text-voornaamwoorden-nederlands,
  .conclusion-text-voornaamwoorden-nederlands,
  .conclusion-image-voornaamwoorden-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .type-card-voornaamwoorden-nederlands {
    flex: 1 1 100%;
  }

  .tip-card-voornaamwoorden-nederlands {
    flex: 1 1 100%;
  }

  .related-card-voornaamwoorden-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .breadcrumbs-voornaamwoorden-nederlands {
    font-size: 0.875rem;
  }

  .disclaimer-content-voornaamwoorden-nederlands {
    flex-direction: column;
  }
}

@media (max-width: 1024px) {
  .type-card-voornaamwoorden-nederlands {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .tip-card-voornaamwoorden-nederlands {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .related-card-voornaamwoorden-nederlands {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

.main-werkwoorden-vervoeging {
  width: 100%;
  overflow: hidden;
}

.hero-section-werkwoorden-vervoeging {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-werkwoorden-vervoeging {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.breadcrumbs-werkwoorden-vervoeging a {
  color: #94a3b8;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  transition: color 0.3s ease;
  text-decoration: none;
}

.breadcrumbs-werkwoorden-vervoeging a:hover {
  color: #0d9488;
}

.breadcrumbs-werkwoorden-vervoeging span {
  color: #64748b;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-werkwoorden-vervoeging > span:last-child {
  color: #e2e8f0;
  font-weight: 500;
}

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

.hero-text-wrapper-werkwoorden-vervoeging {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-werkwoorden-vervoeging {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-family: 'Lora', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

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

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

.meta-item-werkwoorden-vervoeging {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.meta-item-werkwoorden-vervoeging i {
  color: #0d9488;
  font-size: 1.1em;
}

.hero-image-wrapper-werkwoorden-vervoeging {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 350px;
}

.hero-image-werkwoorden-vervoeging {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

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

  .hero-text-wrapper-werkwoorden-vervoeging,
  .hero-image-wrapper-werkwoorden-vervoeging {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-wrapper-werkwoorden-vervoeging {
    min-height: 280px;
  }

  .hero-meta-werkwoorden-vervoeging {
    gap: 1rem;
  }
}

.intro-section-werkwoorden-vervoeging {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-wrapper-werkwoorden-vervoeging {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-werkwoorden-vervoeging {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: 'Lora', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-text-werkwoorden-vervoeging {
  color: #374151;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-wrapper-werkwoorden-vervoeging {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 320px;
}

.intro-image-werkwoorden-vervoeging {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

  .intro-text-wrapper-werkwoorden-vervoeging,
  .intro-image-wrapper-werkwoorden-vervoeging {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-wrapper-werkwoorden-vervoeging {
    min-height: 280px;
  }
}

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

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

.content-title-werkwoorden-vervoeging {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: 'Lora', serif;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.content-subtitle-werkwoorden-vervoeging {
  color: #57534e;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
}

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

.content-text-block-werkwoorden-vervoeging {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-subheading-werkwoorden-vervoeging {
  color: #0f172a;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-family: 'Lora', serif;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.content-paragraph-werkwoorden-vervoeging {
  color: #374151;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.verb-table-werkwoorden-vervoeging {
  background: #f8fafc;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #0d9488;
}

.verb-row-werkwoorden-vervoeging {
  display: flex;
  justify-content: space-between;
  padding: clamp(0.75rem, 1vw, 1rem) 0;
  border-bottom: 1px solid #e5e7eb;
}

.verb-row-werkwoorden-vervoeging:last-child {
  border-bottom: none;
}

.verb-person-werkwoorden-vervoeging {
  color: #0f172a;
  font-weight: 600;
  flex: 1;
}

.verb-form-werkwoorden-vervoeging {
  color: #0d9488;
  font-weight: 700;
  font-size: 1.1em;
  text-align: right;
}

.content-image-block-werkwoorden-vervoeging {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 350px;
}

.content-image-werkwoorden-vervoeging {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

  .content-text-block-werkwoorden-vervoeging,
  .content-image-block-werkwoorden-vervoeging {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-image-block-werkwoorden-vervoeging {
    min-height: 280px;
  }
}

.practical-section-werkwoorden-vervoeging {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.practical-title-werkwoorden-vervoeging {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: 'Lora', serif;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.practical-subtitle-werkwoorden-vervoeging {
  color: #57534e;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
}

.examples-grid-werkwoorden-vervoeging {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.example-card-werkwoorden-vervoeging {
  flex: 1 1 280px;
  max-width: 340px;
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(1.5rem, 2vw, 2rem);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #0d9488;
  transition: all 0.3s ease;
}

.example-card-werkwoorden-vervoeging:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.example-verb-werkwoorden-vervoeging {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-family: 'Lora', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
}

.example-forms-werkwoorden-vervoeging {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1vw, 1rem);
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
  padding-bottom: clamp(1rem, 1.5vw, 1.25rem);
  border-bottom: 1px solid #e5e7eb;
}

.example-form-werkwoorden-vervoeging {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.example-person-werkwoorden-vervoeging {
  color: #57534e;
  font-weight: 600;
  font-size: 0.95rem;
}

.example-verb-form-werkwoorden-vervoeging {
  color: #0d9488;
  font-weight: 700;
  font-size: 1.1em;
}

.example-note-werkwoorden-vervoeging {
  color: #64748b;
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.5;
}

.practical-image-section-werkwoorden-vervoeging {
  width: 100%;
  min-height: 350px;
  margin-top: clamp(1rem, 2vw, 2rem);
}

.practical-image-werkwoorden-vervoeging {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .practical-image-section-werkwoorden-vervoeging {
    min-height: 280px;
  }

  .example-card-werkwoorden-vervoeging {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.past-section-werkwoorden-vervoeging {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.past-content-werkwoorden-vervoeging {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.past-text-wrapper-werkwoorden-vervoeging {
  flex: 1 1 50%;
  max-width: 50%;
}

.past-title-werkwoorden-vervoeging {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: 'Lora', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.past-paragraph-werkwoorden-vervoeging {
  color: #374151;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.past-subheading-werkwoorden-vervoeging {
  color: #0f172a;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-family: 'Lora', serif;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.past-list-werkwoorden-vervoeging {
  list-style: none;
  padding: 0;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.past-list-item-werkwoorden-vervoeging {
  color: #374151;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  padding: clamp(0.5rem, 1vw, 0.75rem) 0 clamp(0.5rem, 1vw, 0.75rem) clamp(1.5rem, 2vw, 2rem);
  position: relative;
  line-height: 1.6;
}

.past-list-item-werkwoorden-vervoeging::before {
  content: "";
  position: absolute;
  left: 0;
  color: #0d9488;
  font-weight: 700;
}

.past-image-wrapper-werkwoorden-vervoeging {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 350px;
}

.past-image-werkwoorden-vervoeging {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

  .past-text-wrapper-werkwoorden-vervoeging,
  .past-image-wrapper-werkwoorden-vervoeging {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .past-image-wrapper-werkwoorden-vervoeging {
    min-height: 280px;
  }
}

.tips-section-werkwoorden-vervoeging {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.tips-title-werkwoorden-vervoeging {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: 'Lora', serif;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.tips-subtitle-werkwoorden-vervoeging {
  color: #cbd5e1;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
}

.tips-cards-wrapper-werkwoorden-vervoeging {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tip-card-werkwoorden-vervoeging {
  flex: 1 1 300px;
  max-width: 360px;
  background: #1e293b;
  border-radius: 12px;
  padding: clamp(1.5rem, 2vw, 2rem);
  transition: all 0.3s ease;
  border: 1px solid #334155;
}

.tip-card-werkwoorden-vervoeging:hover {
  transform: translateY(-4px);
  background: #334155;
  border-color: #0d9488;
}

.tip-icon-werkwoorden-vervoeging {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #0d9488;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  display: inline-block;
}

.tip-card-title-werkwoorden-vervoeging {
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.tip-card-text-werkwoorden-vervoeging {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.6;
}

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

.key-takeaways-section-werkwoorden-vervoeging {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.takeaways-text-wrapper-werkwoorden-vervoeging {
  flex: 1 1 50%;
  max-width: 50%;
}

.takeaways-title-werkwoorden-vervoeging {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: 'Lora', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.takeaway-box-werkwoorden-vervoeging {
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-left: 4px solid #0d9488;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.takeaway-subtitle-werkwoorden-vervoeging {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.takeaway-list-werkwoorden-vervoeging {
  list-style: none;
  padding: 0;
}

.takeaway-item-werkwoorden-vervoeging {
  color: #374151;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  padding: clamp(0.5rem, 1vw, 0.75rem) 0 clamp(0.5rem, 1vw, 0.75rem) clamp(1.5rem, 2vw, 2rem);
  position: relative;
  line-height: 1.6;
}

.takeaway-item-werkwoorden-vervoeging::before {
  content: "";
  position: absolute;
  left: 0;
  color: #0d9488;
  font-weight: 700;
  font-size: 1.1em;
}

.takeaway-closing-werkwoorden-vervoeging {
  color: #374151;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.75;
}

.takeaways-image-wrapper-werkwoorden-vervoeging {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 350px;
}

.takeaways-image-werkwoorden-vervoeging {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

  .takeaways-text-wrapper-werkwoorden-vervoeging,
  .takeaways-image-wrapper-werkwoorden-vervoeging {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .takeaways-image-wrapper-werkwoorden-vervoeging {
    min-height: 280px;
  }
}

.cta-section-werkwoorden-vervoeging {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.cta-title-werkwoorden-vervoeging {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: 'Lora', serif;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.cta-text-werkwoorden-vervoeging {
  color: #d1fae5;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.cta-button-werkwoorden-vervoeging {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #0d9488;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.cta-button-werkwoorden-vervoeging:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.related-section-werkwoorden-vervoeging {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-werkwoorden-vervoeging {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: 'Lora', serif;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.related-subtitle-werkwoorden-vervoeging {
  color: #57534e;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
}

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

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

.related-card-werkwoorden-vervoeging:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.related-image-wrapper-werkwoorden-vervoeging {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-image-werkwoorden-vervoeging {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-werkwoorden-vervoeging {
  padding: clamp(1.25rem, 2vw, 1.75rem);
}

.related-card-title-werkwoorden-vervoeging {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-family: 'Lora', serif;
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  line-height: 1.4;
}

.related-card-text-werkwoorden-vervoeging {
  color: #374151;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.6;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.related-card-link-werkwoorden-vervoeging {
  color: #0d9488;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.related-card-link-werkwoorden-vervoeging:hover {
  color: #0f766e;
}

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

.disclaimer-section-werkwoorden-vervoeging {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-box-werkwoorden-vervoeging {
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #f59e0b;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.disclaimer-title-werkwoorden-vervoeging {
  color: #0f172a;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.disclaimer-text-werkwoorden-vervoeging {
  color: #374151;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.75;
}

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

  .container {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }
}

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.main-zinsopbouw-nederlands {
  background: #fffbeb;
  color: #1c1917;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.breadcrumbs-zinsopbouw-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #57534e;
}

.breadcrumbs-zinsopbouw-nederlands a {
  color: #0d9488;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-zinsopbouw-nederlands a:hover {
  color: #0f766e;
  text-decoration: underline;
}

.breadcrumbs-zinsopbouw-nederlands span {
  color: #9ca3af;
}

.hero-section-zinsopbouw-nederlands {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  padding: 4rem 0;
  overflow: hidden;
}

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

.hero-text-zinsopbouw-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-zinsopbouw-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-zinsopbouw-nederlands {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: 'Lora', serif;
}

.hero-subtitle-zinsopbouw-nederlands {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #f0fdfa;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-meta-zinsopbouw-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.meta-item-zinsopbouw-nederlands {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #f0fdfa;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-item-zinsopbouw-nederlands i {
  font-size: 1rem;
}

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

@media (max-width: 768px) {
  .hero-section-zinsopbouw-nederlands {
    padding: 2.5rem 0;
  }

  .hero-content-zinsopbouw-nederlands {
    flex-direction: column;
  }

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

  .hero-meta-zinsopbouw-nederlands {
    gap: 1rem;
  }
}

.intro-section-zinsopbouw-nederlands {
  background: #ffffff;
  padding: 4rem 0;
  overflow: hidden;
}

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

.intro-text-zinsopbouw-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-zinsopbouw-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-zinsopbouw-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Lora', serif;
}

.intro-paragraph-zinsopbouw-nederlands {
  color: #57534e;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.intro-paragraph-zinsopbouw-nederlands:last-child {
  margin-bottom: 0;
}

.intro-img-zinsopbouw-nederlands {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .intro-section-zinsopbouw-nederlands {
    padding: 2.5rem 0;
  }

  .intro-content-zinsopbouw-nederlands {
    flex-direction: column;
  }

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

.structure-section-zinsopbouw-nederlands {
  background: #fef3c7;
  padding: 4rem 0;
  overflow: hidden;
}

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

.structure-text-zinsopbouw-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.structure-title-zinsopbouw-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Lora', serif;
}

.structure-paragraph-zinsopbouw-nederlands {
  color: #57534e;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.structure-highlight-zinsopbouw-nederlands {
  background: rgba(13, 148, 136, 0.15);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  color: #0d9488;
  font-weight: 600;
}

.structure-list-zinsopbouw-nederlands {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.list-item-zinsopbouw-nederlands {
  color: #57534e;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.75;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.list-item-zinsopbouw-nederlands:before {
  content: "";
  position: absolute;
  left: 0;
  color: #0d9488;
  font-weight: bold;
}

.structure-img-zinsopbouw-nederlands {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .structure-section-zinsopbouw-nederlands {
    padding: 2.5rem 0;
  }

  .structure-content-zinsopbouw-nederlands {
    flex-direction: column;
  }

  .structure-text-zinsopbouw-nederlands,
  .structure-image-zinsopbouw-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.variations-section-zinsopbouw-nederlands {
  background: #ffffff;
  padding: 4rem 0;
  overflow: hidden;
}

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

.variations-image-zinsopbouw-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.variations-text-zinsopbouw-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.variations-title-zinsopbouw-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Lora', serif;
}

.variations-paragraph-zinsopbouw-nederlands {
  color: #57534e;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.variations-list-zinsopbouw-nederlands {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.variations-img-zinsopbouw-nederlands {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .variations-section-zinsopbouw-nederlands {
    padding: 2.5rem 0;
  }

  .variations-content-zinsopbouw-nederlands {
    flex-direction: column-reverse;
  }

  .variations-image-zinsopbouw-nederlands,
  .variations-text-zinsopbouw-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practice-section-zinsopbouw-nederlands {
  background: #fef3c7;
  padding: 4rem 0;
  overflow: hidden;
}

.practice-content-zinsopbouw-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.practice-text-zinsopbouw-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-image-zinsopbouw-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-zinsopbouw-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Lora', serif;
}

.practice-paragraph-zinsopbouw-nederlands {
  color: #57534e;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.practice-steps-zinsopbouw-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.step-card-zinsopbouw-nederlands {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #0d9488;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-number-zinsopbouw-nederlands {
  font-size: 2rem;
  font-weight: 800;
  color: #0d9488;
  font-family: 'Lora', serif;
  line-height: 1;
}

.step-title-zinsopbouw-nederlands {
  color: #1c1917;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.step-text-zinsopbouw-nederlands {
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.practice-img-zinsopbouw-nederlands {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .practice-section-zinsopbouw-nederlands {
    padding: 2.5rem 0;
  }

  .practice-content-zinsopbouw-nederlands {
    flex-direction: column;
  }

  .practice-text-zinsopbouw-nederlands,
  .practice-image-zinsopbouw-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-zinsopbouw-nederlands {
  background: #ffffff;
  padding: 4rem 0;
  overflow: hidden;
}

.conclusion-content-zinsopbouw-nederlands {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-zinsopbouw-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 2rem;
  font-family: 'Lora', serif;
}

.conclusion-highlight-zinsopbouw-nederlands {
  background: rgba(13, 148, 136, 0.1);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #0d9488;
  margin-bottom: 2rem;
  text-align: left;
}

.conclusion-highlight-text-zinsopbouw-nederlands {
  color: #1c1917;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.75;
  margin: 0;
}

.conclusion-paragraph-zinsopbouw-nederlands {
  color: #57534e;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  text-align: left;
}

.conclusion-cta-zinsopbouw-nederlands {
  background: #fef3c7;
  padding: 2.5rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.cta-title-zinsopbouw-nederlands {
  color: #1c1917;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Lora', serif;
}

.cta-text-zinsopbouw-nederlands {
  color: #57534e;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cta-btn-zinsopbouw-nederlands {
  display: inline-flex;
  padding: 0.75rem 2rem;
  background: #0d9488;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-btn-zinsopbouw-nederlands:hover {
  background: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.disclaimer-section-zinsopbouw-nederlands {
  background: #f3f4f6;
  padding: 3rem 0;
  overflow: hidden;
}

.disclaimer-content-zinsopbouw-nederlands {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-zinsopbouw-nederlands {
  color: #1c1917;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Lora', serif;
}

.disclaimer-text-zinsopbouw-nederlands {
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.related-section-zinsopbouw-nederlands {
  background: #fffbeb;
  padding: 4rem 0;
  overflow: hidden;
}

.related-content-zinsopbouw-nederlands {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.related-header-zinsopbouw-nederlands {
  text-align: center;
}

.related-title-zinsopbouw-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Lora', serif;
}

.related-subtitle-zinsopbouw-nederlands {
  color: #57534e;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.6;
  margin: 0;
}

.related-cards-zinsopbouw-nederlands {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

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

.related-card-zinsopbouw-nederlands:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.12);
}

.card-image-zinsopbouw-nederlands {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-zinsopbouw-nederlands {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-body-zinsopbouw-nederlands {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.card-title-zinsopbouw-nederlands {
  color: #1c1917;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  font-family: 'Lora', serif;
}

.card-description-zinsopbouw-nederlands {
  color: #57534e;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.card-link-zinsopbouw-nederlands {
  color: #0d9488;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: auto;
}

.card-link-zinsopbouw-nederlands:hover {
  color: #0f766e;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-section-zinsopbouw-nederlands {
    padding: 2.5rem 0;
  }

  .related-cards-zinsopbouw-nederlands {
    flex-direction: column;
    gap: 1.5rem;
  }

  .related-card-zinsopbouw-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-zinsopbouw-nederlands {
    font-size: 0.75rem;
  }

  .hero-meta-zinsopbouw-nederlands {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.main-lidwoorden-nederlands {
  width: 100%;
}

.hero-section-lidwoorden-nederlands {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.breadcrumbs-lidwoorden-nederlands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
}

.breadcrumbs-lidwoorden-nederlands a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.breadcrumbs-lidwoorden-nederlands a:hover {
  color: #cbd5e1;
}

.breadcrumbs-lidwoorden-nederlands span {
  color: #475569;
}

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

.hero-text-wrapper-lidwoorden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-lidwoorden-nederlands {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'Lora', serif;
}

.hero-subtitle-lidwoorden-nederlands {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-meta-lidwoorden-nederlands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
}

.meta-item-lidwoorden-nederlands {
  color: #94a3b8;
  font-weight: 500;
}

.meta-separator-lidwoorden-nederlands {
  color: #475569;
}

.hero-image-wrapper-lidwoorden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-lidwoorden-nederlands {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: block;
}

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

  .hero-text-wrapper-lidwoorden-nederlands,
  .hero-image-wrapper-lidwoorden-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-lidwoorden-nederlands {
    gap: 0.5rem;
  }
}

.intro-section-lidwoorden-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-wrapper-lidwoorden-nederlands {
  flex: 1 1 60%;
  max-width: 60%;
}

.intro-title-lidwoorden-nederlands {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Lora', serif;
}

.intro-text-lidwoorden-nederlands,
.intro-text-secondary-lidwoorden-nederlands {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.intro-text-secondary-lidwoorden-nederlands {
  color: #64748b;
}

.intro-highlight-lidwoorden-nederlands {
  flex: 1 1 40%;
  max-width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-box-lidwoorden-nederlands {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  text-align: center;
  border-left: 4px solid #10b981;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.highlight-number-lidwoorden-nederlands {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #10b981;
  font-family: 'Lora', serif;
  margin-bottom: 0.5rem;
}

.highlight-label-lidwoorden-nederlands {
  display: block;
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #059669;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

  .intro-text-wrapper-lidwoorden-nederlands,
  .intro-highlight-lidwoorden-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-highlight-lidwoorden-nederlands {
    flex-direction: row;
    justify-content: space-around;
  }

  .highlight-box-lidwoorden-nederlands {
    flex: 1 1 30%;
  }
}

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

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

.content-one-text-lidwoorden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-title-lidwoorden-nederlands {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Lora', serif;
}

.content-one-text-body-lidwoorden-nederlands {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.content-one-text-body-lidwoorden-nederlands strong {
  color: #0f766e;
  font-weight: 600;
}

.rules-list-lidwoorden-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rule-item-lidwoorden-nederlands {
  background: #ffffff;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 8px;
  border-left: 4px solid #14b8a6;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.rule-title-lidwoorden-nederlands {
  color: #0d9488;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.rule-text-lidwoorden-nederlands {
  color: #64748b;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
}

.content-one-image-lidwoorden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-lidwoorden-nederlands {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: block;
}

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

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

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

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

.content-two-image-lidwoorden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-text-lidwoorden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-title-lidwoorden-nederlands {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Lora', serif;
}

.content-two-text-body-lidwoorden-nederlands {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.tips-box-lidwoorden-nederlands {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
}

.tips-title-lidwoorden-nederlands {
  color: #b45309;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tips-list-lidwoorden-nederlands {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tips-item-lidwoorden-nederlands {
  color: #92400e;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.tips-item-lidwoorden-nederlands:before {
  content: "";
  position: absolute;
  left: 0;
  color: #d97706;
  font-weight: bold;
}

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

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

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

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

.content-three-text-lidwoorden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-title-lidwoorden-nederlands {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Lora', serif;
}

.content-three-text-body-lidwoorden-nederlands {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.exception-card-lidwoorden-nederlands {
  background: #ffffff;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 8px;
  border-left: 4px solid #ef4444;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.exception-title-lidwoorden-nederlands {
  color: #dc2626;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.exception-text-lidwoorden-nederlands {
  color: #64748b;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
}

.content-three-image-lidwoorden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.practice-section-lidwoorden-nederlands {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.practice-content-lidwoorden-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.practice-title-lidwoorden-nederlands {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  text-align: center;
  font-family: 'Lora', serif;
}

.practice-intro-lidwoorden-nederlands {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.practice-steps-lidwoorden-nederlands {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.step-card-lidwoorden-nederlands {
  flex: 1 1 calc(50% - 1rem);
  max-width: 280px;
  background: rgba(30, 41, 59, 0.5);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #334155;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.step-card-lidwoorden-nederlands:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: #14b8a6;
  transform: translateY(-4px);
}

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

.step-title-lidwoorden-nederlands {
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700;
  margin: 0;
}

.step-text-lidwoorden-nederlands {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

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

.conclusion-section-lidwoorden-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.conclusion-title-lidwoorden-nederlands {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  text-align: center;
  font-family: 'Lora', serif;
}

.conclusion-text-lidwoorden-nederlands,
.conclusion-text-secondary-lidwoorden-nederlands {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  text-align: center;
}

.conclusion-text-secondary-lidwoorden-nederlands {
  color: #64748b;
}

.conclusion-cta-lidwoorden-nederlands {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.conclusion-cta-lidwoorden-nederlands .btn {
  padding: 0.875rem 2rem;
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  border-radius: 8px;
  background: #0d9488;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(13, 148, 136, 0.2);
}

.conclusion-cta-lidwoorden-nederlands .btn:hover {
  background: #0f766e;
  box-shadow: 0 8px 12px rgba(13, 148, 136, 0.3);
  transform: translateY(-2px);
}

.related-section-lidwoorden-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.related-title-lidwoorden-nederlands {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  text-align: center;
  font-family: 'Lora', serif;
}

.related-subtitle-lidwoorden-nederlands {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-lidwoorden-nederlands {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 250px;
  max-width: 350px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.related-card-lidwoorden-nederlands:hover {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

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

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

.related-text-lidwoorden-nederlands {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-lidwoorden-nederlands {
  color: #1e293b;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

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

@media (max-width: 1024px) {
  .related-card-lidwoorden-nederlands {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: 100%;
  }
}

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

.disclaimer-section-lidwoorden-nederlands {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-lidwoorden-nederlands {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #0284c7;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-lidwoorden-nederlands {
  color: #0c4a6e;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-lidwoorden-nederlands {
  color: #475569;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .breadcrumbs-lidwoorden-nederlands {
    font-size: 0.8rem;
    gap: 0.5rem;
  }

  .hero-section-lidwoorden-nederlands {
    padding: 1.5rem 0 2rem 0;
  }

  .intro-section-lidwoorden-nederlands,
  .content-one-section-lidwoorden-nederlands,
  .content-two-section-lidwoorden-nederlands,
  .content-three-section-lidwoorden-nederlands,
  .practice-section-lidwoorden-nederlands,
  .conclusion-section-lidwoorden-nederlands,
  .related-section-lidwoorden-nederlands {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .disclaimer-section-lidwoorden-nederlands {
    padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  }
}

@media (max-width: 480px) {
  .hero-meta-lidwoorden-nederlands {
    flex-direction: column;
    gap: 0.25rem;
  }

  .meta-separator-lidwoorden-nederlands {
    display: none;
  }

  .intro-highlight-lidwoorden-nederlands {
    flex-direction: row;
    gap: 1rem;
  }

  .highlight-box-lidwoorden-nederlands {
    flex: 1;
  }
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

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

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

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

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

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

html {
  scroll-behavior: smooth;
}

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

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

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

.grammar-academy-about {
  width: 100%;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

.stat-label-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  font-weight: 600;
}

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

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

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

.section-tag-about {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(13, 148, 136, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.foundation-subtitle-about {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

.foundation-split-about {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  margin-top: clamp(2rem, 3vw, 3rem);
}

.foundation-text-about {
  flex: 1 1 45%;
  min-width: 280px;
}

.foundation-text-about p {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
}

.foundation-text-about p:last-child {
  margin-bottom: 0;
}

.foundation-image-about {
  flex: 1 1 45%;
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

.approach-description-about {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

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

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

.step-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  min-width: clamp(60px, 8vw, 100px);
  font-family: var(--font-heading);
}

.step-content-about {
  flex: 1;
  padding-top: 0.5rem;
}

.step-title-about {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.step-text-about {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

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

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

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

.methods-subtitle-about {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

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

.feature-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

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

.card-icon-about {
  font-size: 2.5rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.card-title-about {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
}

.card-text-about {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

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

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

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

.featured-quote-about {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  max-width: 800px;
  margin: clamp(2rem, 3vw, 3rem) auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote-text-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.35rem);
  color: var(--color-text-primary);
  font-style: italic;
  line-height: var(--line-height-relaxed);
  font-family: var(--font-heading);
}

.quote-author-about {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  font-style: normal;
  font-weight: 600;
}

.cta-box-about {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  margin-top: clamp(2rem, 3vw, 3rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-title-about {
  font-size: clamp(1.3rem, 3vw + 0.5rem, 2rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.cta-text-about {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  color: #ffffff;
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
}

.btn-about {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: #ffffff;
  color: var(--color-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  transition: all var(--transition-base);
  border: 2px solid #ffffff;
}

.btn-about:hover {
  background: transparent;
  color: #ffffff;
}

.disclaimer-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(13, 148, 136, 0.1);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.disclaimer-icon-about {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
}

.disclaimer-text-about {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 900px;
}

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

  .foundation-text-about,
  .foundation-image-about {
    flex: 1 1 100%;
  }

  .foundation-image-about {
    min-height: 250px;
  }

  .hero-stats-about {
    gap: 1rem;
  }

  .process-step-about {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-about {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
  }
}

@media (max-width: 480px) {
  .hero-stats-about {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item-about {
    width: 100%;
  }
}

.portfolio-page {
  background-color: var(--color-bg-primary);
}

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

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

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

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: var(--color-primary-light);
  margin: 0;
  line-height: var(--line-height-normal);
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-xl);
  }
}

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

.portfolio-projects-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.portfolio-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

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

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

.portfolio-card-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-card-tag {
  display: inline-block;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--line-height-tight);
}

.portfolio-card-description {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-relaxed);
  flex-grow: 1;
}

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

@media (min-width: 768px) {
  .portfolio-projects {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .portfolio-projects {
    padding: var(--space-3xl) var(--space-xl);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-card-image {
    height: 320px;
  }
}

.portfolio-cta {
  background-color: var(--color-secondary);
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
  overflow: hidden;
}

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

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.portfolio-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--line-height-normal);
}

.portfolio-cta-button {
  display: inline-block;
  background-color: var(--color-bg-tertiary);
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background-color var(--transition-base), color var(--transition-base), transform var(--transition-base);
  border: 2px solid var(--color-bg-tertiary);
}

.portfolio-cta-button:hover {
  background-color: var(--color-secondary);
  color: var(--color-bg-tertiary);
  transform: scale(1.05);
}

.portfolio-cta-button:active {
  transform: scale(0.98);
}

@media (min-width: 768px) {
  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.services-page {
  background-color: var(--color-bg-primary);
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-sm);
  text-align: center;
  border-bottom: 2px solid var(--color-secondary);
  overflow: hidden;
}

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

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

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
  font-weight: 400;
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: 4rem var(--space-2xl);
  }
}

.services-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

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

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .services-content {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .services-content {
    padding: 4rem var(--space-2xl);
  }
}

.service-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
}

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

.service-card-icon {
  width: 56px;
  height: 56px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.75rem;
  color: var(--color-primary);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.service-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-relaxed);
  flex-grow: 1;
}

.service-card-topics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.service-card-topics li {
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  padding-left: var(--space-sm);
  position: relative;
  line-height: var(--line-height-normal);
}

.service-card-topics li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.services-cta {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl) var(--space-sm);
  border-top: 2px solid var(--color-secondary);
  overflow: hidden;
}

.services-cta-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.services-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--line-height-normal);
}

.services-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

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

.services-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: 4rem var(--space-2xl);
  }
}

@media (max-width: 480px) {
  .service-card {
    padding: var(--space-md);
  }

  .service-card-icon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}

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

.legal-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

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

.legal-docs-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.legal-docs .updated-date {
  color: var(--color-text-muted);
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 0.95rem);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.legal-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.legal-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
}

.legal-docs ul {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-relaxed);
}

.legal-docs strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.legal-docs em {
  color: var(--color-primary);
  font-style: italic;
}

.contact-section {
  background-color: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  margin-top: var(--space-2xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-section h2 {
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.contact-section p {
  margin-bottom: var(--space-sm);
}

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

@media (min-width: 768px) {
  .container {
    padding: var(--space-lg);
  }

  .legal-docs h1 {
    margin-bottom: var(--space-lg);
  }

  .legal-docs h2 {
    margin-top: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: var(--space-xl);
  }
}

:root {
  --color-bg-primary: #fffbeb;
  --color-bg-secondary: #fef3c7;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  --color-text-primary: #1c1917;
  --color-text-secondary: #57534e;
  --color-text-muted: #9ca3af;
  --color-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-primary-light: #ccfbf1;
  --color-secondary: #f59e0b;
  --color-secondary-hover: #d97706;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Lora', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
}

.thank-you-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.thank-section {
  width: 100%;
  padding: var(--space-2xl) 0;
}

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

.thank-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.thank-icon svg {
  width: clamp(80px, 15vw, 120px);
  height: clamp(80px, 15vw, 120px);
  filter: drop-shadow(var(--shadow-md));
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
  letter-spacing: -0.02em;
  animation: slideUp 0.6s ease-out 0.1s both;
}

.lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 500;
  animation: slideUp 0.6s ease-out 0.2s both;
}

.description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  animation: slideUp 0.6s ease-out 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  margin-top: var(--space-md);
  animation: slideUp 0.6s ease-out 0.4s both;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  box-shadow: var(--shadow-md);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@media (min-width: 640px) {
  .thank-section {
    padding: var(--space-3xl) 0;
  }

  .thank-content {
    padding: var(--space-3xl);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) 0;
  }

  .thank-content {
    padding: var(--space-3xl);
    gap: var(--space-xl);
  }

  .btn {
    padding: 0.75rem var(--space-xl);
  }
}

@media (max-width: 639px) {
  .thank-content {
    padding: var(--space-lg);
  }

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

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

html, body {
  width: 100%;
  height: 100%;
}

body {
  background-color: var(--color-bg-primary);
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
}

.error-section {
  width: 100%;
  padding: var(--space-lg);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

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

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  text-align: center;
}

.error-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-md);
}

.error-code-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: var(--line-height-tight);
  letter-spacing: -0.05em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.error-decoration {
  position: absolute;
  width: 120%;
  height: 60%;
  border: 3px dashed var(--color-primary-light);
  border-radius: var(--radius-lg);
  pointer-events: none;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

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

.error-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
}

.error-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  font-weight: 600;
  line-height: var(--line-height-normal);
}

.error-description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin: 0 auto;
}

.error-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-primary);
  min-width: 200px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  box-shadow: var(--shadow-md);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.error-suggestions {
  background-color: var(--color-primary-light);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
  width: 100%;
}

.suggestions-title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

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

.suggestions-list li {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-primary);
  padding-left: var(--space-lg);
  position: relative;
  line-height: var(--line-height-normal);
}

.suggestions-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.1em;
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }

  .error-wrapper {
    gap: var(--space-2xl);
    margin-bottom: var(--space-lg);
  }

  .error-code-container {
    margin-bottom: var(--space-lg);
  }

  .error-actions {
    margin-top: var(--space-2xl);
  }

  .btn {
    min-width: 240px;
    padding: var(--space-md) var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .error-wrapper {
    gap: var(--space-3xl);
  }

  .error-decoration {
    width: 130%;
    height: 70%;
  }

  .error-suggestions {
    padding: var(--space-2xl);
    margin-top: var(--space-2xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-decoration {
    animation: none;
  }

  .btn {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .error-code {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .btn {
    min-width: 100%;
    padding: var(--space-md) var(--space-lg);
  }

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

  .error-suggestions {
    padding: var(--space-md);
  }
}

.contact-feedback-page {
    background-color: var(--color-bg-primary);
    width: 100%;
  }

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

  .contact-feedback-hero {
    background-color: var(--color-primary);
    padding: var(--space-2xl) 0;
    overflow: hidden;
  }

  .contact-feedback-hero-content {
    text-align: center;
  }

  .contact-feedback-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 700;
    color: var(--color-bg-primary);
    margin: 0;
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-md);
  }

  .contact-feedback-hero-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: rgba(255, 251, 235, 0.95);
    margin: 0;
    line-height: var(--line-height-relaxed);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  @media (min-width: 768px) {
    .contact-feedback-hero {
      padding: var(--space-3xl) 0;
    }
  }

  @media (min-width: 1024px) {
    .contact-feedback-hero {
      padding: 4rem 0;
    }
  }

  .contact-feedback-main {
    background-color: var(--color-bg-primary);
    padding: var(--space-2xl) 0;
    overflow: hidden;
  }

  .contact-feedback-main-content {
    width: 100%;
  }

  .contact-feedback-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2xl);
  }

  .contact-feedback-form-wrapper {
    flex: 1 1 100%;
    min-width: 0;
  }

  .contact-feedback-info-wrapper {
    flex: 1 1 100%;
    min-width: 0;
  }

  @media (min-width: 1024px) {
    .contact-feedback-form-wrapper {
      flex: 1 1 45%;
    }

    .contact-feedback-info-wrapper {
      flex: 1 1 45%;
    }
  }

  .contact-feedback-form-header {
    margin-bottom: var(--space-lg);
  }

  .contact-feedback-form-title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
    margin-bottom: var(--space-sm);
    line-height: var(--line-height-tight);
  }

  .contact-feedback-form-description {
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: var(--color-text-secondary);
    margin: 0;
    line-height: var(--line-height-relaxed);
  }

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

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

  .contact-feedback-label {
    font-family: var(--font-primary);
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    font-weight: 600;
    color: var(--color-text-primary);
  }

  .contact-feedback-input,
  .contact-feedback-textarea {
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1vw, 1rem);
    padding: var(--space-sm) var(--space-md);
    background-color: var(--color-bg-card);
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-md);
    color: var(--color-text-primary);
    transition: all var(--transition-base);
    width: 100%;
    box-sizing: border-box;
  }

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

  .contact-feedback-input:focus,
  .contact-feedback-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: var(--color-bg-card);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
  }

  .contact-feedback-input:invalid:not(:placeholder-shown),
  .contact-feedback-textarea:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
  }

  .contact-feedback-textarea {
    resize: vertical;
    min-height: 150px;
    line-height: var(--line-height-relaxed);
  }

  .contact-feedback-error {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    color: #ef4444;
    display: none;
    margin-top: -var(--space-xs);
  }

  .contact-feedback-error.show {
    display: block;
  }

  .contact-feedback-submit {
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1vw, 1rem);
    font-weight: 700;
    padding: var(--space-md) var(--space-lg);
    background-color: var(--color-primary);
    color: var(--color-bg-primary);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
  }

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

  .contact-feedback-submit:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
  }

  .contact-feedback-submit:disabled {
    background-color: var(--color-text-muted);
    cursor: not-allowed;
    transform: none;
  }

  .contact-feedback-submit-text {
    display: inline-block;
  }

  .contact-feedback-privacy-note {
    font-family: var(--font-primary);
    font-size: clamp(0.8rem, 0.9vw, 0.9rem);
    color: var(--color-text-secondary);
    margin: 0;
    margin-top: var(--space-sm);
    line-height: var(--line-height-relaxed);
    text-align: center;
  }

  .contact-feedback-privacy-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
  }

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

  .contact-feedback-info-header {
    margin-bottom: var(--space-lg);
  }

  .contact-feedback-info-title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
    margin-bottom: var(--space-sm);
    line-height: var(--line-height-tight);
  }

  .contact-feedback-info-description {
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: var(--color-text-secondary);
    margin: 0;
    line-height: var(--line-height-relaxed);
  }

  .contact-feedback-info-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
  }

  .contact-feedback-info-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background-color: var(--color-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid #f3f4f6;
    transition: all var(--transition-base);
  }

  .contact-feedback-info-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
  }

  .contact-feedback-info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary-light);
    border-radius: var(--radius-lg);
    color: var(--color-primary);
    font-size: 1.5rem;
  }

  .contact-feedback-info-content {
    flex: 1;
    min-width: 0;
  }

  .contact-feedback-info-item-title {
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
    margin-bottom: var(--space-xs);
  }

  .contact-feedback-info-link {
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
    display: inline-block;
    margin-bottom: var(--space-xs);
  }

  .contact-feedback-info-link:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
  }

  .contact-feedback-info-item-description {
    font-family: var(--font-primary);
    font-size: clamp(0.85rem, 0.95vw, 0.95rem);
    color: var(--color-text-secondary);
    margin: 0;
    line-height: var(--line-height-relaxed);
  }

  .contact-feedback-address {
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: var(--color-text-primary);
    font-style: normal;
    line-height: var(--line-height-relaxed);
  }

  .contact-feedback-response-time {
    padding: var(--space-lg);
    background-color: var(--color-primary-light);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
  }

  .contact-feedback-response-title {
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
    margin-bottom: var(--space-sm);
  }

  .contact-feedback-response-text {
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: var(--color-text-primary);
    margin: 0;
    line-height: var(--line-height-relaxed);
  }

  @media (min-width: 768px) {
    .contact-feedback-main {
      padding: var(--space-3xl) 0;
    }
  }

  @media (min-width: 1024px) {
    .contact-feedback-main {
      padding: 4rem 0;
    }
  }

  .contact-feedback-faq {
    background-color: var(--color-bg-secondary);
    padding: var(--space-2xl) 0;
    overflow: hidden;
  }

  .contact-feedback-faq-content {
    width: 100%;
  }

  .contact-feedback-faq-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
    margin-bottom: var(--space-sm);
    text-align: center;
    line-height: var(--line-height-tight);
  }

  .contact-feedback-faq-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--color-text-secondary);
    margin: 0;
    margin-bottom: var(--space-2xl);
    text-align: center;
    line-height: var(--line-height-relaxed);
  }

  .contact-feedback-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  @media (min-width: 768px) {
    .contact-feedback-faq-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .contact-feedback-faq-item {
    background-color: var(--color-bg-card);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid #e5e7eb;
    transition: all var(--transition-base);
  }

  .contact-feedback-faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
  }

  .contact-feedback-faq-item-title {
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
    margin-bottom: var(--space-sm);
    line-height: var(--line-height-tight);
  }

  .contact-feedback-faq-item-text {
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: var(--color-text-secondary);
    margin: 0;
    line-height: var(--line-height-relaxed);
  }

  @media (min-width: 768px) {
    .contact-feedback-faq {
      padding: var(--space-3xl) 0;
    }
  }

  @media (min-width: 1024px) {
    .contact-feedback-faq {
      padding: 4rem 0;
    }
  }