
    @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-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-secondary: #f59e0b;
  
  
  --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;
  
  
  --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);
  
  
  --z-dropdown: 100;
  --z-sticky: 500;
  --z-modal: 1000;
  --z-tooltip: 1100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

section.py-sm {
  padding: var(--space-xl) 0;
}

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

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

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid rgba(13, 148, 136, 0.08);
}

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

.card-sm {
  padding: var(--space-md);
  border-radius: var(--radius-md);
}

.card-lg {
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
}

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

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 8px 16px rgba(13, 148, 136, 0.2);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: #f08c00;
  box-shadow: 0 8px 16px rgba(245, 158, 11, 0.2);
  transform: translateY(-2px);
}

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

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

.btn-light {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.btn-light:hover {
  background: var(--color-bg-tertiary);
  border-color: var(--color-primary);
}

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

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

.btn-block {
  width: 100%;
}

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

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

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

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

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

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

.flex {
  display: flex;
}

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

.flex-wrap {
  flex-wrap: wrap;
}

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

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary {
  background: rgba(13, 148, 136, 0.1);
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

.animate-slide-up {
  animation: slideUp 0.6s ease-out;
}

.animate-slide-down {
  animation: slideDown 0.6s ease-out;
}

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

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

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

@media (max-width: 768px) {
  :root {
    font-size: 14px;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  section {
    padding: var(--space-2xl) 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }
  
  .btn {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
  }
  
  .card {
    padding: var(--space-md);
  }
}

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

@media (prefers-color-scheme: light) {
  :root {
    color-scheme: light;
  }
}

@media print {
  body {
    background: #ffffff;
  }
  
  .no-print {
    display: none;
  }
}
.header-cms-forge {
  background: var(--color-bg-primary);
  border-bottom: 2px solid var(--color-secondary);
  position: relative;
  z-index: var(--z-sticky);
}

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

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

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

.header-cms-forge-logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin-right: 0.25rem;
  flex-shrink: 0;
}

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

.header-cms-forge-desktop-nav {
  display: none;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  flex: 1;
  margin-left: clamp(2rem, 5vw, 4rem);
}

.header-cms-forge-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 0.25rem;
}

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

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

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

.header-cms-forge-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

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

.header-cms-forge-mobile-toggle-line {
  width: 24px;
  height: 3px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

.header-cms-forge-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  padding: clamp(1rem, 4vw, 2rem);
  gap: clamp(1.5rem, 3vw, 2rem);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.3s ease;
  z-index: calc(var(--z-sticky) - 1);
}

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

.header-cms-forge-mobile-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.header-cms-forge-mobile-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text-primary);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

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

.header-cms-forge-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.header-cms-forge-mobile-link {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-secondary);
  transition: all 0.3s ease;
}

.header-cms-forge-mobile-link:hover {
  color: var(--color-primary);
  padding-left: 0.5rem;
}

.header-cms-forge-mobile-cta {
  padding: 1rem 1.5rem;
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: auto;
}

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

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

  .header-cms-forge-mobile-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
    gap: 0;
    flex-direction: row;
    align-items: center;
    z-index: auto;
  }

  .header-cms-forge-mobile-header {
    display: none;
  }

  .header-cms-forge-mobile-links {
    display: none;
  }

  .header-cms-forge-mobile-cta {
    display: none;
  }

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

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

@media (max-width: 767px) {
  .header-cms-forge-container {
    height: 60px;
  }

  .header-cms-forge-logo-text {
    font-size: 1.125rem;
  }
}

    .cms-wordpress-hub {
  width: 100%;
  overflow-x: hidden;
}

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

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

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

.hero-text-index {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-index {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-index {
  color: #cbd5e1;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  margin: 0;
}

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

.hero-image-index {
  flex: 1 1 45%;
  min-height: 350px;
  max-height: 500px;
  overflow: hidden;
  border-radius: 16px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(13, 148, 136, 0.25);
}

.btn-secondary {
  background: #f59e0b;
  color: #ffffff;
}

.btn-secondary:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(245, 158, 11, 0.25);
}

.btn-outline {
  background: transparent;
  color: #0d9488;
  border: 2px solid #0d9488;
}

.btn-outline:hover {
  background: #0d9488;
  color: #ffffff;
}

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

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

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

.statistics-title-index {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.statistics-text-index {
  color: #94a3b8;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  margin: 0;
}

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

.stat-card-index {
  flex: 1 1 calc(25% - 1.5rem);
  min-width: 200px;
  max-width: 280px;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(100, 116, 139, 0.3);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card-index:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(13, 148, 136, 0.5);
  transform: translateY(-4px);
}

.stat-number-index {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0d9488;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label-index {
  display: block;
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.stat-description-index {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.5;
  margin: 0;
}

.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, 3rem);
}

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

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

.features-subtitle-index {
  color: #64748b;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  margin: 0;
}

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

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

.feature-card-index:hover {
  background: #ffffff;
  border-color: #0d9488;
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.1);
  transform: translateY(-4px);
}

.feature-icon-index {
  width: 50px;
  height: 50px;
  background: rgba(13, 148, 136, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #0d9488;
}

.feature-title-index {
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.feature-text-index {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

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

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

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

.process-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.process-subtitle-index {
  color: #64748b;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  margin: 0;
}

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

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

.step-number-index {
  flex: 0 0 auto;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
  min-width: 80px;
}

.step-content-index {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-index {
  color: #0f172a;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  margin: 0;
}

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

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

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

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

.blog-tag-index {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(13, 148, 136, 0.15);
  color: #5eead4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog-title-index {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin: 0 0 clamp(0.5rem, 1vw, 1rem) 0;
}

.blog-subtitle-index {
  color: #cbd5e1;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  margin: 0;
}

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

.featured-card-index {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 400px;
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(100, 116, 139, 0.3);
}

.featured-card-link-index:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 148, 136, 0.5);
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.15);
}

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

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

.featured-card-title-index {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.featured-card-text-index {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.featured-card-cta-index {
  color: #0d9488;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.featured-card-link-index:hover .featured-card-cta-index {
  transform: translateX(4px);
}

.blog-footer-index {
  text-align: center;
  margin-top: 1rem;
}

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

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

.about-text-index {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.about-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin: 0;
  line-height: 1.2;
}

.about-description-index {
  color: #64748b;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  margin: 0;
}

.about-image-index {
  flex: 1 1 45%;
  min-height: 300px;
  max-height: 450px;
  overflow: hidden;
  border-radius: 16px;
}

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

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

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

.cta-box-index {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 16px;
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.cta-title-index {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  line-height: 1.2;
}

.cta-text-index {
  color: #e0f2f1;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  margin: 0 0 clamp(1.5rem, 3vw, 2rem) 0;
}

.cookie-banner-index {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1e293b;
  padding: clamp(1rem, 3vw, 1.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
  border-top: 1px solid rgba(100, 116, 139, 0.3);
}

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

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

.cookie-banner-buttons-index {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

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

.cookie-btn-decline-index {
  padding: 0.625rem 1.5rem;
  background: transparent;
  color: #cbd5e1;
  border: 1px solid rgba(100, 116, 139, 0.5);
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-decline-index:hover {
  border-color: rgba(100, 116, 139, 0.8);
  color: #f1f5f9;
}

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

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

  .hero-image-index {
    flex: 1 1 100%;
    min-height: 300px;
  }

  .feature-card-index {
    flex: 1 1 calc(50% - 1.5rem);
  }

  .featured-card-index {
    flex: 1 1 calc(50% - 1.5rem);
  }

  .about-content-index {
    flex-direction: column;
  }

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

  .about-image-index {
    flex: 1 1 100%;
    min-height: 280px;
  }

  .process-step-index {
    flex-direction: column;
    gap: 1rem;
  }

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

@media (max-width: 768px) {
  .statistics-cards-index {
    gap: 1rem;
  }

  .stat-card-index {
    flex: 1 1 calc(50% - 1rem);
    min-width: 150px;
    max-width: none;
  }

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

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

  .cookie-banner-index {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-text-index {
    flex: 1 1 100%;
    min-width: auto;
  }

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

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

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

  .btn {
    width: 100%;
  }

  .stat-card-index {
    flex: 1 1 100%;
  }

  .process-step-index {
    padding-left: 0;
  }

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

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

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

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

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

.footer-content {
  display: block;
}

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

.footer-about h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

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

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

.footer-column {
  flex: 1 1 220px;
  display: block;
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-nav a:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

.footer-contact {
  display: block;
}

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

.footer-legal {
  margin-bottom: clamp(2.5rem, 5vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 2.5rem);
  border-bottom: 1px solid #e7d5c1;
}

.footer-legal h4 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal-nav a {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-copyright {
  display: block;
  text-align: center;
}

.footer-copyright p {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-text-muted);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

  .footer-column {
    flex: 1 1 100%;
  }

  .footer-legal-nav {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-legal-nav a {
    display: block;
  }
}
    

.category-page-cms-wordpress-design {
  background: #fffbeb;
}

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

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

.hero-header-cms-wordpress-design {
  text-align: center;
}

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

.hero-subtitle-cms-wordpress-design {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 500;
  margin-bottom: 0;
}

.hero-description-cms-wordpress-design {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 700px;
  margin: 0 auto;
}

.hero-text-cms-wordpress-design {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 0;
}

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

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

.posts-header-cms-wordpress-design {
  text-align: center;
}

.posts-title-cms-wordpress-design {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.posts-subtitle-cms-wordpress-design {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: 0;
}

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

.card-cms-wordpress-design {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex: 1 1 300px;
  max-width: 400px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card-cms-wordpress-design:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(13, 148, 136, 0.15);
  border-color: rgba(13, 148, 136, 0.2);
}

.card-cms-wordpress-design img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.card-title-cms-wordpress-design {
  color: #0f172a;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.card-description-cms-wordpress-design {
  color: #64748b;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.card-meta-cms-wordpress-design {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  padding-top: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.card-reading-time-cms-wordpress-design,
.card-level-cms-wordpress-design,
.card-date-cms-wordpress-design {
  color: #94a3b8;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-reading-time-cms-wordpress-design i,
.card-level-cms-wordpress-design i,
.card-date-cms-wordpress-design i {
  color: #0d9488;
  font-size: 0.9em;
}

.card-link-cms-wordpress-design {
  color: #0d9488;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.2vw, 1rem);
  text-decoration: none;
  display: inline-block;
  margin-top: auto;
  transition: all 0.3s ease;
  padding-top: clamp(0.5rem, 1vw, 1rem);
}

.card-link-cms-wordpress-design:hover {
  color: #0f766e;
  transform: translateX(4px);
}

.insights-section-cms-wordpress-design {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.insights-content-cms-wordpress-design {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.insights-header-cms-wordpress-design {
  text-align: center;
}

.insights-title-cms-wordpress-design {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 0;
}

.insights-quote-cms-wordpress-design {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem);
  background: #ffffff;
  border-left: 4px solid #0d9488;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.quote-text-cms-wordpress-design {
  margin-bottom: 0;
}

.quote-body-cms-wordpress-design {
  color: #334155;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.quote-author-cms-wordpress-design {
  color: #64748b;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-style: normal;
  margin-bottom: 0;
}

.insights-body-cms-wordpress-design {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto;
}

.insights-text-cms-wordpress-design {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 0;
}

.guidelines-section-cms-wordpress-design {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.guidelines-content-cms-wordpress-design {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.guidelines-header-cms-wordpress-design {
  text-align: center;
}

.guidelines-title-cms-wordpress-design {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.guidelines-subtitle-cms-wordpress-design {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: 0;
}

.guidelines-steps-cms-wordpress-design {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.step-cms-wordpress-design {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex: 1 1 260px;
  max-width: 320px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(13, 148, 136, 0.08);
  border: 1px solid rgba(13, 148, 136, 0.15);
  border-radius: 12px;
  text-align: center;
}

.step-number-cms-wordpress-design {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d9488;
  color: #ffffff;
  font-size: clamp(1.5rem, 2vw, 1.75rem);
  font-weight: 700;
  border-radius: 50%;
}

.step-title-cms-wordpress-design {
  color: #ffffff;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.step-text-cms-wordpress-design {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .card-cms-wordpress-design {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-cms-wordpress-design {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .insights-quote-cms-wordpress-design {
    max-width: 100%;
  }

  .insights-body-cms-wordpress-design {
    max-width: 100%;
  }

  .hero-description-cms-wordpress-design {
    max-width: 100%;
  }

  .guidelines-steps-cms-wordpress-design {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .card-meta-cms-wordpress-design {
    gap: 0.75rem;
  }

  .step-cms-wordpress-design {
    text-align: left;
  }

  .step-number-cms-wordpress-design {
    margin: 0;
  }

  .guidelines-header-cms-wordpress-design {
    text-align: left;
  }

  .insights-header-cms-wordpress-design {
    text-align: left;
  }

  .posts-header-cms-wordpress-design {
    text-align: left;
  }

  .hero-header-cms-wordpress-design {
    text-align: left;
  }
}

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

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

.main-wordpress-thema-selectie {
  background: #0a0f1e;
  color: #ffffff;
  overflow: hidden;
}

.main-wordpress-thema-selectie * {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-section-wordpress-thema-selectie {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f1729 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.breadcrumbs-wordpress-thema-selectie a {
  color: #14b8a6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-wordpress-thema-selectie a:hover {
  color: #2dd4bf;
  text-decoration: underline;
}

.breadcrumbs-wordpress-thema-selectie span {
  color: #64748b;
}

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

.hero-text-block-wordpress-thema-selectie {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-wordpress-thema-selectie {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Playfair Display', serif;
}

.hero-subtitle-wordpress-thema-selectie {
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  color: #a0aec0;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-meta-wordpress-thema-selectie {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(20, 184, 166, 0.2);
}

.meta-item-wordpress-thema-selectie {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #cbd5e1;
}

.meta-item-wordpress-thema-selectie i {
  color: #14b8a6;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
}

.hero-image-block-wordpress-thema-selectie {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-wordpress-thema-selectie {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: clamp(0.75rem, 1.5vw, 1.25rem);
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 40px rgba(20, 184, 166, 0.15);
}

@media (max-width: 768px) {
  .hero-content-wordpress-thema-selectie {
    flex-direction: column;
  }
  
  .hero-text-block-wordpress-thema-selectie,
  .hero-image-block-wordpress-thema-selectie {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-meta-wordpress-thema-selectie {
    flex-direction: column;
    gap: 1rem;
  }
}

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

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

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

.intro-text-block-wordpress-thema-selectie {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-paragraph-wordpress-thema-selectie {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-block-wordpress-thema-selectie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-wordpress-thema-selectie {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: clamp(0.75rem, 1.5vw, 1.25rem);
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-wordpress-thema-selectie {
    flex-direction: column;
  }
  
  .intro-text-block-wordpress-thema-selectie,
  .intro-image-block-wordpress-thema-selectie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.features-header-wordpress-thema-selectie {
  text-align: center;
}

.features-title-wordpress-thema-selectie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  font-family: 'Playfair Display', serif;
}

.features-subtitle-wordpress-thema-selectie {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #a0aec0;
  line-height: 1.6;
}

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

.feature-card-wordpress-thema-selectie {
  flex: 1 1 calc(50% - 0.75rem);
  max-width: 350px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: clamp(0.75rem, 1.5vw, 1.25rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: all 0.3s ease;
}

.feature-card-wordpress-thema-selectie:hover {
  transform: translateY(-6px);
  background: rgba(20, 184, 166, 0.1);
  border-color: rgba(20, 184, 166, 0.4);
  box-shadow: 0 15px 40px rgba(20, 184, 166, 0.2);
}

.card-icon-wordpress-thema-selectie {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #14b8a6;
}

.card-title-wordpress-thema-selectie {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.card-text-wordpress-thema-selectie {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .feature-card-wordpress-thema-selectie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.customization-section-wordpress-thema-selectie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.customization-wrapper-wordpress-thema-selectie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.customization-text-wordpress-thema-selectie {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.customization-paragraph-wordpress-thema-selectie {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.customization-image-wordpress-thema-selectie {
  flex: 1 1 50%;
  max-width: 50%;
}

.customization-image-wordpress-thema-selectie {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: clamp(0.75rem, 1.5vw, 1.25rem);
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .customization-wrapper-wordpress-thema-selectie {
    flex-direction: column;
  }
  
  .customization-text-wordpress-thema-selectie,
  .customization-image-wordpress-thema-selectie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.implementation-section-wordpress-thema-selectie {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.implementation-header-wordpress-thema-selectie {
  text-align: center;
}

.implementation-title-wordpress-thema-selectie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  font-family: 'Playfair Display', serif;
}

.implementation-subtitle-wordpress-thema-selectie {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #a0aec0;
  line-height: 1.6;
}

.steps-grid-wordpress-thema-selectie {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.step-card-wordpress-thema-selectie {
  flex: 1 1 calc(50% - 0.75rem);
  max-width: 380px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: clamp(0.75rem, 1.5vw, 1.25rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.step-number-wordpress-thema-selectie {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #14b8a6;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.step-title-wordpress-thema-selectie {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.step-text-wordpress-thema-selectie {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

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

.implementation-quote-wordpress-thema-selectie {
  text-align: center;
  margin-top: clamp(1rem, 2vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(20, 184, 166, 0.08);
  border-left: 4px solid #14b8a6;
  border-radius: clamp(0.5rem, 1vw, 0.75rem);
}

.quote-text-wordpress-thema-selectie {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-style: italic;
  color: #a0aec0;
  line-height: 1.8;
  font-family: 'Playfair Display', serif;
}

.comparison-section-wordpress-thema-selectie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.comparison-wrapper-wordpress-thema-selectie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.comparison-text-wordpress-thema-selectie {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.comparison-paragraph-wordpress-thema-selectie {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.comparison-image-wordpress-thema-selectie {
  flex: 1 1 50%;
  max-width: 50%;
}

.comparison-image-wordpress-thema-selectie {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: clamp(0.75rem, 1.5vw, 1.25rem);
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .comparison-wrapper-wordpress-thema-selectie {
    flex-direction: column;
  }
  
  .comparison-text-wordpress-thema-selectie,
  .comparison-image-wordpress-thema-selectie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-wordpress-thema-selectie {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-content-wordpress-thema-selectie {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-wordpress-thema-selectie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-family: 'Playfair Display', serif;
}

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

.cta-box-wordpress-thema-selectie {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(45, 212, 191, 0.08));
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: clamp(0.75rem, 1.5vw, 1.25rem);
  padding: clamp(2rem, 4vw, 3.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.cta-title-wordpress-thema-selectie {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-family: 'Playfair Display', serif;
}

.cta-text-wordpress-thema-selectie {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #a0aec0;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.disclaimer-section-wordpress-thema-selectie {
  background: #ffffff;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

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

.disclaimer-content-wordpress-thema-selectie {
  max-width: 900px;
  margin: 0 auto;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #0f766e;
  border-radius: clamp(0.5rem, 1vw, 0.75rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.disclaimer-title-wordpress-thema-selectie {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-wordpress-thema-selectie {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: #475569;
  line-height: 1.8;
}

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

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

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

.related-title-wordpress-thema-selectie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

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

.related-card-wordpress-thema-selectie {
  flex: 1 1 calc(33.333% - 1rem);
  max-width: 380px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: clamp(0.75rem, 1.5vw, 1.25rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.related-card-wordpress-thema-selectie:hover {
  transform: translateY(-6px);
  background: rgba(20, 184, 166, 0.08);
  border-color: rgba(20, 184, 166, 0.4);
  box-shadow: 0 15px 40px rgba(20, 184, 166, 0.15);
}

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

.related-image-wordpress-thema-selectie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-wordpress-thema-selectie:hover .related-image-wordpress-thema-selectie img {
  transform: scale(1.05);
}

.related-text-wordpress-thema-selectie {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  flex: 1;
}

.related-card-title-wordpress-thema-selectie {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  font-family: 'Playfair Display', serif;
}

.related-card-description-wordpress-thema-selectie {
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  color: #cbd5e1;
  line-height: 1.6;
  flex: 1;
}

.related-link-wordpress-thema-selectie {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: #14b8a6;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-top: clamp(0.5rem, 1vw, 0.75rem);
}

.related-link-wordpress-thema-selectie:hover {
  color: #2dd4bf;
  transform: translateX(4px);
}

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

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

@media (max-width: 480px) {
  .hero-section-wordpress-thema-selectie {
    padding: 2rem 0;
  }
  
  .hero-title-wordpress-thema-selectie {
    font-size: 1.5rem;
  }
  
  .breadcrumbs-wordpress-thema-selectie {
    font-size: 0.7rem;
  }
  
  .meta-item-wordpress-thema-selectie {
    font-size: 0.75rem;
  }
  
  .feature-card-wordpress-thema-selectie,
  .step-card-wordpress-thema-selectie {
    padding: 1.25rem;
  }
  
  .cta-box-wordpress-thema-selectie {
    padding: 1.5rem;
  }
  
  .disclaimer-content-wordpress-thema-selectie {
    padding: 1.25rem;
  }
}

.main-wordpress-plugins-essentieel {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

.breadcrumbs-wordpress-plugins-essentieel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-wordpress-plugins-essentieel a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-wordpress-plugins-essentieel a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-wordpress-plugins-essentieel span {
  color: var(--color-text-muted);
}

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

.hero-wrapper-wordpress-plugins-essentieel {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-content-wordpress-plugins-essentieel {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-wordpress-plugins-essentieel {
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle-wordpress-plugins-essentieel {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-wordpress-plugins-essentieel {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
}

.meta-item-wordpress-plugins-essentieel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.875rem;
}

.meta-item-wordpress-plugins-essentieel i {
  color: var(--color-primary);
}

.hero-image-wordpress-plugins-essentieel {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-wordpress-plugins-essentieel {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: block;
}

@media (max-width: 768px) {
  .hero-wrapper-wordpress-plugins-essentieel {
    flex-direction: column;
  }

  .hero-content-wordpress-plugins-essentieel,
  .hero-image-wordpress-plugins-essentieel {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-wordpress-plugins-essentieel {
    gap: 1.5rem;
  }
}

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

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

.intro-text-wordpress-plugins-essentieel {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-wordpress-plugins-essentieel {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.intro-paragraph-wordpress-plugins-essentieel {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-wordpress-plugins-essentieel {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-wordpress-plugins-essentieel {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

@media (max-width: 768px) {
  .intro-content-wordpress-plugins-essentieel {
    flex-direction: column;
  }

  .intro-text-wordpress-plugins-essentieel,
  .intro-image-wordpress-plugins-essentieel {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.categories-section-wordpress-plugins-essentieel {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.categories-content-wordpress-plugins-essentieel {
  display: flex;
  flex-direction: column;
}

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

.categories-title-wordpress-plugins-essentieel {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.categories-subtitle-wordpress-plugins-essentieel {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
}

.categories-grid-wordpress-plugins-essentieel {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.category-card-wordpress-plugins-essentieel {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 148, 136, 0.1);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.card-number-wordpress-plugins-essentieel {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1;
}

.card-title-wordpress-plugins-essentieel {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-text-wordpress-plugins-essentieel {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-list-wordpress-plugins-essentieel {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.list-item-wordpress-plugins-essentieel {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  padding-left: 1.5rem;
  position: relative;
}

.list-item-wordpress-plugins-essentieel::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

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

.selection-content-wordpress-plugins-essentieel {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.selection-text-wordpress-plugins-essentieel {
  flex: 1 1 50%;
  max-width: 50%;
}

.selection-title-wordpress-plugins-essentieel {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.selection-paragraph-wordpress-plugins-essentieel {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.checklist-wordpress-plugins-essentieel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checklist-item-wordpress-plugins-essentieel {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.check-icon-wordpress-plugins-essentieel {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.1);
  color: var(--color-primary);
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.125rem;
}

.check-content-wordpress-plugins-essentieel {
  flex: 1;
}

.check-title-wordpress-plugins-essentieel {
  color: var(--color-text-primary);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.check-text-wordpress-plugins-essentieel {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.selection-image-wordpress-plugins-essentieel {
  flex: 1 1 50%;
  max-width: 50%;
}

.selection-img-wordpress-plugins-essentieel {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

@media (max-width: 768px) {
  .selection-content-wordpress-plugins-essentieel {
    flex-direction: column;
  }

  .selection-text-wordpress-plugins-essentieel,
  .selection-image-wordpress-plugins-essentieel {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.recommendations-section-wordpress-plugins-essentieel {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.recommendations-content-wordpress-plugins-essentieel {
  display: flex;
  flex-direction: column;
}

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

.recommendations-title-wordpress-plugins-essentieel {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.recommendations-subtitle-wordpress-plugins-essentieel {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
}

.recs-list-wordpress-plugins-essentieel {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.rec-block-wordpress-plugins-essentieel {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.rec-block-wordpress-plugins-essentieel:nth-child(even) {
  flex-direction: row-reverse;
}

.rec-text-wordpress-plugins-essentieel {
  flex: 1 1 50%;
  max-width: 50%;
}

.rec-category-wordpress-plugins-essentieel {
  color: var(--color-text-primary);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.rec-description-wordpress-plugins-essentieel {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.rec-highlight-wordpress-plugins-essentieel {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  padding: 1.25rem;
  background: rgba(13, 148, 136, 0.05);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.rec-image-wordpress-plugins-essentieel {
  flex: 1 1 50%;
  max-width: 50%;
}

.rec-img-wordpress-plugins-essentieel {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

@media (max-width: 768px) {
  .rec-block-wordpress-plugins-essentieel,
  .rec-block-wordpress-plugins-essentieel:nth-child(even) {
    flex-direction: column;
  }

  .rec-text-wordpress-plugins-essentieel,
  .rec-image-wordpress-plugins-essentieel {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.mistakes-content-wordpress-plugins-essentieel {
  display: flex;
  flex-direction: column;
}

.mistakes-title-wordpress-plugins-essentieel {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  text-align: center;
  margin-bottom: 1rem;
}

.mistakes-intro-wordpress-plugins-essentieel {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.mistake-card-wordpress-plugins-essentieel {
  flex: 1 1 280px;
  max-width: 320px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 148, 136, 0.1);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mistake-card-wordpress-plugins-essentieel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #f59e0b;
}

.mistake-number-wordpress-plugins-essentieel {
  font-size: 2.5rem;
  font-weight: 800;
  color: #f59e0b;
  margin-bottom: 1rem;
  line-height: 1;
}

.mistake-title-wordpress-plugins-essentieel {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.mistake-text-wordpress-plugins-essentieel {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

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

.conclusion-content-wordpress-plugins-essentieel {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-wordpress-plugins-essentieel {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.conclusion-text-wordpress-plugins-essentieel {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.conclusion-quote-wordpress-plugins-essentieel {
  background: rgba(13, 148, 136, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  margin: 2rem 0;
  font-style: italic;
}

.quote-text-wordpress-plugins-essentieel {
  color: #e2e8f0;
  font-size: clamp(0.9375rem, 1.2vw, 1.25rem);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quote-author-wordpress-plugins-essentieel {
  color: #94a3b8;
  font-size: 0.875rem;
  display: block;
  font-style: normal;
}

.conclusion-closing-wordpress-plugins-essentieel {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.8;
}

.disclaimer-section-wordpress-plugins-essentieel {
  background: var(--color-bg-tertiary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(13, 148, 136, 0.1);
}

.disclaimer-content-wordpress-plugins-essentieel {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-wordpress-plugins-essentieel {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-wordpress-plugins-essentieel {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.related-section-wordpress-plugins-essentieel {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-wordpress-plugins-essentieel {
  display: flex;
  flex-direction: column;
}

.related-title-wordpress-plugins-essentieel {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  text-align: center;
  margin-bottom: 0.75rem;
}

.related-subtitle-wordpress-plugins-essentieel {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.related-card-wordpress-plugins-essentieel {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.related-card-wordpress-plugins-essentieel:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.related-image-wordpress-plugins-essentieel {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f0f0f0;
}

.related-image-wordpress-plugins-essentieel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-wordpress-plugins-essentieel:hover .related-image-wordpress-plugins-essentieel img {
  transform: scale(1.05);
}

.related-info-wordpress-plugins-essentieel {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.related-card-title-wordpress-plugins-essentieel {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.related-card-text-wordpress-plugins-essentieel {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .related-cards-wordpress-plugins-essentieel {
    flex-direction: column;
  }

  .related-card-wordpress-plugins-essentieel {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-meta-wordpress-plugins-essentieel {
    flex-direction: column;
    gap: 1rem;
  }

  .checklist-item-wordpress-plugins-essentieel {
    gap: 1rem;
  }

  .check-icon-wordpress-plugins-essentieel {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .category-card-wordpress-plugins-essentieel,
  .mistake-card-wordpress-plugins-essentieel,
  .related-card-wordpress-plugins-essentieel {
    transition: none;
  }
}

.main-wordpress-seo-fundamentals {
width: 100%;
background: var(--color-bg-primary);
overflow-x: hidden;
}

.hero-section-wordpress-seo-fundamentals {
background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
padding: clamp(2rem, 8vw, 4rem) 0;
overflow: hidden;
border-bottom: 1px solid rgba(13, 148, 136, 0.08);
}

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

.hero-text-wrapper-wordpress-seo-fundamentals {
flex: 1 1 50%;
max-width: 50%;
}

.hero-title-wordpress-seo-fundamentals {
font-size: clamp(2rem, 5vw, 3.5rem);
color: #1c1917;
margin-bottom: var(--space-md);
font-weight: 700;
line-height: 1.2;
word-wrap: break-word;
overflow-wrap: break-word;
}

.hero-subtitle-wordpress-seo-fundamentals {
font-size: clamp(1rem, 2vw, 1.25rem);
color: #57534e;
margin-bottom: var(--space-lg);
line-height: 1.6;
}

.hero-meta-wordpress-seo-fundamentals {
display: flex;
flex-direction: row;
gap: var(--space-sm);
align-items: center;
margin-bottom: var(--space-md);
}

.meta-item-wordpress-seo-fundamentals {
font-size: 0.875rem;
color: #57534e;
font-weight: 500;
}

.meta-divider-wordpress-seo-fundamentals {
color: #a8a29e;
}

.breadcrumbs-wordpress-seo-fundamentals {
display: flex;
flex-direction: row;
gap: var(--space-sm);
align-items: center;
margin-bottom: var(--space-lg);
font-size: 0.875rem;
}

.breadcrumbs-wordpress-seo-fundamentals a {
color: #0d9488;
text-decoration: none;
transition: color 0.3s ease;
}

.breadcrumbs-wordpress-seo-fundamentals a:hover {
color: #0f766e;
text-decoration: underline;
}

.breadcrumbs-wordpress-seo-fundamentals span {
color: #a8a29e;
}

.hero-image-wrapper-wordpress-seo-fundamentals {
flex: 1 1 50%;
max-width: 50%;
}

.hero-image-wordpress-seo-fundamentals {
width: 100%;
height: auto;
max-height: 400px;
object-fit: cover;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-lg);
display: block;
}

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

.hero-text-wrapper-wordpress-seo-fundamentals,
.hero-image-wrapper-wordpress-seo-fundamentals {
flex: 1 1 100%;
max-width: 100%;
}

.hero-title-wordpress-seo-fundamentals {
font-size: 1.75rem;
}

.hero-subtitle-wordpress-seo-fundamentals {
font-size: 1rem;
}
}

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

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

.intro-text-wordpress-seo-fundamentals {
flex: 1 1 50%;
max-width: 50%;
}

.intro-title-wordpress-seo-fundamentals {
font-size: clamp(1.75rem, 4vw, 2.75rem);
color: #1c1917;
margin-bottom: var(--space-lg);
font-weight: 700;
}

.intro-paragraph-wordpress-seo-fundamentals {
font-size: clamp(0.875rem, 1vw, 1.125rem);
color: #57534e;
margin-bottom: var(--space-md);
line-height: 1.7;
}

.intro-image-wrapper-wordpress-seo-fundamentals {
flex: 1 1 50%;
max-width: 50%;
}

.intro-image-wordpress-seo-fundamentals {
width: 100%;
height: auto;
max-height: 350px;
object-fit: cover;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
display: block;
}

@media (max-width: 768px) {
.intro-content-wordpress-seo-fundamentals {
flex-direction: column;
}

.intro-text-wordpress-seo-fundamentals,
.intro-image-wrapper-wordpress-seo-fundamentals {
flex: 1 1 100%;
max-width: 100%;
}

.intro-title-wordpress-seo-fundamentals {
font-size: 1.5rem;
}

.intro-paragraph-wordpress-seo-fundamentals {
font-size: 0.95rem;
}
}

.content-one-section-wordpress-seo-fundamentals {
background: var(--color-bg-tertiary);
padding: clamp(3rem, 8vw, 5rem) 0;
overflow: hidden;
border-top: 1px solid rgba(13, 148, 136, 0.08);
border-bottom: 1px solid rgba(13, 148, 136, 0.08);
}

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

.content-one-image-wordpress-seo-fundamentals {
flex: 1 1 50%;
max-width: 50%;
}

.content-one-image-wordpress-seo-fundamentals {
width: 100%;
height: auto;
max-height: 350px;
object-fit: cover;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
display: block;
}

.content-one-text-wordpress-seo-fundamentals {
flex: 1 1 50%;
max-width: 50%;
}

.content-one-title-wordpress-seo-fundamentals {
font-size: clamp(1.75rem, 4vw, 2.75rem);
color: #1c1917;
margin-bottom: var(--space-lg);
font-weight: 700;
}

.content-one-paragraph-wordpress-seo-fundamentals {
font-size: clamp(0.875rem, 1vw, 1.125rem);
color: #57534e;
margin-bottom: var(--space-md);
line-height: 1.7;
}

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

.content-one-image-wordpress-seo-fundamentals,
.content-one-text-wordpress-seo-fundamentals {
flex: 1 1 100%;
max-width: 100%;
}

.content-one-title-wordpress-seo-fundamentals {
font-size: 1.5rem;
}

.content-one-paragraph-wordpress-seo-fundamentals {
font-size: 0.95rem;
}
}

.content-two-section-wordpress-seo-fundamentals {
background: var(--color-bg-primary);
padding: clamp(3rem, 8vw, 5rem) 0;
overflow: hidden;
}

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

.content-two-text-wordpress-seo-fundamentals {
flex: 1 1 50%;
max-width: 50%;
}

.content-two-title-wordpress-seo-fundamentals {
font-size: clamp(1.75rem, 4vw, 2.75rem);
color: #1c1917;
margin-bottom: var(--space-lg);
font-weight: 700;
}

.content-two-paragraph-wordpress-seo-fundamentals {
font-size: clamp(0.875rem, 1vw, 1.125rem);
color: #57534e;
margin-bottom: var(--space-md);
line-height: 1.7;
}

.content-two-image-wrapper-wordpress-seo-fundamentals {
flex: 1 1 50%;
max-width: 50%;
}

.content-two-image-wordpress-seo-fundamentals {
width: 100%;
height: auto;
max-height: 350px;
object-fit: cover;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
display: block;
}

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

.content-two-text-wordpress-seo-fundamentals,
.content-two-image-wrapper-wordpress-seo-fundamentals {
flex: 1 1 100%;
max-width: 100%;
}

.content-two-title-wordpress-seo-fundamentals {
font-size: 1.5rem;
}

.content-two-paragraph-wordpress-seo-fundamentals {
font-size: 0.95rem;
}
}

.quote-section-wordpress-seo-fundamentals {
background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
padding: clamp(3rem, 8vw, 5rem) 0;
overflow: hidden;
}

.featured-quote-wordpress-seo-fundamentals {
padding: clamp(2rem, 4vw, 3rem);
border-left: 4px solid #fef3c7;
background: rgba(255, 255, 255, 0.08);
border-radius: var(--radius-lg);
max-width: 800px;
margin: 0 auto;
}

.quote-text-wordpress-seo-fundamentals {
font-size: clamp(1.125rem, 2vw, 1.5rem);
color: #ffffff;
font-style: italic;
line-height: 1.8;
margin-bottom: var(--space-md);
font-weight: 500;
}

.quote-author-wordpress-seo-fundamentals {
font-size: clamp(0.875rem, 1vw, 1rem);
color: #fef3c7;
font-style: normal;
display: block;
}

@media (max-width: 768px) {
.featured-quote-wordpress-seo-fundamentals {
padding: 1.5rem;
}

.quote-text-wordpress-seo-fundamentals {
font-size: 1.1rem;
}
}

.content-three-section-wordpress-seo-fundamentals {
background: var(--color-bg-tertiary);
padding: clamp(3rem, 8vw, 5rem) 0;
overflow: hidden;
border-top: 1px solid rgba(13, 148, 136, 0.08);
border-bottom: 1px solid rgba(13, 148, 136, 0.08);
}

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

.content-three-image-wordpress-seo-fundamentals {
flex: 1 1 50%;
max-width: 50%;
}

.content-three-image-wordpress-seo-fundamentals {
width: 100%;
height: auto;
max-height: 350px;
object-fit: cover;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
display: block;
}

.content-three-text-wordpress-seo-fundamentals {
flex: 1 1 50%;
max-width: 50%;
}

.content-three-title-wordpress-seo-fundamentals {
font-size: clamp(1.75rem, 4vw, 2.75rem);
color: #1c1917;
margin-bottom: var(--space-lg);
font-weight: 700;
}

.content-three-paragraph-wordpress-seo-fundamentals {
font-size: clamp(0.875rem, 1vw, 1.125rem);
color: #57534e;
margin-bottom: var(--space-md);
line-height: 1.7;
}

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

.content-three-image-wordpress-seo-fundamentals,
.content-three-text-wordpress-seo-fundamentals {
flex: 1 1 100%;
max-width: 100%;
}

.content-three-title-wordpress-seo-fundamentals {
font-size: 1.5rem;
}

.content-three-paragraph-wordpress-seo-fundamentals {
font-size: 0.95rem;
}
}

.strategy-section-wordpress-seo-fundamentals {
background: var(--color-bg-primary);
padding: clamp(3rem, 8vw, 5rem) 0;
overflow: hidden;
}

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

.strategy-title-wordpress-seo-fundamentals {
font-size: clamp(1.75rem, 4vw, 2.75rem);
color: #1c1917;
text-align: center;
margin-bottom: var(--space-lg);
font-weight: 700;
}

.strategy-steps-wordpress-seo-fundamentals {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: clamp(1.5rem, 3vw, 2.5rem);
justify-content: center;
}

.strategy-step-wordpress-seo-fundamentals {
flex: 1 1 calc(50% - var(--space-lg));
min-width: 250px;
max-width: 350px;
padding: clamp(1.5rem, 3vw, 2rem);
background: var(--color-bg-tertiary);
border-radius: var(--radius-lg);
border: 1px solid rgba(13, 148, 136, 0.08);
display: flex;
flex-direction: row;
gap: var(--space-md);
align-items: flex-start;
transition: all 0.3s ease;
}

.strategy-step-wordpress-seo-fundamentals:hover {
box-shadow: var(--shadow-md);
transform: translateY(-4px);
}

.step-number-wordpress-seo-fundamentals {
font-size: clamp(1.75rem, 3vw, 2.5rem);
font-weight: 800;
color: #0d9488;
min-width: 60px;
flex-shrink: 0;
}

.step-content-wordpress-seo-fundamentals {
flex: 1;
}

.step-title-wordpress-seo-fundamentals {
font-size: clamp(1.1rem, 2vw, 1.35rem);
color: #1c1917;
margin-bottom: var(--space-sm);
font-weight: 700;
}

.step-text-wordpress-seo-fundamentals {
font-size: clamp(0.875rem, 1vw, 1rem);
color: #57534e;
line-height: 1.6;
}

@media (max-width: 768px) {
.strategy-steps-wordpress-seo-fundamentals {
flex-direction: column;
}

.strategy-step-wordpress-seo-fundamentals {
flex: 1 1 100%;
max-width: 100%;
}

.strategy-title-wordpress-seo-fundamentals {
font-size: 1.5rem;
}
}

.conclusion-section-wordpress-seo-fundamentals {
background: linear-gradient(135deg, #fef3c7 0%, #ffffff 100%);
padding: clamp(3rem, 8vw, 5rem) 0;
overflow: hidden;
border-top: 1px solid rgba(13, 148, 136, 0.08);
}

.conclusion-content-wordpress-seo-fundamentals {
max-width: 800px;
margin: 0 auto;
}

.conclusion-title-wordpress-seo-fundamentals {
font-size: clamp(1.75rem, 4vw, 2.75rem);
color: #1c1917;
text-align: center;
margin-bottom: var(--space-lg);
font-weight: 700;
}

.conclusion-text-wordpress-seo-fundamentals {
font-size: clamp(0.875rem, 1vw, 1.125rem);
color: #57534e;
margin-bottom: var(--space-md);
line-height: 1.7;
text-align: left;
}

@media (max-width: 768px) {
.conclusion-title-wordpress-seo-fundamentals {
font-size: 1.5rem;
}

.conclusion-text-wordpress-seo-fundamentals {
font-size: 0.95rem;
}
}

.related-section-wordpress-seo-fundamentals {
background: var(--color-bg-tertiary);
padding: clamp(3rem, 8vw, 5rem) 0;
overflow: hidden;
border-top: 1px solid rgba(13, 148, 136, 0.08);
}

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

.related-title-wordpress-seo-fundamentals {
font-size: clamp(1.75rem, 4vw, 2.75rem);
color: #1c1917;
text-align: center;
margin-bottom: var(--space-lg);
font-weight: 700;
}

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

.related-card-wordpress-seo-fundamentals {
flex: 1 1 calc(33.333% - var(--space-lg));
min-width: 280px;
max-width: 380px;
background: var(--color-bg-primary);
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-md);
transition: all 0.3s ease;
border: 1px solid rgba(13, 148, 136, 0.08);
display: flex;
flex-direction: column;
}

.related-card-wordpress-seo-fundamentals:hover {
box-shadow: var(--shadow-lg);
transform: translateY(-6px);
}

.related-image-wrapper-wordpress-seo-fundamentals {
width: 100%;
height: 200px;
overflow: hidden;
background: #f3f4f6;
}

.related-card-image-wordpress-seo-fundamentals {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.related-card-text-wordpress-seo-fundamentals {
padding: var(--space-lg);
display: flex;
flex-direction: column;
gap: var(--space-md);
flex: 1;
}

.related-card-title-wordpress-seo-fundamentals {
font-size: clamp(1.1rem, 2vw, 1.35rem);
color: #1c1917;
font-weight: 700;
line-height: 1.3;
}

.related-card-description-wordpress-seo-fundamentals {
font-size: clamp(0.875rem, 1vw, 1rem);
color: #57534e;
line-height: 1.6;
flex: 1;
}

.related-card-link-wordpress-seo-fundamentals {
color: #0d9488;
font-weight: 600;
text-decoration: none;
transition: color 0.3s ease;
display: inline-block;
align-self: flex-start;
}

.related-card-link-wordpress-seo-fundamentals:hover {
color: #0f766e;
text-decoration: underline;
}

@media (max-width: 1024px) {
.related-card-wordpress-seo-fundamentals {
flex: 1 1 calc(50% - var(--space-lg));
}
}

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

.related-title-wordpress-seo-fundamentals {
font-size: 1.5rem;
}

.related-card-title-wordpress-seo-fundamentals {
font-size: 1.1rem;
}
}

.disclaimer-section-wordpress-seo-fundamentals {
background: var(--color-bg-primary);
padding: clamp(2rem, 8vw, 4rem) 0;
overflow: hidden;
border-top: 1px solid rgba(13, 148, 136, 0.08);
}

.disclaimer-content-wordpress-seo-fundamentals {
max-width: 900px;
margin: 0 auto;
padding: clamp(1.5rem, 3vw, 2rem);
background: var(--color-bg-tertiary);
border-left: 4px solid #f59e0b;
border-radius: var(--radius-lg);
}

.disclaimer-title-wordpress-seo-fundamentals {
font-size: clamp(1.1rem, 2vw, 1.35rem);
color: #1c1917;
margin-bottom: var(--space-md);
font-weight: 700;
}

.disclaimer-text-wordpress-seo-fundamentals {
font-size: clamp(0.875rem, 1vw, 1rem);
color: #57534e;
line-height: 1.7;
}

@media (max-width: 768px) {
.disclaimer-title-wordpress-seo-fundamentals {
font-size: 1rem;
}

.disclaimer-text-wordpress-seo-fundamentals {
font-size: 0.875rem;
}
}

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

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

.main-wordpress-seo-fundamentals h1,
.main-wordpress-seo-fundamentals h2,
.main-wordpress-seo-fundamentals h3 {
word-wrap: break-word;
overflow-wrap: break-word;
}
}

.main-wordpress-responsief-design {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-wordpress-responsief-design {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.hero-text-wordpress-responsief-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-wordpress-responsief-design {
  color: #1c1917;
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.15;
}

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

.hero-meta-wordpress-responsief-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.meta-item-wordpress-responsief-design {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #a8a29e;
  font-size: 0.95rem;
}

.meta-item-wordpress-responsief-design i {
  color: #0d9488;
  font-size: 1rem;
}

.hero-image-wordpress-responsief-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-wordpress-responsief-design {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.15);
}

.breadcrumbs-wordpress-responsief-design {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: 0.95rem;
  color: #a8a29e;
}

.breadcrumbs-wordpress-responsief-design a {
  color: #0d9488;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-wordpress-responsief-design a:hover {
  color: #0f766e;
  text-decoration: underline;
}

.breadcrumbs-wordpress-responsief-design span {
  color: #d6ccc7;
}

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

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

.intro-text-wordpress-responsief-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-wordpress-responsief-design {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-wordpress-responsief-design {
  color: #57534e;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.intro-image-wordpress-responsief-design {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.foundation-section-wordpress-responsief-design {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.foundation-content-wordpress-responsief-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.foundation-text-wordpress-responsief-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundation-title-wordpress-responsief-design {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.foundation-paragraph-wordpress-responsief-design {
  color: #57534e;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.foundation-paragraph-wordpress-responsief-design code {
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.9em;
}

.foundation-image-wordpress-responsief-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundation-img-wordpress-responsief-design {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.breakpoints-section-wordpress-responsief-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.breakpoints-content-wordpress-responsief-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.breakpoints-image-wordpress-responsief-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.breakpoints-img-wordpress-responsief-design {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.breakpoints-text-wordpress-responsief-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.breakpoints-title-wordpress-responsief-design {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.breakpoints-paragraph-wordpress-responsief-design {
  color: #57534e;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.images-section-wordpress-responsief-design {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.images-content-wordpress-responsief-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.images-text-wordpress-responsief-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.images-title-wordpress-responsief-design {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.images-paragraph-wordpress-responsief-design {
  color: #57534e;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.images-paragraph-wordpress-responsief-design code {
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.9em;
}

.images-visual-wordpress-responsief-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.images-visual-img-wordpress-responsief-design {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.practical-steps-section-wordpress-responsief-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.practical-steps-content-wordpress-responsief-design {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.practical-steps-title-wordpress-responsief-design {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

.step-card-wordpress-responsief-design {
  flex: 1 1 calc(50% - 1rem);
  max-width: 350px;
  background: #fffbeb;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #0d9488;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.step-card-wordpress-responsief-design:hover {
  box-shadow: 0 8px 16px rgba(13, 148, 136, 0.1);
  transform: translateY(-4px);
}

.step-number-wordpress-responsief-design {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
}

.step-title-wordpress-responsief-design {
  color: #1c1917;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin: 0;
}

.step-text-wordpress-responsief-design {
  color: #57534e;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.optimization-section-wordpress-responsief-design {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.optimization-content-wordpress-responsief-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.optimization-image-wordpress-responsief-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.optimization-img-wordpress-responsief-design {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.optimization-text-wordpress-responsief-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.optimization-title-wordpress-responsief-design {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.optimization-paragraph-wordpress-responsief-design {
  color: #57534e;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.quote-section-wordpress-responsief-design {
  background: #0d9488;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.featured-quote-wordpress-responsief-design {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 5px solid #f59e0b;
  font-style: italic;
  text-align: center;
}

.quote-text-wordpress-responsief-design {
  color: #ffffff;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.quote-author-wordpress-responsief-design {
  color: #fef3c7;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  display: block;
}

.testing-section-wordpress-responsief-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.testing-content-wordpress-responsief-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.testing-text-wordpress-responsief-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.testing-title-wordpress-responsief-design {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.testing-paragraph-wordpress-responsief-design {
  color: #57534e;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.testing-list-wordpress-responsief-design {
  list-style: none;
  padding: 0;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.list-item-wordpress-responsief-design {
  color: #57534e;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  padding-left: 1.75rem;
  position: relative;
}

.list-item-wordpress-responsief-design::before {
  content: "";
  position: absolute;
  left: 0;
  color: #0d9488;
  font-weight: bold;
  font-size: 1.2em;
}

.testing-image-wordpress-responsief-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.testing-img-wordpress-responsief-design {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.conclusion-section-wordpress-responsief-design {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.conclusion-title-wordpress-responsief-design {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
}

.conclusion-paragraph-wordpress-responsief-design {
  color: #57534e;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
}

.cta-box-wordpress-responsief-design {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
}

.cta-title-wordpress-responsief-design {
  color: #ffffff;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.cta-text-wordpress-responsief-design {
  color: #f1f5f9;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin: 0;
}

.disclaimer-section-wordpress-responsief-design {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-wordpress-responsief-design {
  max-width: 900px;
  margin: 0 auto;
  background: #fef3c7;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-wordpress-responsief-design {
  color: #1c1917;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-wordpress-responsief-design {
  color: #57534e;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

.related-section-wordpress-responsief-design {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.related-title-wordpress-responsief-design {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

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

.related-card-wordpress-responsief-design {
  flex: 1 1 calc(33.333% - 1.33rem);
  max-width: 350px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-wordpress-responsief-design:hover {
  box-shadow: 0 12px 24px rgba(13, 148, 136, 0.12);
  transform: translateY(-8px);
}

.related-image-wordpress-responsief-design {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.related-card-wordpress-responsief-design:hover .related-img-wordpress-responsief-design {
  transform: scale(1.05);
}

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

.related-card-title-wordpress-responsief-design {
  color: #1c1917;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  margin: 0;
  line-height: 1.4;
}

.related-card-description-wordpress-responsief-design {
  color: #57534e;
  font-size: clamp(0.9rem, 1.5vw, 0.95rem);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.related-link-wordpress-responsief-design {
  color: #0d9488;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  margin-top: auto;
  transition: all 0.3s ease;
}

.related-link-wordpress-responsief-design:hover {
  color: #0f766e;
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .hero-content-wordpress-responsief-design,
  .intro-content-wordpress-responsief-design,
  .foundation-content-wordpress-responsief-design,
  .breakpoints-content-wordpress-responsief-design,
  .images-content-wordpress-responsief-design,
  .optimization-content-wordpress-responsief-design,
  .testing-content-wordpress-responsief-design {
    flex-direction: column;
  }

  .hero-text-wordpress-responsief-design,
  .hero-image-wordpress-responsief-design,
  .intro-text-wordpress-responsief-design,
  .intro-image-wordpress-responsief-design,
  .foundation-text-wordpress-responsief-design,
  .foundation-image-wordpress-responsief-design,
  .breakpoints-text-wordpress-responsief-design,
  .breakpoints-image-wordpress-responsief-design,
  .images-text-wordpress-responsief-design,
  .images-visual-wordpress-responsief-design,
  .optimization-text-wordpress-responsief-design,
  .optimization-image-wordpress-responsief-design,
  .testing-text-wordpress-responsief-design,
  .testing-image-wordpress-responsief-design {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-card-wordpress-responsief-design {
    flex: 1 1 100%;
  }

  .related-card-wordpress-responsief-design {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

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

  .breadcrumbs-wordpress-responsief-design {
    font-size: 0.85rem;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
  }

  .steps-grid-wordpress-responsief-design {
    flex-direction: column;
  }

  .step-card-wordpress-responsief-design {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-wordpress-responsief-design {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-content-wordpress-responsief-design,
  .intro-content-wordpress-responsief-design,
  .foundation-content-wordpress-responsief-design,
  .breakpoints-content-wordpress-responsief-design,
  .images-content-wordpress-responsief-design,
  .optimization-content-wordpress-responsief-design,
  .testing-content-wordpress-responsief-design {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

@media (max-width: 480px) {
  .breadcrumbs-wordpress-responsief-design {
    font-size: 0.8rem;
  }

  .meta-item-wordpress-responsief-design {
    font-size: 0.85rem;
  }

  .step-number-wordpress-responsief-design {
    font-size: 2rem;
  }

  .disclaimer-content-wordpress-responsief-design {
    padding: clamp(1rem, 2vw, 1.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .step-card-wordpress-responsief-design,
  .related-card-wordpress-responsief-design,
  .related-link-wordpress-responsief-design {
    transition: none;
  }
}

.cms-web-craft-about {
  width: 100%;
  overflow: hidden;
}

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

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

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

.hero-title-about {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.2;
}

.hero-subtitle-about {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
  max-width: 600px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.stat-label-about {
  font-size: clamp(0.8rem, 1vw + 0.3rem, 0.95rem);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
  margin: clamp(1rem, 2vw, 2rem) auto 0;
}

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

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

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

.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: 0.75rem;
}

.story-title-about {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  font-family: var(--font-heading);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 1rem;
}

.story-intro-about {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.story-text-about {
  flex: 1 1 45%;
  min-width: 250px;
}

.story-text-about p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.story-visual-about {
  flex: 1 1 45%;
  min-width: 250px;
  height: 100%;
  min-height: 350px;
  border-radius: var(--radius-lg);
  display: block;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

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

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

.expertise-header-about {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.expertise-title-about {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  font-family: var(--font-heading);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 1rem;
}

.expertise-description-about {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.expertise-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 2vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.expertise-card-about:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card-icon-about {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-primary);
  display: flex;
  align-items: center;
}

.card-title-about {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-text-about {
  color: var(--color-text-secondary);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.approach-header-about {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.approach-title-about {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  font-family: var(--font-heading);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 1rem;
}

.approach-subtitle-about {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.step-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  min-width: 60px;
  text-align: center;
  flex-shrink: 0;
}

.step-content-about {
  flex: 1;
  padding-top: 0.5rem;
}

.step-title-about {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.3rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-about {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.approach-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
  box-shadow: var(--shadow-md);
}

.featured-quote-about {
  background: var(--color-bg-tertiary);
  padding: clamp(2rem, 3vw, 3rem);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
  max-width: 700px;
}

.quote-text-about {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.3rem);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-about {
  color: var(--color-primary);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  font-style: normal;
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.disclaimer-icon-about {
  font-size: 1.25rem;
  color: var(--color-primary);
}

.disclaimer-title-about {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-about {
  color: var(--color-text-secondary);
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .story-split-about {
    flex-direction: column;
  }

  .story-text-about,
  .story-visual-about {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .process-step-about {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-about {
    min-width: auto;
    text-align: left;
  }

  .hero-stats-about {
    gap: 1rem;
  }

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

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

@media (max-width: 480px) {
  .expertise-card-about {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-about {
    flex-direction: column;
    gap: 0.75rem;
  }

  .stat-number-about {
    font-size: 1.25rem;
  }
}

.portfolio-page {
  background-color: var(--color-bg-primary);
}

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

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

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

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.5;
}

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

.portfolio-projects-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

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

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

.portfolio-project-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

.portfolio-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.portfolio-project-card:hover .portfolio-project-image img {
  transform: scale(1.05);
}

.portfolio-project-content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-project-tag {
  display: inline-block;
  background-color: var(--color-secondary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-project-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
  line-height: 1.3;
}

.portfolio-project-description {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.6;
  flex: 1;
}

.portfolio-project-meta {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-bg-secondary);
  font-weight: 500;
}

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

.portfolio-cta-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: 1.3;
}

.portfolio-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-xl) 0;
  line-height: 1.6;
}

.portfolio-cta-button {
  display: inline-block;
  background-color: var(--color-secondary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--color-secondary);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-cta-button:hover {
  background-color: var(--color-text-primary);
  color: var(--color-secondary);
  border-color: var(--color-text-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-projects {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-project-image {
    height: 280px;
  }

  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-xl);
  }

  .portfolio-projects {
    padding: var(--space-3xl) var(--space-xl);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-project-card {
    flex-direction: row;
  }

  .portfolio-project-image {
    width: 40%;
    height: auto;
    min-height: 300px;
  }

  .portfolio-project-content {
    width: 60%;
  }

  .portfolio-cta {
    padding: var(--space-3xl) var(--space-xl);
  }
}

@media (min-width: 1440px) {
  .portfolio-hero-container,
  .portfolio-projects-container,
  .portfolio-cta-container {
    max-width: 1200px;
  }
}

.services-page {
  background-color: var(--color-bg-primary);
}

.services-hero {
  background-color: var(--color-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.services-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  text-align: center;
}

.services-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3rem);
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
  line-height: 1.2;
}

.services-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 400;
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) 0;
  }
}

.services-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.services-content__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.services-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .services-content {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background-color: var(--color-bg-card);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.service-card__icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}

.service-card__icon i {
  color: var(--color-bg-tertiary);
  font-size: 1.5rem;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 600;
  line-height: 1.3;
}

.service-card__description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.service-card__features li {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  padding-left: var(--space-md);
  position: relative;
  line-height: 1.5;
}

.service-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.services-cta {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.services-cta__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-3xl) 0;
  }

  .services-cta__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

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

.services-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

.services-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.services-cta__button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.0625rem);
  font-weight: 600;
  transition: all 0.3s ease;
  width: fit-content;
  text-align: center;
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

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

.services-cta__image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  height: 300px;
}

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

@media (min-width: 768px) {
  .services-cta__image {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .services-cta__image {
    height: 350px;
  }
}

: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-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-secondary: #f59e0b;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --z-dropdown: 100;
  --z-sticky: 500;
  --z-modal: 1000;
  --z-tooltip: 1100;
}

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

.policy-docs {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  padding: var(--space-lg) var(--space-sm);
}

.policy-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.policy-docs .policy-docs-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl) var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.policy-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.policy-docs .last-updated {
  color: var(--color-text-muted);
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.policy-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.policy-docs h2:first-of-type {
  margin-top: var(--space-lg);
}

.policy-docs p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

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

.policy-docs li {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.policy-docs .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  margin-top: var(--space-2xl);
  border-left: 4px solid var(--color-primary);
}

.policy-docs .contact-section h2 {
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: var(--space-lg);
}

.policy-docs .contact-section p {
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.policy-docs .contact-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

@media (min-width: 640px) {
  .policy-docs {
    padding: var(--space-xl) var(--space-md);
  }

  .policy-docs .policy-docs-content {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .policy-docs {
    padding: var(--space-2xl) var(--space-lg);
  }

  .policy-docs .policy-docs-content {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

: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-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-secondary: #f59e0b;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --z-dropdown: 100;
  --z-sticky: 500;
  --z-modal: 1000;
  --z-tooltip: 1100;
}

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

html {
  scroll-behavior: smooth;
}

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

.thank-you-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  background-color: var(--color-bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.thank-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  animation: fadeInUp 0.8s ease-out;
}

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

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.thank-icon svg {
  width: clamp(80px, 20vw, 140px);
  height: clamp(80px, 20vw, 140px);
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.5px;
}

.thank-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--color-primary);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.3px;
}

.thank-description {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.thank-next-steps {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  letter-spacing: 0.3px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.btn-large {
  padding: clamp(0.875rem, 1.5vw, 1.1rem) clamp(1.75rem, 3vw, 2.5rem);
  margin-top: var(--space-md);
}

@media (max-width: 640px) {
  .thank-section {
    padding: var(--space-lg) var(--space-sm);
    min-height: 100vh;
  }

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

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

  .btn-large {
    width: 100%;
    max-width: 400px;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .thank-section {
    padding: var(--space-2xl) var(--space-md);
  }

  .thank-content {
    gap: var(--space-xl);
  }
}

@media (min-width: 1025px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .thank-content {
    gap: var(--space-xl);
  }

  .btn-primary:hover {
    box-shadow: var(--shadow-xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-content,
  .thank-icon {
    animation: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

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

  .thank-section {
    padding: var(--space-md) var(--space-xs);
  }
}

html, body {
  height: 100%;
}

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

html {
  scroll-behavior: smooth;
}

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

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

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

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

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

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .error-wrapper {
    gap: var(--space-2xl);
  }
}

.error-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-lg) 0;
}

.error-code-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

.error-decoration {
  position: absolute;
  width: clamp(120px, 25vw, 300px);
  height: clamp(120px, 25vw, 300px);
  border: 3px solid var(--color-secondary);
  border-radius: 50%;
  opacity: 0.3;
  animation: float-decoration 6s ease-in-out infinite;
}

@keyframes float-decoration {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

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

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.2;
}

.error-description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.error-subtext {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-style: italic;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
  margin-top: var(--space-md);
}

.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-lg);
}

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

@media (min-width: 768px) {
  .btn {
    padding: calc(var(--space-sm) + 0.25rem) calc(var(--space-lg) + 0.5rem);
  }
}

.error-hint {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .error-hint {
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
  }
}

.hint-text {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.hint-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hint-list li {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  padding-left: var(--space-md);
  position: relative;
}

.hint-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .hint-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
}

@media (min-width: 1024px) {
  .error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .error-wrapper {
    gap: var(--space-3xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-decoration {
    animation: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
  
  .btn-primary:active {
    transform: none;
  }
}

.contact-page-getstarted {
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.contact-get-started-hero {
  background-color: var(--color-bg-primary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-get-started-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-get-started-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.contact-get-started-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-weight: 400;
}

@media (min-width: 768px) {
  .contact-get-started-hero {
    padding: 5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-get-started-hero {
    padding: 6rem 2rem;
  }
}

.contact-get-started-main {
  background-color: var(--color-bg-primary);
  padding: 2rem 1rem;
  overflow: hidden;
}

.contact-get-started-main-content {
  width: 100%;
}

.contact-get-started-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
}

@media (min-width: 768px) {
  .contact-get-started-grid {
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
  }

  .contact-get-started-main {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-get-started-main {
    padding: 6rem 2rem;
  }

  .contact-get-started-grid {
    gap: 5rem;
  }
}

.contact-get-started-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-get-started-form-wrapper {
    flex: 1 1 45%;
    min-width: 0;
  }
}

.contact-get-started-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-get-started-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.contact-get-started-label {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
}

.contact-get-started-input,
.contact-get-started-textarea {
  font-family: var(--font-primary);
  width: 100%;
  padding: 1rem;
  background-color: var(--color-bg-tertiary);
  border: 1.5px solid #e8e8e8;
  border-radius: var(--radius-md);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: var(--color-text-primary);
  transition: all 0.3s ease;
}

.contact-get-started-input::placeholder,
.contact-get-started-textarea::placeholder {
  color: var(--color-text-muted);
}

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

.contact-get-started-input:hover,
.contact-get-started-textarea:hover {
  border-color: var(--color-primary);
}

.contact-get-started-textarea {
  min-height: 150px;
  resize: vertical;
  font-family: var(--font-primary);
}

.contact-get-started-privacy {
  margin-top: var(--space-sm);
}

.contact-get-started-privacy-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.contact-get-started-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-get-started-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-get-started-submit {
  font-family: var(--font-primary);
  width: 100%;
  padding: 1.125rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  border: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--space-sm);
}

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

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

.contact-get-started-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-get-started-info-wrapper {
    flex: 1 1 45%;
    min-width: 0;
  }
}

.contact-get-started-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-get-started-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.contact-get-started-info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-get-started-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-get-started-info-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-get-started-info-label {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
}

.contact-get-started-info-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.contact-get-started-info-text:hover {
  color: var(--color-primary);
}

.contact-get-started-info-section {
  background-color: var(--color-bg-secondary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-top: var(--space-md);
}

.contact-get-started-info-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
}

.contact-get-started-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-get-started-benefit-item {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-primary);
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
}

.contact-get-started-benefit-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .contact-get-started-info-section {
    margin-top: 2rem;
  }
}

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

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

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