
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Playfair+Display:wght@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: #a8a29e;
  --color-text-light: #d6d3d1;
  
  
  --color-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-primary-light: #ccfbf1;
  --color-secondary: #059669;
  --color-secondary-light: #d1fae5;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  
  
  --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;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

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

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.card-featured {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
  border: 1px solid rgba(13, 148, 136, 0.1);
}

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

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

.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(280px, 1fr));
}

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

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

@media (max-width: 480px) {
  .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);
}

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

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

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

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

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

.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-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-bold {
  font-weight: 700;
}

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

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

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: var(--space-lg) 0;
}

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

.list-checked li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.list-checked li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.25rem;
}

input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
  transition: all var(--transition-fast);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-text-muted);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
  background: var(--color-bg-tertiary);
}

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

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

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

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

@media (max-width: 480px) {
  section {
    padding: var(--space-xl) 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-fade-in {
  animation: fadeIn var(--transition-base);
}

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

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

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

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

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

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  body {
    font-size: 15px;
  }
}

@media print {
  body {
    background: #ffffff;
    color: #000000;
  }

  .no-print {
    display: none;
  }
}
.header-speak-portal {
  background: var(--color-bg-tertiary);
  border-bottom: 1px solid var(--color-text-light);
  position: static;
  width: 100%;
  z-index: 100;
}

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

.header-speak-portal-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
  flex-shrink: 0;
}

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

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

.header-speak-portal-brand:hover .header-speak-portal-logo-text {
  color: var(--color-primary-hover);
  transition: color var(--transition-fast);
}

.header-speak-portal-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex: 1;
  margin-left: 3rem;
}

.header-speak-portal-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  border-bottom: 2px solid transparent;
  padding-bottom: 0.25rem;
}

.header-speak-portal-nav-link:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.header-speak-portal-cta-button {
  display: none;
  padding: clamp(0.625rem, 1vw, 0.875rem) clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-primary);
  color: var(--color-bg-tertiary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

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

.header-speak-portal-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 0.35rem;
  padding: 0.5rem;
  flex-shrink: 0;
}

.header-speak-portal-toggle-line {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
  transition: all var(--transition-fast);
}

.header-speak-portal-mobile-toggle:hover .header-speak-portal-toggle-line {
  background: var(--color-primary-hover);
}

.header-speak-portal-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: 99;
  padding-top: clamp(4rem, 10vw, 5rem);
  overflow-y: auto;
}

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

.header-speak-portal-mobile-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid var(--color-text-light);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(4rem, 10vw, 5rem);
}

.header-speak-portal-mobile-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--color-primary);
  cursor: pointer;
  padding: 0.5rem;
  transition: color var(--transition-fast);
}

.header-speak-portal-mobile-close:hover {
  color: var(--color-primary-hover);
}

.header-speak-portal-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.header-speak-portal-mobile-link {
  padding: 1rem 0;
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--color-text-light);
  transition: color var(--transition-fast);
}

.header-speak-portal-mobile-link:hover {
  color: var(--color-primary);
}

.header-speak-portal-mobile-cta {
  margin-top: 1.5rem;
  padding: clamp(0.875rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  background: var(--color-primary);
  color: var(--color-bg-tertiary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  display: block;
  text-align: center;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}

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

@media (min-width: 768px) {
  .header-speak-portal-desktop-nav {
    display: flex;
  }

  .header-speak-portal-cta-button {
    display: block;
  }

  .header-speak-portal-mobile-toggle {
    display: none;
  }

  .header-speak-portal-mobile-menu {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .header-speak-portal-container {
    height: 5rem;
  }

  .header-speak-portal-desktop-nav {
    gap: 3rem;
  }

  .header-speak-portal-nav-link {
    font-size: 1rem;
  }

  .header-speak-portal-cta-button {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}

    .dutch-academy {
  width: 100%;
  background: #fffbeb;
}

.hero-section-index {
  background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(13, 148, 136, 0.1);
}

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

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

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

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

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

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

.stat-number-index {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #0d9488;
  font-family: 'Playfair Display', serif;
}

.stat-label-index {
  font-size: 0.875rem;
  color: #57534e;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.hero-buttons-index .btn {
  flex: 0 1 auto;
}

.hero-image-block-index {
  flex: 1 1 45%;
  min-width: 300px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

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

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

  .hero-image-block-index {
    max-width: 500px;
    margin: 0 auto;
  }
}

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

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

.about-text-block-index {
  flex: 1 1 50%;
  min-width: 300px;
}

.section-header-index {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.section-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

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

.about-description-index {
  color: #57534e;
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.about-text-index {
  color: #57534e;
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.about-list-index {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-list-item-index {
  color: #57534e;
  font-size: 1rem;
  padding-left: 1.75rem;
  position: relative;
}

.about-list-item-index::before {
  content: '';
  position: absolute;
  left: 0;
  color: #0d9488;
  font-weight: 700;
  font-size: 1.25rem;
}

.about-image-block-index {
  flex: 1 1 50%;
  min-width: 300px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-image-index {
  width: 100%;
  height: 100%;
  max-height: 450px;
  object-fit: cover;
  display: block;
}

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

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

  .about-image-block-index {
    max-width: 500px;
    margin: 0 auto;
  }
}

.howitworks-section-index {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.howitworks-title-index {
  color: #1c1917;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
}

.howitworks-subtitle-index {
  color: #57534e;
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
}

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

.step-card-index {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: row;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  align-items: flex-start;
}

.step-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0d9488;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
  line-height: 1;
}

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

.step-title-index {
  color: #1c1917;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.step-text-index {
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

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

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

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

.features-subtitle-index {
  color: #57534e;
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
}

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

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

.feature-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon-index {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #0d9488;
  margin-bottom: 1rem;
  display: block;
}

.feature-card-title-index {
  color: #1c1917;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.feature-card-text-index {
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

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

.featured-title-index {
  color: #1c1917;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
}

.featured-subtitle-index {
  color: #57534e;
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
}

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

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

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

.featured-card-image-index {
  width: 100%;
  height: auto;
  max-height: 200px;
  overflow: hidden;
}

.featured-image-index {
  width: 100%;
  height: 100%;
  max-height: 200px;
  object-fit: cover;
  display: block;
}

.featured-card-body-index {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.featured-card-title-index {
  color: #1c1917;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  margin: 0;
  font-weight: 700;
}

.featured-card-description-index {
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.featured-card-link-index {
  color: #0d9488;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
  align-self: flex-start;
  margin-top: 0.5rem;
}

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

.featured-footer-index {
  text-align: center;
  margin-top: clamp(1rem, 2vw, 2rem);
}

.testimonials-section-index {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(13, 148, 136, 0.1);
}

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

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

.testimonials-title-index {
  color: #1c1917;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: #fef3c7;
  border-left: 4px solid #0d9488;
  border-radius: 8px;
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-quote-index {
  color: #57534e;
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.05rem);
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

.testimonial-author-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-name-index {
  color: #1c1917;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

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

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

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

.benefits-title-index {
  color: #1c1917;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
}

.benefits-intro-index {
  color: #57534e;
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

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

.benefit-item-index {
  flex: 1 1 240px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(1.5rem, 2vw, 2rem);
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.benefit-item-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.benefit-item-title-index {
  color: #1c1917;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.benefit-item-text-index {
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.cta-section-index {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(13, 148, 136, 0.1);
}

.cta-content-index {
  display: flex;
  justify-content: center;
}

.cta-box-index {
  background: linear-gradient(135deg, #0d9488 0%, #059669 100%);
  border-radius: 16px;
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(13, 148, 136, 0.15);
}

.cta-title-index {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.cta-text-index {
  color: #f0fdf4;
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.7;
}

.btn-large-index {
  padding: clamp(1rem, 1.5vw, 1.25rem) clamp(2rem, 3vw, 2.5rem);
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.125rem);
}

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

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

.cookie-banner-text-index {
  color: #f1f5f9;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  margin: 0;
  flex: 1 1 auto;
  min-width: 200px;
  line-height: 1.5;
}

.cookie-banner-buttons-index {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-btn-accept-index {
  padding: 0.625rem 1.25rem;
  background: #0d9488;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.cookie-btn-accept-index:hover {
  background: #0f766e;
  transform: translateY(-2px);
}

.cookie-btn-decline-index {
  padding: 0.625rem 1.25rem;
  background: transparent;
  color: #f1f5f9;
  border: 1px solid rgba(241, 245, 249, 0.3);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.cookie-btn-decline-index:hover {
  border-color: rgba(241, 245, 249, 0.6);
  background: rgba(241, 245, 249, 0.05);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .cookie-banner-text-index {
    text-align: center;
    min-width: auto;
    width: 100%;
  }

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

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

  .featured-cards-index {
    flex-direction: column;
    align-items: stretch;
  }

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

  .howitworks-steps-index {
    flex-direction: column;
  }

  .step-card-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-stats-index {
    gap: 1rem;
  }

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

  .stat-label-index {
    font-size: 0.75rem;
  }

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

  .hero-buttons-index .btn {
    width: 100%;
  }

  .step-number-index {
    font-size: 2rem;
    min-width: 60px;
  }

  .feature-card-index,
  .featured-card-index,
  .testimonial-card-index,
  .benefit-item-index {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .cookie-banner-buttons-index {
    flex-direction: column;
  }

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    width: 100%;
  }
}

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

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

.footer-content {
  display: block;
}

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

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

.footer-about {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

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

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

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

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

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

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

.footer-contact {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.footer-contact p {
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

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

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

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

.footer-legal-list a {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
  display: inline-block;
}

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

.footer-copyright {
  border-top: 1px solid var(--color-text-light);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

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

@media (min-width: 768px) {
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, 4vw, 3rem);
  }

  .footer-about {
    flex: 1 1 300px;
    margin-bottom: 0;
  }

  .footer-navigation {
    flex: 1 1 200px;
    margin-bottom: 0;
  }

  .footer-contact {
    flex: 1 1 280px;
    margin-bottom: 0;
  }

  .footer-legal {
    flex: 1 1 200px;
    margin-bottom: 0;
  }

  .footer-copyright {
    flex: 1 1 100%;
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    gap: clamp(2.5rem, 5vw, 4rem);
  }

  .footer-about {
    flex: 0 1 320px;
  }

  .footer-navigation {
    flex: 0 1 180px;
  }

  .footer-contact {
    flex: 0 1 280px;
  }

  .footer-legal {
    flex: 0 1 180px;
  }
}
    

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

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

.hero-content-category {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

.hero-title-category {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero-subtitle-category {
  color: var(--color-primary);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.hero-description-category {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 0;
}

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

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

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

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

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

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

.card-dutch-lessons-everyday {
  display: flex;
  flex-direction: column;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  flex: 1 1 clamp(280px, 45vw, 380px);
  min-width: 280px;
}

.card-dutch-lessons-everyday:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-image-wrapper-category {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.card-image-category {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.card-dutch-lessons-everyday:hover .card-image-category {
  transform: scale(1.05);
}

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

.card-title-category {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin-bottom: 0;
  line-height: 1.3;
}

.card-description-category {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin-bottom: 0;
  line-height: 1.6;
  flex: 1;
}

.card-meta-category {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(28, 25, 23, 0.1);
}

.card-meta-item-category {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-meta-item-category i {
  color: var(--color-primary);
  font-size: 0.875rem;
}

.card-link-category {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-block;
  padding-top: var(--space-sm);
}

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

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

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

.tips-header-category {
  text-align: center;
}

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

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

.tips-list-category {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.tip-item-category {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  border-left: 4px solid var(--color-primary);
}

.tip-item-category:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.tip-icon-category {
  width: 48px;
  height: 48px;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.tip-text-category {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.tip-item-title-category {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 0;
}

.tip-item-description-category {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin-bottom: 0;
  line-height: 1.6;
}

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

.faq-content-category {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 800px;
  margin: 0 auto;
}

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

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

.faq-subtitle-category {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  margin-bottom: 0;
}

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

.faq-item-category {
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(28, 25, 23, 0.1);
  overflow: hidden;
}

.faq-question-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  font-family: var(--font-primary);
}

.faq-question-category:hover {
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
}

.faq-question-category::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: var(--space-md);
  background: currentColor;
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

details[open] > .faq-question-category::after {
  transform: rotate(180deg);
}

.faq-answer-category {
  padding: clamp(1rem, 2vw, 1.5rem);
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
}

.faq-answer-category p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

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

@media (max-width: 768px) {
  .posts-grid-category {
    flex-direction: column;
    align-items: stretch;
  }

  .card-dutch-lessons-everyday {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-section-category {
    padding: 2rem 0;
  }

  .posts-section-category {
    padding: 2rem 0;
  }

  .tips-section-category {
    padding: 2rem 0;
  }

  .faq-section-category {
    padding: 2rem 0;
  }

  .tips-list-category {
    grid-template-columns: 1fr;
  }

  .faq-content-category {
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .hero-title-category {
    font-size: 1.75rem;
  }

  .posts-title-category,
  .tips-title-category,
  .faq-title-category {
    font-size: 1.5rem;
  }

  .card-image-wrapper-category {
    height: 180px;
  }

  .card-body-category {
    padding: 1rem;
  }

  .tip-item-category {
    padding: 1rem;
  }

  .faq-question-category {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .faq-answer-category {
    padding: 1rem;
    font-size: 0.875rem;
  }
}

.main-werk-kantoor-nederlands {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

.hero-section-werk-kantoor-nederlands {
  background: linear-gradient(135deg, #f8f7f4 0%, #fffbeb 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.hero-text-block-werk-kantoor-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-werk-kantoor-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-werk-kantoor-nederlands {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.breadcrumbs-werk-kantoor-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary);
}

.breadcrumbs-werk-kantoor-nederlands a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-werk-kantoor-nederlands a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-werk-kantoor-nederlands span {
  color: var(--color-text-muted);
}

.hero-title-werk-kantoor-nederlands {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-subtitle-werk-kantoor-nederlands {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
  font-weight: 500;
}

.hero-meta-werk-kantoor-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: var(--space-lg);
}

.meta-item-werk-kantoor-nederlands {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-item-werk-kantoor-nederlands i {
  color: var(--color-primary);
  font-size: 1rem;
}

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

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

  .hero-title-werk-kantoor-nederlands {
    font-size: 1.75rem;
  }

  .hero-subtitle-werk-kantoor-nederlands {
    font-size: 1rem;
  }
}

.intro-section-werk-kantoor-nederlands {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-werk-kantoor-nederlands {
  flex: 1 1 55%;
  max-width: 55%;
}

.intro-title-werk-kantoor-nederlands {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.intro-paragraph-werk-kantoor-nederlands {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.intro-highlight-werk-kantoor-nederlands {
  flex: 1 1 45%;
  max-width: 45%;
}

.highlight-card-werk-kantoor-nederlands {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-primary);
}

.highlight-title-werk-kantoor-nederlands {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.highlight-list-werk-kantoor-nederlands {
  list-style: none;
  padding: 0;
}

.highlight-item-werk-kantoor-nederlands {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  position: relative;
  line-height: 1.6;
}

.highlight-item-werk-kantoor-nederlands::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

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

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

.content-section-one-werk-kantoor-nederlands {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

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

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

.content-title-one-werk-kantoor-nederlands {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.content-paragraph-one-werk-kantoor-nederlands {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.content-img-werk-kantoor-nederlands {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  max-height: 400px;
}

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

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

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

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

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

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

.content-title-two-werk-kantoor-nederlands {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.content-paragraph-two-werk-kantoor-nederlands {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.content-list-werk-kantoor-nederlands {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
}

.list-item-werk-kantoor-nederlands {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  position: relative;
  line-height: 1.6;
}

.list-item-werk-kantoor-nederlands::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.25rem;
}

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

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

.content-section-three-werk-kantoor-nederlands {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

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

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

.content-title-three-werk-kantoor-nederlands {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.content-paragraph-three-werk-kantoor-nederlands {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

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

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

.content-section-four-werk-kantoor-nederlands {
  background: #f5f4f0;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.content-text-four-werk-kantoor-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-four-werk-kantoor-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-four-werk-kantoor-nederlands {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.content-paragraph-four-werk-kantoor-nederlands {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .content-wrapper-four-werk-kantoor-nederlands {
    flex-direction: column-reverse;
  }

  .content-text-four-werk-kantoor-nederlands,
  .content-image-four-werk-kantoor-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-werk-kantoor-nederlands {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-werk-kantoor-nederlands {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-werk-kantoor-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.conclusion-paragraph-werk-kantoor-nederlands {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.conclusion-highlight-werk-kantoor-nederlands {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-md);
  text-align: left;
}

.conclusion-highlight-title-werk-kantoor-nederlands {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
  font-weight: 700;
  text-align: center;
}

.tips-grid-werk-kantoor-nederlands {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.tip-card-werk-kantoor-nederlands {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-md);
  background: #f9f8f5;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
}

.tip-number-werk-kantoor-nederlands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  color: #ffffff;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.tip-text-werk-kantoor-nederlands {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.cta-box-werk-kantoor-nederlands {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.cta-title-werk-kantoor-nederlands {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.cta-text-werk-kantoor-nederlands {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.btn-cta-werk-kantoor-nederlands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-cta-werk-kantoor-nederlands:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .tips-grid-werk-kantoor-nederlands {
    gap: var(--space-md);
  }

  .tip-card-werk-kantoor-nederlands {
    flex-direction: row;
  }
}

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

.disclaimer-content-werk-kantoor-nederlands {
  max-width: 850px;
  margin: 0 auto;
  background: #ffffff;
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.disclaimer-title-werk-kantoor-nederlands {
  color: var(--color-text-primary);
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.disclaimer-text-werk-kantoor-nederlands {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.related-section-werk-kantoor-nederlands {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-content-werk-kantoor-nederlands {
  display: flex;
  flex-direction: column;
}

.related-title-werk-kantoor-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
  text-align: center;
  font-weight: 700;
}

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

.related-card-werk-kantoor-nederlands {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.related-image-werk-kantoor-nederlands {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f0ede9;
}

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

.related-card-text-werk-kantoor-nederlands {
  padding: var(--space-lg);
}

.related-card-title-werk-kantoor-nederlands {
  color: var(--color-text-primary);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  font-weight: 700;
  line-height: 1.4;
}

.related-card-desc-werk-kantoor-nederlands {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.related-link-werk-kantoor-nederlands {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition-base);
}

.related-link-werk-kantoor-nederlands:hover {
  color: var(--color-primary-hover);
  gap: var(--space-sm);
}

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

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

@media (max-width: 480px) {
  .hero-section-werk-kantoor-nederlands {
    padding: 2rem 0;
  }

  .intro-section-werk-kantoor-nederlands,
  .content-section-one-werk-kantoor-nederlands,
  .content-section-two-werk-kantoor-nederlands,
  .content-section-three-werk-kantoor-nederlands,
  .content-section-four-werk-kantoor-nederlands,
  .conclusion-section-werk-kantoor-nederlands,
  .disclaimer-section-werk-kantoor-nederlands,
  .related-section-werk-kantoor-nederlands {
    padding: 2rem 0;
  }

  .hero-title-werk-kantoor-nederlands {
    font-size: 1.5rem;
  }

  .hero-subtitle-werk-kantoor-nederlands {
    font-size: 0.95rem;
  }

  .content-title-one-werk-kantoor-nederlands,
  .content-title-two-werk-kantoor-nederlands,
  .content-title-three-werk-kantoor-nederlands,
  .content-title-four-werk-kantoor-nederlands {
    font-size: 1.25rem;
  }

  .conclusion-title-werk-kantoor-nederlands,
  .related-title-werk-kantoor-nederlands {
    font-size: 1.5rem;
  }

  .tip-card-werk-kantoor-nederlands {
    flex-direction: row;
    gap: var(--space-md);
  }

  .tip-number-werk-kantoor-nederlands {
    min-width: 40px;
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
}

.main-dagelijkse-gesprekken-beginnen {
  width: 100%;
  overflow: hidden;
}

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

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

.breadcrumbs-dagelijkse-gesprekken-beginnen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  flex-wrap: wrap;
}

.breadcrumbs-dagelijkse-gesprekken-beginnen a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-dagelijkse-gesprekken-beginnen a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-dagelijkse-gesprekken-beginnen span {
  color: var(--color-text-muted);
}

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

.hero-text-dagelijkse-gesprekken-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-dagelijkse-gesprekken-beginnen {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-subtitle-dagelijkse-gesprekken-beginnen {
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.hero-meta-dagelijkse-gesprekken-beginnen {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.meta-item-dagelijkse-gesprekken-beginnen {
  color: var(--color-text-secondary);
}

.meta-separator-dagelijkse-gesprekken-beginnen {
  color: var(--color-text-muted);
}

.hero-image-dagelijkse-gesprekken-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-dagelijkse-gesprekken-beginnen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-lg);
}

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

  .hero-text-dagelijkse-gesprekken-beginnen,
  .hero-image-dagelijkse-gesprekken-beginnen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-dagelijkse-gesprekken-beginnen {
    font-size: 1.75rem;
  }
}

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

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

.intro-text-dagelijkse-gesprekken-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-dagelijkse-gesprekken-beginnen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.3;
}

.intro-paragraph-dagelijkse-gesprekken-beginnen {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
}

.intro-image-dagelijkse-gesprekken-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-dagelijkse-gesprekken-beginnen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .intro-content-dagelijkse-gesprekken-beginnen {
    flex-direction: column;
  }

  .intro-text-dagelijkse-gesprekken-beginnen,
  .intro-image-dagelijkse-gesprekken-beginnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.opening-section-dagelijkse-gesprekken-beginnen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.opening-content-dagelijkse-gesprekken-beginnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.opening-image-dagelijkse-gesprekken-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.opening-img-dagelijkse-gesprekken-beginnen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-lg);
}

.opening-text-dagelijkse-gesprekken-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.opening-title-dagelijkse-gesprekken-beginnen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.opening-paragraph-dagelijkse-gesprekken-beginnen {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.8;
}

.opening-examples-dagelijkse-gesprekken-beginnen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.example-card-dagelijkse-gesprekken-beginnen {
  background: var(--color-bg-secondary);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.example-title-dagelijkse-gesprekken-beginnen {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.example-text-dagelijkse-gesprekken-beginnen {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.opening-note-dagelijkse-gesprekken-beginnen {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  font-style: italic;
  margin: 0;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(13, 148, 136, 0.08);
  border-radius: var(--radius-md);
}

@media (max-width: 768px) {
  .opening-content-dagelijkse-gesprekken-beginnen {
    flex-direction: column;
  }

  .opening-image-dagelijkse-gesprekken-beginnen,
  .opening-text-dagelijkse-gesprekken-beginnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.techniques-content-dagelijkse-gesprekken-beginnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.techniques-text-dagelijkse-gesprekken-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-title-dagelijkse-gesprekken-beginnen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.techniques-intro-dagelijkse-gesprekken-beginnen {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.8;
}

.technique-item-dagelijkse-gesprekken-beginnen {
  display: flex;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  align-items: flex-start;
}

.technique-number-dagelijkse-gesprekken-beginnen {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.25rem;
}

.technique-details-dagelijkse-gesprekken-beginnen {
  flex: 1;
}

.technique-subtitle-dagelijkse-gesprekken-beginnen {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.technique-description-dagelijkse-gesprekken-beginnen {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
}

.techniques-image-dagelijkse-gesprekken-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-img-dagelijkse-gesprekken-beginnen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .techniques-content-dagelijkse-gesprekken-beginnen {
    flex-direction: column;
  }

  .techniques-text-dagelijkse-gesprekken-beginnen,
  .techniques-image-dagelijkse-gesprekken-beginnen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .technique-item-dagelijkse-gesprekken-beginnen {
    gap: 1rem;
  }

  .technique-number-dagelijkse-gesprekken-beginnen {
    font-size: 1.5rem;
  }
}

.practical-section-dagelijkse-gesprekken-beginnen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-content-dagelijkse-gesprekken-beginnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practical-image-dagelijkse-gesprekken-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-img-dagelijkse-gesprekken-beginnen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-lg);
}

.practical-text-dagelijkse-gesprekken-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-dagelijkse-gesprekken-beginnen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.practical-intro-dagelijkse-gesprekken-beginnen {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.8;
}

.situation-block-dagelijkse-gesprekken-beginnen {
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  padding-bottom: clamp(1.5rem, 2vw, 2rem);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.situation-block-dagelijkse-gesprekken-beginnen:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.situation-title-dagelijkse-gesprekken-beginnen {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.situation-list-dagelijkse-gesprekken-beginnen {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-item-dagelijkse-gesprekken-beginnen {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}

.list-item-dagelijkse-gesprekken-beginnen:last-child {
  margin-bottom: 0;
}

.list-item-dagelijkse-gesprekken-beginnen::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .practical-content-dagelijkse-gesprekken-beginnen {
    flex-direction: column;
  }

  .practical-image-dagelijkse-gesprekken-beginnen,
  .practical-text-dagelijkse-gesprekken-beginnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.tips-content-dagelijkse-gesprekken-beginnen {
  display: flex;
  flex-direction: column;
}

.tips-title-dagelijkse-gesprekken-beginnen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
}

.tips-intro-dagelijkse-gesprekken-beginnen {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(2rem, 3vw, 3rem);
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.tips-grid-dagelijkse-gesprekken-beginnen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.tip-card-dagelijkse-gesprekken-beginnen {
  flex: 1 1 clamp(250px, 30vw, 350px);
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition-base);
}

.tip-card-dagelijkse-gesprekken-beginnen:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.tip-icon-dagelijkse-gesprekken-beginnen {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  display: block;
}

.tip-card-title-dagelijkse-gesprekken-beginnen {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.tip-card-text-dagelijkse-gesprekken-beginnen {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
}

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

.conclusion-section-dagelijkse-gesprekken-beginnen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-dagelijkse-gesprekken-beginnen {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.conclusion-title-dagelijkse-gesprekken-beginnen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  max-width: 700px;
}

.conclusion-text-dagelijkse-gesprekken-beginnen {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
  max-width: 700px;
  line-height: 1.8;
}

.conclusion-quote-dagelijkse-gesprekken-beginnen {
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
  width: 100%;
  max-width: 700px;
}

.quote-text-dagelijkse-gesprekken-beginnen {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.7;
  margin: 0;
  padding: clamp(1.5rem, 2vw, 2rem) 0;
  border-top: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

.conclusion-closing-dagelijkse-gesprekken-beginnen {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(2.5rem, 3vw, 3rem);
  max-width: 700px;
  line-height: 1.8;
}

.cta-box-dagelijkse-gesprekken-beginnen {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  text-align: center;
  color: #ffffff;
  max-width: 500px;
}

.cta-title-dagelijkse-gesprekken-beginnen {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-text-dagelijkse-gesprekken-beginnen {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.cta-button-dagelijkse-gesprekken-beginnen {
  display: inline-block;
  background: #ffffff;
  color: var(--color-primary);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition-base);
}

.cta-button-dagelijkse-gesprekken-beginnen:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  opacity: 0.95;
}

.disclaimer-section-dagelijkse-gesprekken-beginnen {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-dagelijkse-gesprekken-beginnen {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-dagelijkse-gesprekken-beginnen {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.disclaimer-text-dagelijkse-gesprekken-beginnen {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
}

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

.related-content-dagelijkse-gesprekken-beginnen {
  display: flex;
  flex-direction: column;
}

.related-title-dagelijkse-gesprekken-beginnen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(2rem, 3vw, 3rem);
  text-align: center;
}

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

.related-card-dagelijkse-gesprekken-beginnen {
  flex: 1 1 clamp(280px, 30vw, 380px);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.related-card-dagelijkse-gesprekken-beginnen:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.related-card-image-dagelijkse-gesprekken-beginnen {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-img-dagelijkse-gesprekken-beginnen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
}

.related-card-dagelijkse-gesprekken-beginnen:hover .related-img-dagelijkse-gesprekken-beginnen {
  transform: scale(1.05);
}

.related-card-content-dagelijkse-gesprekken-beginnen {
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.related-card-title-dagelijkse-gesprekken-beginnen {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.related-card-description-dagelijkse-gesprekken-beginnen {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: auto;
  line-height: 1.7;
  flex: 1;
}

.related-link-dagelijkse-gesprekken-beginnen {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
  text-decoration: none;
  transition: all var(--transition-base);
}

.related-link-dagelijkse-gesprekken-beginnen:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

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

  .related-card-image-dagelijkse-gesprekken-beginnen {
    height: 250px;
  }
}

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: 480px) {
  .hero-section-dagelijkse-gesprekken-beginnen,
  .intro-section-dagelijkse-gesprekken-beginnen,
  .opening-section-dagelijkse-gesprekken-beginnen,
  .techniques-section-dagelijkse-gesprekken-beginnen,
  .practical-section-dagelijkse-gesprekken-beginnen,
  .tips-section-dagelijkse-gesprekken-beginnen,
  .conclusion-section-dagelijkse-gesprekken-beginnen,
  .disclaimer-section-dagelijkse-gesprekken-beginnen,
  .related-section-dagelijkse-gesprekken-beginnen {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .breadcrumbs-dagelijkse-gesprekken-beginnen {
    font-size: 0.8rem;
  }

  .tip-card-dagelijkse-gesprekken-beginnen {
    flex: 1 1 100%;
  }
}

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

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

.breadcrumbs-telefoneren-nederlands-tips {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.breadcrumbs-telefoneren-nederlands-tips a {
  color: #94a3b8;
  transition: color 0.3s ease;
  text-decoration: none;
}

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

.breadcrumbs-telefoneren-nederlands-tips span {
  color: #64748b;
}

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

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

.hero-title-telefoneren-nederlands-tips {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-subtitle-telefoneren-nederlands-tips {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-meta-telefoneren-nederlands-tips {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.meta-item-telefoneren-nederlands-tips {
  color: #94a3b8;
}

.meta-divider-telefoneren-nederlands-tips {
  color: #64748b;
}

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

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

@media (max-width: 768px) {
  .hero-content-telefoneren-nederlands-tips {
    flex-direction: column;
  }
  
  .hero-text-telefoneren-nederlands-tips,
  .hero-image-telefoneren-nederlands-tips {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

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

.intro-title-telefoneren-nederlands-tips {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.intro-paragraph-telefoneren-nederlands-tips {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

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

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

@media (max-width: 768px) {
  .intro-content-telefoneren-nederlands-tips {
    flex-direction: column;
  }
  
  .intro-text-telefoneren-nederlands-tips,
  .intro-image-telefoneren-nederlands-tips {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.opening-image-telefoneren-nederlands-tips {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.opening-text-telefoneren-nederlands-tips {
  flex: 1 1 50%;
  max-width: 50%;
}

.opening-title-telefoneren-nederlands-tips {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.opening-paragraph-telefoneren-nederlands-tips {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.opening-phrases-telefoneren-nederlands-tips {
  margin-top: 1.5rem;
}

.phrases-heading-telefoneren-nederlands-tips {
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.phrase-box-telefoneren-nederlands-tips {
  background: #ffffff;
  padding: 1rem;
  border-left: 4px solid #0d9488;
  margin-bottom: 0.75rem;
  border-radius: 4px;
}

.phrase-text-telefoneren-nederlands-tips {
  color: #0f172a;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.phrase-desc-telefoneren-nederlands-tips {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

.opening-tip-telefoneren-nederlands-tips {
  color: #059669;
  font-size: 0.95rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: #d1fae5;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .opening-content-telefoneren-nederlands-tips {
    flex-direction: column-reverse;
  }
  
  .opening-image-telefoneren-nederlands-tips,
  .opening-text-telefoneren-nederlands-tips {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.practical-text-telefoneren-nederlands-tips {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-telefoneren-nederlands-tips {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.practical-paragraph-telefoneren-nederlands-tips {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.practical-steps-telefoneren-nederlands-tips {
  margin-bottom: 1.5rem;
}

.step-item-telefoneren-nederlands-tips {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.step-number-telefoneren-nederlands-tips {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d9488;
  min-width: 2.5rem;
}

.step-details-telefoneren-nederlands-tips {
  flex: 1;
}

.step-title-telefoneren-nederlands-tips {
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.step-text-telefoneren-nederlands-tips {
  color: #475569;
  font-size: 0.95rem;
  margin: 0;
}

.highlight-box-telefoneren-nederlands-tips {
  background: #fef3c7;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.highlight-text-telefoneren-nederlands-tips {
  color: #92400e;
  font-size: 0.95rem;
  margin: 0;
}

.practical-image-telefoneren-nederlands-tips {
  flex: 1 1 50%;
  max-width: 50%;
}

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

@media (max-width: 768px) {
  .practical-content-telefoneren-nederlands-tips {
    flex-direction: column;
  }
  
  .practical-text-telefoneren-nederlands-tips,
  .practical-image-telefoneren-nederlands-tips {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.questions-image-telefoneren-nederlands-tips {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.questions-text-telefoneren-nederlands-tips {
  flex: 1 1 50%;
  max-width: 50%;
}

.questions-title-telefoneren-nederlands-tips {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.questions-paragraph-telefoneren-nederlands-tips {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.question-examples-telefoneren-nederlands-tips {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.question-item-telefoneren-nederlands-tips {
  background: #ffffff;
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid #3b82f6;
}

.question-ask-telefoneren-nederlands-tips {
  color: #0f172a;
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
}

.questions-note-telefoneren-nederlands-tips {
  color: #64748b;
  font-size: 0.9rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: #e0e7ff;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .questions-content-telefoneren-nederlands-tips {
    flex-direction: column;
  }
  
  .questions-image-telefoneren-nederlands-tips,
  .questions-text-telefoneren-nederlands-tips {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.closing-text-telefoneren-nederlands-tips {
  flex: 1 1 50%;
  max-width: 50%;
}

.closing-title-telefoneren-nederlands-tips {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.closing-paragraph-telefoneren-nederlands-tips {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.closing-phrases-telefoneren-nederlands-tips {
  margin-bottom: 1.5rem;
}

.closing-phrase-box-telefoneren-nederlands-tips {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 0.875rem;
  margin-bottom: 0.75rem;
  border-radius: 6px;
}

.closing-phrase-text-telefoneren-nederlands-tips {
  color: #0f172a;
  font-size: 0.95rem;
  margin: 0;
}

.closing-tips-box-telefoneren-nederlands-tips {
  background: #f0fdf4;
  padding: 1.25rem;
  border-radius: 8px;
}

.closing-tips-title-telefoneren-nederlands-tips {
  color: #065f46;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

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

.closing-tip-item-telefoneren-nederlands-tips {
  color: #047857;
  font-size: 0.95rem;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.closing-tip-item-telefoneren-nederlands-tips:before {
  content: "";
  position: absolute;
  left: 0;
  font-weight: bold;
}

.closing-image-telefoneren-nederlands-tips {
  flex: 1 1 50%;
  max-width: 50%;
}

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

@media (max-width: 768px) {
  .closing-content-telefoneren-nederlands-tips {
    flex-direction: column;
  }
  
  .closing-text-telefoneren-nederlands-tips,
  .closing-image-telefoneren-nederlands-tips {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.summary-section-telefoneren-nederlands-tips {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.summary-content-telefoneren-nederlands-tips {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.summary-title-telefoneren-nederlands-tips {
  color: #065f46;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 2rem;
}

.summary-grid-telefoneren-nederlands-tips {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.summary-card-telefoneren-nederlands-tips {
  flex: 1 1 280px;
  max-width: 350px;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #10b981;
}

.summary-card-title-telefoneren-nederlands-tips {
  color: #065f46;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.summary-card-text-telefoneren-nederlands-tips {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.summary-note-telefoneren-nederlands-tips {
  color: #047857;
  font-size: 1rem;
  text-align: center;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .summary-grid-telefoneren-nederlands-tips {
    flex-direction: column;
  }
  
  .summary-card-telefoneren-nederlands-tips {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-telefoneren-nederlands-tips {
  background: #fef3c7;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-telefoneren-nederlands-tips {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-title-telefoneren-nederlands-tips {
  color: #92400e;
  font-size: 1.25rem;
  font-weight: 600;
}

.disclaimer-text-telefoneren-nederlands-tips {
  color: #78350f;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

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

.related-content-telefoneren-nederlands-tips {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.related-title-telefoneren-nederlands-tips {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
}

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

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

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

.related-img-telefoneren-nederlands-tips {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-content-telefoneren-nederlands-tips {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-telefoneren-nederlands-tips {
  color: #0f172a;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
}

.related-card-desc-telefoneren-nederlands-tips {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .related-grid-telefoneren-nederlands-tips {
    flex-direction: column;
  }
  
  .related-card-telefoneren-nederlands-tips {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title-telefoneren-nederlands-tips {
    font-size: 1.75rem;
  }
  
  .intro-title-telefoneren-nederlands-tips,
  .opening-title-telefoneren-nederlands-tips,
  .practical-title-telefoneren-nederlands-tips,
  .questions-title-telefoneren-nederlands-tips,
  .closing-title-telefoneren-nederlands-tips {
    font-size: 1.5rem;
  }
  
  .summary-title-telefoneren-nederlands-tips,
  .related-title-telefoneren-nederlands-tips {
    font-size: 1.5rem;
  }
  
  .step-number-telefoneren-nederlands-tips {
    font-size: 1.25rem;
  }
}

.main-boodschappen-winkelen-nederlands {
  width: 100%;
}

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

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

.hero-section-boodschappen-winkelen-nederlands {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.hero-title-boodschappen-winkelen-nederlands {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: #1c1917;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.hero-subtitle-boodschappen-winkelen-nederlands {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #57534e;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.hero-meta-boodschappen-winkelen-nederlands {
  display: flex;
  flex-direction: row;
  gap: var(--space-sm);
  align-items: center;
  flex-wrap: wrap;
}

.meta-item-boodschappen-winkelen-nederlands {
  font-size: 0.875rem;
  color: #a8a29e;
  font-weight: 500;
}

.meta-divider-boodschappen-winkelen-nederlands {
  color: #d6d3d1;
  font-size: 0.875rem;
}

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

.hero-img-boodschappen-winkelen-nederlands {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  max-height: 450px;
}

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

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

  .hero-img-boodschappen-winkelen-nederlands {
    max-height: 300px;
  }
}

.breadcrumbs-boodschappen-winkelen-nederlands {
  display: flex;
  flex-direction: row;
  gap: var(--space-sm);
  align-items: center;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.breadcrumbs-boodschappen-winkelen-nederlands a {
  color: #0d9488;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

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

.breadcrumbs-boodschappen-winkelen-nederlands span {
  color: #a8a29e;
  font-size: 0.875rem;
}

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

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

.intro-text-boodschappen-winkelen-nederlands {
  flex: 1 1 60%;
  max-width: 60%;
}

.intro-title-boodschappen-winkelen-nederlands {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: #1c1917;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.intro-paragraph-boodschappen-winkelen-nederlands {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #57534e;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.intro-highlight-boodschappen-winkelen-nederlands {
  flex: 1 1 40%;
  max-width: 40%;
}

.highlight-box-boodschappen-winkelen-nederlands {
  background: linear-gradient(135deg, #fef3c7 0%, #ffffff 100%);
  border-left: 4px solid #0d9488;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.08);
}

.highlight-title-boodschappen-winkelen-nederlands {
  font-size: 1.125rem;
  color: #1c1917;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.highlight-list-boodschappen-winkelen-nederlands {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-item-boodschappen-winkelen-nederlands {
  padding: 0.5rem 0;
  padding-left: var(--space-lg);
  position: relative;
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.6;
}

.highlight-item-boodschappen-winkelen-nederlands::before {
  content: '';
  position: absolute;
  left: 0;
  color: #0d9488;
  font-weight: 700;
  font-size: 1.1rem;
}

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

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

.content-section-one-boodschappen-winkelen-nederlands {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.content-title-one-boodschappen-winkelen-nederlands {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: #1c1917;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.content-para-one-boodschappen-winkelen-nederlands {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #57534e;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

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

.content-img-one-boodschappen-winkelen-nederlands {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  max-height: 400px;
}

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

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

  .content-img-one-boodschappen-winkelen-nederlands {
    max-height: 300px;
  }
}

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

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

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

.content-img-two-boodschappen-winkelen-nederlands {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  max-height: 400px;
}

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

.content-title-two-boodschappen-winkelen-nederlands {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: #1c1917;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.content-para-two-boodschappen-winkelen-nederlands {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #57534e;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

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

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

  .content-img-two-boodschappen-winkelen-nederlands {
    max-height: 300px;
  }
}

.content-section-three-boodschappen-winkelen-nederlands {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.content-title-three-boodschappen-winkelen-nederlands {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: #1c1917;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.content-para-three-boodschappen-winkelen-nederlands {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #57534e;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

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

.content-img-three-boodschappen-winkelen-nederlands {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  max-height: 400px;
}

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

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

  .content-img-three-boodschappen-winkelen-nederlands {
    max-height: 300px;
  }
}

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

.techniques-content-boodschappen-winkelen-nederlands {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.techniques-title-boodschappen-winkelen-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1c1917;
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-lg);
}

.techniques-grid-boodschappen-winkelen-nederlands {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  flex-wrap: wrap;
  justify-content: center;
}

.technique-card-boodschappen-winkelen-nederlands {
  flex: 1 1 280px;
  max-width: 320px;
  background: linear-gradient(135deg, #fef3c7 0%, #ffffff 100%);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 148, 136, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-base);
}

.technique-card-boodschappen-winkelen-nederlands:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(13, 148, 136, 0.12);
}

.technique-card-title-boodschappen-winkelen-nederlands {
  font-size: 1.125rem;
  color: #1c1917;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.technique-list-boodschappen-winkelen-nederlands {
  list-style: none;
  padding: 0;
  margin: 0;
}

.technique-item-boodschappen-winkelen-nederlands {
  padding: 0.5rem 0;
  padding-left: var(--space-lg);
  position: relative;
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.6;
}

.technique-item-boodschappen-winkelen-nederlands::before {
  content: '';
  position: absolute;
  left: 0.25rem;
  color: #0d9488;
  font-weight: 700;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .techniques-grid-boodschappen-winkelen-nederlands {
    flex-direction: column;
    align-items: stretch;
  }

  .technique-card-boodschappen-winkelen-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.quote-wrapper-boodschappen-winkelen-nederlands {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.featured-quote-boodschappen-winkelen-nederlands {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
}

.quote-text-boodschappen-winkelen-nederlands {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: #ffffff;
  font-style: italic;
  margin-bottom: var(--space-md);
  line-height: 1.6;
  font-weight: 500;
}

.quote-author-boodschappen-winkelen-nederlands {
  color: #fef3c7;
  font-size: 1rem;
  font-style: normal;
  display: block;
}

@media (max-width: 768px) {
  .quote-text-boodschappen-winkelen-nederlands {
    font-size: 1.25rem;
  }
}

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

.practice-content-boodschappen-winkelen-nederlands {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.practice-title-boodschappen-winkelen-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1c1917;
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-lg);
}

.practice-steps-boodschappen-winkelen-nederlands {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.practice-step-boodschappen-winkelen-nederlands {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  align-items: flex-start;
}

.practice-step-boodschapppennen-winkelen-nederlands {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  align-items: flex-start;
}

.step-number-boodschappen-winkelen-nederlands {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #0d9488;
  font-family: var(--font-heading);
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

.step-content-boodschappen-winkelen-nederlands {
  flex: 1;
  padding-top: var(--space-sm);
}

.step-title-boodschappen-winkelen-nederlands {
  font-size: 1.25rem;
  color: #1c1917;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.step-text-boodschappen-winkelen-nederlands {
  font-size: 1rem;
  color: #57534e;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .practice-step-boodschappen-winkelen-nederlands,
  .practice-step-boodschapppennen-winkelen-nederlands {
    flex-direction: column;
    gap: var(--space-md);
  }

  .step-number-boodschappen-winkelen-nederlands {
    min-width: 60px;
    font-size: 2rem;
  }
}

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

.tips-content-boodschappen-winkelen-nederlands {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.tips-title-boodschappen-winkelen-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1c1917;
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-lg);
}

.tips-list-boodschappen-winkelen-nederlands {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.tip-item-boodschappen-winkelen-nederlands {
  background: #ffffff;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid #0d9488;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tip-heading-boodschappen-winkelen-nederlands {
  font-size: 1.125rem;
  color: #1c1917;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.tip-text-boodschappen-winkelen-nederlands {
  font-size: 0.95rem;
  color: #57534e;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .tip-item-boodschappen-winkelen-nederlands {
    padding: var(--space-md);
  }
}

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

.conclusion-content-boodschappen-winkelen-nederlands {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.conclusion-title-boodschappen-winkelen-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1c1917;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.conclusion-text-boodschappen-winkelen-nederlands {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #57534e;
  line-height: 1.7;
  margin: 0;
}

.conclusion-cta-boodschappen-winkelen-nederlands {
  display: flex;
  justify-content: center;
  margin-top: var(--space-md);
}

.cta-button-boodschappen-winkelen-nederlands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  background: #0d9488;
  color: #ffffff;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

.cta-button-boodschappen-winkelen-nederlands:hover {
  background: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(13, 148, 136, 0.35);
}

@media (max-width: 768px) {
  .conclusion-content-boodschappen-winkelen-nederlands {
    text-align: center;
  }
}

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

.related-content-boodschappen-winkelen-nederlands {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.related-title-boodschappen-winkelen-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1c1917;
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-lg);
}

.related-cards-boodschappen-winkelen-nederlands {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  flex-wrap: wrap;
  justify-content: center;
}

.related-card-boodschappen-winkelen-nederlands {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
}

.related-card-boodschappen-winkelen-nederlands:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.15);
}

.related-image-boodschappen-winkelen-nederlands {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-boodschappen-winkelen-nederlands {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
}

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

.related-info-boodschappen-winkelen-nederlands {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.related-card-title-boodschappen-winkelen-nederlands {
  font-size: 1.125rem;
  color: #1c1917;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.related-card-text-boodschappen-winkelen-nederlands {
  font-size: 0.95rem;
  color: #57534e;
  line-height: 1.6;
  margin: 0;
}

.related-link-boodschappen-winkelen-nederlands {
  color: #0d9488;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

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

@media (max-width: 768px) {
  .related-cards-boodschappen-winkelen-nederlands {
    flex-direction: column;
    align-items: stretch;
  }

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

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

.disclaimer-content-boodschappen-winkelen-nederlands {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-lg);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border-left: 4px solid #0d9488;
}

.disclaimer-title-boodschappen-winkelen-nederlands {
  font-size: 1.125rem;
  color: #1c1917;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

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

@media (max-width: 768px) {
  .disclaimer-content-boodschappen-winkelen-nederlands {
    padding: var(--space-md);
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  line-height: 1.6;
}

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

.dutch-language-academy-about {
  background: var(--color-bg-primary);
  overflow: hidden;
}

.hero-dutch-about {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-block-about {
  text-align: center;
  max-width: 800px;
}

.hero-title-about {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.hero-subtitle-about {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-description-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

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

.stat-card-about {
  text-align: center;
  flex: 0 1 auto;
  min-width: 120px;
}

.stat-number-about {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.stat-label-about {
  display: block;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  font-weight: 600;
}

.hero-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.foundation-story-about {
  background: var(--color-bg-tertiary);
  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;
  max-width: 700px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
}

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

.section-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.section-subtitle-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.foundation-grid-about {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

@media (min-width: 768px) {
  .foundation-grid-about {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.foundation-text-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.8;
}

.foundation-text-about p {
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

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

.foundation-image-about {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

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

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

.teaching-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
}

.teaching-header-about .section-title-about {
  color: var(--color-primary);
}

.teaching-header-about .section-subtitle-about {
  color: var(--color-text-secondary);
}

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

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

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

.step-number-about {
  flex-shrink: 0;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  min-width: 80px;
}

.step-content-about {
  flex: 1;
  padding-top: 0.5rem;
}

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

.step-text-about {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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

.learning-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
}

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

.value-card-about {
  flex: 1 1 clamp(260px, 100%, 380px);
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border-top: 3px solid var(--color-primary);
}

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

.value-icon-about {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: block;
}

.value-title-about {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.value-text-about {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.student-experience-about {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.experience-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
}

.experience-header-about .section-title-about {
  color: var(--color-primary);
}

.experience-header-about .section-subtitle-about {
  color: var(--color-text-secondary);
}

.testimonial-block-about {
  background: var(--color-bg-tertiary);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
}

.testimonial-text-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-primary);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.testimonial-author-about {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: var(--color-text-secondary);
  font-weight: 600;
  font-style: normal;
}

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

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-heading-about {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  font-size: 1.3rem;
  color: var(--color-primary);
}

.disclaimer-text-about {
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-stats-about {
    gap: 1.5rem;
  }

  .stat-card-about {
    min-width: 100px;
  }

  .process-step-about {
    gap: 1rem;
  }

  .step-number-about {
    min-width: 60px;
    font-size: 2.2rem;
  }

  .values-cards-about {
    gap: 1.5rem;
  }

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

@media (min-width: 1024px) {
  .hero-dutch-about {
    padding: 6rem 0;
  }

  .foundation-story-about {
    padding: 6rem 0;
  }

  .teaching-method-about {
    padding: 6rem 0;
  }

  .learning-values-about {
    padding: 6rem 0;
  }

  .student-experience-about {
    padding: 6rem 0;
  }
}

.portfolio-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.portfolio-hero {
  background-color: var(--color-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-hero-content {
  max-width: 800px;
  text-align: center;
}

.portfolio-hero-title {
  font-family: var(--font-heading);
  color: var(--color-bg-tertiary);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  margin: 0;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  color: var(--color-bg-secondary);
  font-size: clamp(0.875rem, 2vw + 0.25rem, 1.125rem);
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
}

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

@media (min-width: 768px) {
  .portfolio-projects {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-projects {
    padding: var(--space-3xl) var(--space-xl);
  }
}

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

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

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
}

.portfolio-card {
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.portfolio-card-image {
  width: 100%;
  height: 200px;
  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-secondary-light);
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.portfolio-card-title {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw + 0.25rem, 1.5rem);
  font-weight: 700;
  margin: 0;
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.portfolio-card-description {
  font-family: var(--font-primary);
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.portfolio-card-detail {
  font-family: var(--font-primary);
  color: var(--color-text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: auto;
}

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

@media (min-width: 768px) {
  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

.portfolio-cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  color: var(--color-bg-tertiary);
  font-size: clamp(1.5rem, 4vw + 0.25rem, 2.25rem);
  font-weight: 700;
  margin: 0;
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.portfolio-cta-text {
  font-family: var(--font-primary);
  color: var(--color-bg-tertiary);
  font-size: clamp(0.95rem, 1.5vw + 0.25rem, 1.1rem);
  line-height: 1.6;
  margin: 0;
  margin-bottom: var(--space-lg);
}

.portfolio-cta-button {
  display: inline-block;
  background-color: var(--color-bg-tertiary);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-bg-tertiary);
}

.portfolio-cta-button:hover {
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
    min-height: 220px;
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-xl);
    min-height: 240px;
  }
}

.faq-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.faq-hero {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
  border-bottom: 2px solid var(--color-bg-secondary);
}

.faq-hero__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.2;
  font-weight: 700;
}

.faq-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.5;
}

.faq-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

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

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

.faq-item {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item__trigger {
  width: 100%;
  padding: var(--space-md);
  border: none;
  background-color: var(--color-bg-card);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-primary);
  font-weight: 600;
  transition: background-color var(--transition-base);
  text-align: left;
}

.faq-item__trigger:hover {
  background-color: var(--color-bg-secondary);
}

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

.faq-item__question {
  flex: 1;
  line-height: 1.4;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: 300;
  font-size: 1.5rem;
  transition: transform var(--transition-fast);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
  background-color: var(--color-bg-primary);
}

.faq-item.is-open .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer p {
  margin: 0;
  padding: 0 var(--space-md) var(--space-md) var(--space-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.faq-item.is-open .faq-item__answer p {
  padding-top: var(--space-sm);
}

.faq-cta {
  background-color: var(--color-bg-card);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

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

.faq-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
}

.faq-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.5;
}

.faq-cta__button {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: background-color var(--transition-base), transform var(--transition-fast);
  border: none;
  cursor: pointer;
}

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

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

.faq-cta__button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

  .faq-content {
    padding: var(--space-3xl) var(--space-lg);
  }

  .faq-item__trigger {
    padding: var(--space-lg);
  }

  .faq-item__answer p {
    padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
  }

  .faq-item.is-open .faq-item__answer p {
    padding-top: var(--space-sm);
  }

  .faq-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: 4rem var(--space-xl);
  }

  .faq-content {
    padding: 4rem var(--space-xl);
  }

  .faq-cta {
    padding: 4rem var(--space-xl);
  }

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

* {
  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);
}

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

.legal-docs .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) 0;
}

.legal-docs h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-weight: 700;
  line-height: 1.2;
}

.legal-docs .last-updated {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  display: block;
}

.legal-docs h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  font-weight: 700;
  line-height: 1.3;
}

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

.legal-docs ul,
.legal-docs ol {
  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);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.legal-docs strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.legal-docs .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
}

.legal-docs .contact-section h2 {
  color: var(--color-text-primary);
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.legal-docs .contact-section p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.legal-docs .contact-section strong {
  color: var(--color-text-primary);
  display: inline-block;
  min-width: 80px;
}

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

  .legal-docs .content {
    padding: var(--space-2xl) 0;
  }

  .legal-docs h1 {
    margin-bottom: var(--space-xs);
  }

  .legal-docs h2 {
    margin-top: var(--space-xl);
  }
}

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

@media (min-width: 1024px) {
  .legal-docs .container {
    padding: 0 var(--space-2xl);
  }
}

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

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.thank-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.thank-section {
  width: 100%;
  overflow: hidden;
}

.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);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.check-icon {
  width: 64px;
  height: 64px;
}

.thank-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  animation: slideUp 0.7s ease-out 0.1s backwards;
}

.thank-content .lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  font-weight: 600;
  animation: slideUp 0.7s ease-out 0.2s backwards;
}

.thank-content .message {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 600px;
  animation: slideUp 0.7s ease-out 0.3s backwards;
}

.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-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  min-width: 200px;
  animation: slideUp 0.7s ease-out 0.4s backwards;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
}

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

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

@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: 768px) {
  .thank-page {
    padding: var(--space-lg);
  }

  .thank-content {
    gap: var(--space-xl);
  }

  .thank-icon {
    width: 140px;
    height: 140px;
  }

  .check-icon {
    width: 72px;
    height: 72px;
  }
}

@media (min-width: 1024px) {
  .thank-page {
    padding: var(--space-2xl);
  }

  .thank-content {
    gap: var(--space-2xl);
  }

  .thank-icon {
    width: 160px;
    height: 160px;
  }

  .check-icon {
    width: 80px;
    height: 80px;
  }

  .btn {
    min-width: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-icon,
  .thank-content h1,
  .thank-content .lead,
  .thank-content .message,
  .btn {
    animation: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

.error-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl) var(--space-md);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-lg);
  }
}

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

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.error-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .error-wrapper {
    gap: var(--space-xl);
  }
}

.error-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .error-visual {
    margin-bottom: var(--space-lg);
  }
}

.error-code-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  letter-spacing: -2px;
  margin: 0;
  line-height: 1;
  position: relative;
  z-index: 2;
  animation: floatError 3s ease-in-out infinite;
}

@keyframes floatError {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.error-decoration {
  position: absolute;
  width: clamp(200px, 50vw, 400px);
  height: clamp(200px, 50vw, 400px);
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: pulseDecoration 4s ease-in-out infinite;
}

@keyframes pulseDecoration {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

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

.error-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  margin: 0;
  letter-spacing: -0.5px;
}

.error-description {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}

.error-subtitle {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin: var(--space-md) 0;
}

@media (min-width: 768px) {
  .error-actions {
    margin: var(--space-lg) 0;
  }
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  font-family: var(--font-primary);
  border: 2px solid;
  cursor: pointer;
  text-align: center;
  min-width: 200px;
}

@media (min-width: 768px) {
  .btn {
    min-width: 240px;
  }
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  border-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-hints {
  background-color: var(--color-primary-light);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .error-hints {
    padding: var(--space-lg) var(--space-xl);
    margin-top: var(--space-xl);
  }
}

.hint-text {
  font-size: clamp(0.85rem, 0.9vw + 0.4rem, 0.95rem);
  color: var(--color-text-primary);
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 480px) {
  .error-section {
    padding: var(--space-md) var(--space-sm);
  }

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

  .btn {
    min-width: 100%;
  }
}

.contact-page-connect {
  width: 100%;
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.contact-page-hero {
  background-color: var(--color-primary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-page-hero-content {
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

.contact-page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.contact-page-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .contact-page-hero {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-page-hero {
    padding: 5rem 2rem;
  }
}

.contact-page-main {
  background-color: var(--color-bg-primary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-page-main-content {
  max-width: 1440px;
  margin: 0 auto;
}

.contact-page-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.contact-page-form-wrapper {
  flex: 1 1 100%;
  min-width: 280px;
}

.contact-page-info-wrapper {
  flex: 1 1 100%;
  min-width: 280px;
}

@media (min-width: 768px) {
  .contact-page-grid {
    gap: 3rem;
  }

  .contact-page-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-page-info-wrapper {
    flex: 1 1 45%;
  }
}

@media (min-width: 1024px) {
  .contact-page-main {
    padding: 4rem 2rem;
  }

  .contact-page-grid {
    gap: 4rem;
  }

  .contact-page-form-wrapper {
    flex: 0 1 500px;
  }

  .contact-page-info-wrapper {
    flex: 0 1 450px;
  }
}

.contact-page-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.contact-page-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
}

.contact-page-input,
.contact-page-textarea {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-tertiary);
  border: 2px solid var(--color-text-light);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  width: 100%;
  box-sizing: border-box;
}

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

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

.contact-page-textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-primary);
}

.contact-page-form-consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
}

.contact-page-checkbox {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.contact-page-consent-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-primary);
  cursor: pointer;
  line-height: 1.5;
}

.contact-page-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--color-primary);
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.contact-page-privacy-link:hover,
.contact-page-privacy-link:focus {
  color: var(--color-primary-hover);
  border-bottom-color: var(--color-primary-hover);
  outline: none;
}

.contact-page-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
  box-shadow: var(--shadow-md);
}

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

.contact-page-submit:focus {
  outline: none;
  box-shadow: 0 0 0 4px var(--color-primary-light);
}

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

.contact-page-info-box {
  background-color: var(--color-bg-tertiary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-page-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--color-primary);
}

.contact-page-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-page-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-page-info-content {
  flex: 1;
}

.contact-page-info-label {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
  margin-bottom: 0.25rem;
}

.contact-page-info-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.contact-page-info-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-page-info-link:hover,
.contact-page-info-link:focus {
  color: var(--color-primary-hover);
  outline: none;
  text-decoration: underline;
}

.contact-page-info-divider {
  height: 2px;
  background-color: var(--color-text-light);
  margin: 0.5rem 0;
}

.contact-page-info-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-page-info-section-title {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
}

.contact-page-info-section-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .contact-page-main {
    padding: 4rem 2rem;
  }

  .contact-page-form-wrapper,
  .contact-page-info-wrapper {
    flex: 1 1 auto;
  }
}

@media (min-width: 1024px) {
  .contact-page-main {
    padding: 5rem 2rem;
  }

  .contact-page-info-box {
    padding: 2.5rem;
  }
}

@media (max-width: 767px) {
  .contact-page-form {
    gap: 1rem;
  }

  .contact-page-info-box {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .contact-page-info-item {
    gap: 1rem;
  }

  .contact-page-info-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}