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

:root {
  --color-bg-dark-primary: #0f172a;
  --color-bg-dark-secondary: #1e293b;
  --color-bg-dark-tertiary: #334155;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  --color-text-light: #ffffff;
  --color-text-light-secondary: #cbd5e1;
  --color-text-light-muted: #94a3b8;
  --color-text-dark: #0f172a;
  --color-text-dark-secondary: #374151;
  --color-text-dark-muted: #64748b;
  
  --color-primary: #06b6d4;
  --color-primary-hover: #22d3ee;
  --color-primary-dark: #0891b2;
  --color-secondary: #f59e0b;
  --color-secondary-hover: #fbbf24;
  --color-accent: #10b981;
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
}

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

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  font-size: 1rem;
}

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

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

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

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
}

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

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

p,
li,
span {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

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

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

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

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

input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  padding: var(--space-md);
  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(6, 182, 212, 0.1);
}

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

::placeholder {
  opacity: 0.7;
}

ul,
ol {
  list-style: none;
}

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

@media (max-width: 767px) {
  .container {
    padding: 0 clamp(0.75rem, 3vw, 1.5rem);
  }
  
  h1 {
    word-break: break-word;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  h1 {
    font-size: clamp(2rem, 4vw, 3rem);
  }
  
  h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
  }
  
  h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
  }
}

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

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

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

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');

.header-creative-forge {
  position: static;
  width: 100%;
  background: var(--color-bg-dark-primary);
  border-bottom: 1px solid var(--color-bg-dark-tertiary);
  z-index: 100;
  padding: clamp(0.75rem, 2vw, 1.25rem) 0;
}

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

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

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

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

.header-creative-forge-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: -0.5px;
}

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

.header-creative-forge-nav-link {
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-light-secondary);
  text-decoration: none;
  transition: color 300ms ease-in-out;
  position: relative;
}

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

.header-creative-forge-nav-link:hover {
  color: var(--color-text-light);
}

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

.header-creative-forge-cta-button {
  display: none;
  padding: 0.625rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-text-dark);
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  flex-shrink: 0;
  white-space: nowrap;
}

.header-creative-forge-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.header-creative-forge-cta-button:active {
  transform: translateY(0);
  transition-duration: 150ms;
}

.header-creative-forge-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--color-text-light);
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 300ms ease-in-out;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
}

.header-creative-forge-mobile-toggle:hover {
  color: var(--color-primary);
}

.header-creative-forge-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-dark-primary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 300ms ease-in-out;
  z-index: 99;
  padding-top: clamp(4rem, 10vw, 6rem);
}

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

.header-creative-forge-mobile-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: clamp(0.75rem, 2vw, 1.25rem);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 1px solid var(--color-bg-dark-tertiary);
}

.header-creative-forge-mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--color-text-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

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

.header-creative-forge-mobile-link {
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1rem, 4vw, 2rem);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-light-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--color-bg-dark-tertiary);
  transition: all 300ms ease-in-out;
}

.header-creative-forge-mobile-link:hover {
  background: var(--color-bg-dark-secondary);
  color: var(--color-primary);
  padding-left: clamp(1.5rem, 5vw, 2.5rem);
}

.header-creative-forge-mobile-cta {
  margin: clamp(1rem, 3vw, 1.5rem);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  background: var(--color-primary);
  color: var(--color-text-dark);
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  text-align: center;
  display: block;
}

.header-creative-forge-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

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

  .header-creative-forge-container {
    gap: 2rem;
  }

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

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

  .header-creative-forge-mobile-toggle,
  .header-creative-forge-mobile-menu {
    display: none !important;
  }

  .header-creative-forge-logo-img {
    width: 44px;
    height: 44px;
  }

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

  .header-creative-forge-nav-link {
    font-size: 0.9375rem;
  }

  .header-creative-forge-cta-button {
    padding: 0.75rem 1.75rem;
    font-size: 0.9375rem;
  }
}

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

  .header-creative-forge-container {
    gap: 2.5rem;
  }

  .header-creative-forge-logo-img {
    width: 48px;
    height: 48px;
  }

  .header-creative-forge-logo-text {
    font-size: 1.5rem;
  }

  .header-creative-forge-desktop-nav {
    gap: 2.5rem;
  }

  .header-creative-forge-nav-link {
    font-size: 0.9375rem;
  }

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

@media (min-width: 1440px) {
  .header-creative-forge-container {
    gap: 3rem;
  }

  .header-creative-forge-desktop-nav {
    gap: 3rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  .header-creative-forge-brand,
  .header-creative-forge-nav-link,
  .header-creative-forge-cta-button,
  .header-creative-forge-mobile-toggle,
  .header-creative-forge-mobile-menu,
  .header-creative-forge-mobile-link {
    transition: none !important;
  }

  .header-creative-forge-nav-link::after {
    animation: none !important;
  }
}

.header-creative-forge-nav-link:focus-visible,
.header-creative-forge-cta-button:focus-visible,
.header-creative-forge-mobile-toggle:focus-visible,
.header-creative-forge-mobile-close:focus-visible,
.header-creative-forge-mobile-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.header-creative-forge-skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: var(--color-text-dark);
  padding: 0.5rem 1rem;
  text-decoration: none;
  z-index: 100;
  border-radius: 0 0 var(--radius-md) 0;
}

.header-creative-forge-skip-link:focus {
  top: 0;
}

    .creative-workshops-hub {
  width: 100%;
}

.hero-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1a2844 100%);
  position: relative;
  overflow: hidden;
}

.hero-glow-primary {
  position: absolute;
  top: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-glow-secondary {
  position: absolute;
  bottom: 15%;
  right: -8%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-accent-blob-1 {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.hero-accent-blob-2 {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 180px;
  height: 180px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
}

.hero-line-accent-top {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.3), transparent);
  z-index: 3;
  pointer-events: none;
}

.hero-corner-element-1 {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 8px;
  z-index: 2;
  pointer-events: none;
}

.hero-corner-element-2 {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

.hero-floating-shape {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 120px;
  height: 120px;
  background: rgba(6, 182, 212, 0.05);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 1;
  pointer-events: none;
}

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

.hero-title {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

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

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

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

.featured-glow-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.featured-glow-2 {
  position: absolute;
  bottom: 10%;
  left: -8%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.featured-shape-accent {
  position: absolute;
  top: 15%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: rgba(6, 182, 212, 0.04);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.featured-line-element {
  position: absolute;
  bottom: 30%;
  right: 10%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

.featured-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.featured-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.5rem);
}

.featured-subtitle {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.featured-cards {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.featured-card {
  flex: 1 1 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.1);
  border-color: rgba(6, 182, 212, 0.3);
}

.featured-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
}

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

.featured-card-text {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
  flex-grow: 1;
}

.featured-card-link {
  display: inline-flex;
  align-items: center;
  color: #06b6d4;
  font-weight: 600;
  text-decoration: none;
  transition: all 300ms ease;
  margin-top: 0.5rem;
}

.featured-card-link:hover {
  color: #0891b2;
  transform: translateX(4px);
}

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

.benefits-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.benefits-glow-left {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.benefits-glow-right {
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.benefits-shape-1 {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 120px;
  height: 120px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.benefits-shape-2 {
  position: absolute;
  bottom: 25%;
  left: 8%;
  width: 100px;
  height: 100px;
  background: rgba(34, 211, 238, 0.04);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

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

.benefits-text-block {
  flex: 1 1 400px;
}

.benefits-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
}

.benefits-intro {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #64748b;
  margin-bottom: clamp(2rem, 3vw, 3rem);
  line-height: 1.7;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefits-item {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.benefits-item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 10px;
  color: #06b6d4;
  font-size: 1.5rem;
}

.benefits-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefits-item-title {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  font-weight: 700;
  color: #0f172a;
}

.benefits-item-text {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

.benefits-image-block {
  flex: 1 1 350px;
}

.benefits-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

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

.process-glow-accent {
  position: absolute;
  top: 10%;
  right: -8%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.process-shape-1 {
  position: absolute;
  top: 40%;
  left: 5%;
  width: 130px;
  height: 130px;
  background: rgba(34, 211, 238, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.process-shape-2 {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 110px;
  height: 110px;
  background: rgba(6, 182, 212, 0.04);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.process-line-accent {
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

.process-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.process-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.5rem);
}

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

.process-steps {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

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

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

.process-step-title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
}

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

.features-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.features-glow-1 {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.features-glow-2 {
  position: absolute;
  bottom: 5%;
  right: -8%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.features-shape-organic {
  position: absolute;
  top: 25%;
  right: 8%;
  width: 140px;
  height: 140px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.features-accent-line {
  position: absolute;
  bottom: 30%;
  left: 10%;
  width: 180px;
  height: 1px;
  background: linear-gradient(90deg, rgba(6, 182, 212, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.features-corner-dot {
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(34, 211, 238, 0.2);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

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

.features-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.features-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.features-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.5rem);
}

.features-subtitle {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.features-card {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.features-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(6, 182, 212, 0.12);
  border-color: rgba(6, 182, 212, 0.2);
}

.features-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 12px;
  color: #06b6d4;
  font-size: 1.75rem;
}

.features-card-title {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.features-card-text {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

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

.quote-glow-soft {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.quote-accent-shape {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 100px;
  height: 100px;
  background: rgba(34, 211, 238, 0.04);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

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

.quote-block {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3.5rem);
  border-left: 4px solid #06b6d4;
  background: #f8fafc;
  border-radius: 8px;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.quote-text {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #0f172a;
  line-height: 1.8;
  margin: 0 0 1rem 0;
  font-weight: 500;
}

.quote-author {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

.quote-description {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  text-align: center;
}

.cta-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1a2844 100%);
  position: relative;
  overflow: hidden;
}

.cta-glow-primary {
  position: absolute;
  top: 20%;
  left: -8%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.cta-glow-secondary {
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.cta-shape-1 {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 120px;
  height: 120px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.cta-shape-2 {
  position: absolute;
  bottom: 20%;
  left: 8%;
  width: 100px;
  height: 100px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
}

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

.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.cta-description {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  margin-bottom: clamp(2rem, 3vw, 3rem);
  line-height: 1.7;
}

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

.contact-glow-1 {
  position: absolute;
  top: 10%;
  right: -8%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-glow-2 {
  position: absolute;
  bottom: 5%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.contact-shape-accent {
  position: absolute;
  top: 30%;
  left: 8%;
  width: 130px;
  height: 130px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

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

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

.contact-form-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
}

.contact-form-intro {
  font-size: 0.9375rem;
  color: #64748b;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.7;
}

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

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

.contact-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
}

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

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: #06b6d4;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #94a3b8;
}

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

.contact-submit {
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #06b6d4;
  color: #0f172a;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 300ms ease;
  margin-top: 0.5rem;
}

.contact-submit:hover {
  background: #0891b2;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.2);
}

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

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

.contact-info-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.contact-faq-item {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: #ffffff;
  border-radius: 8px;
  border-left: 3px solid #06b6d4;
  margin-bottom: 1rem;
}

.contact-faq-question {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.contact-faq-answer {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

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

  .contact-form-wrapper,
  .contact-info-wrapper {
    flex: 1 1 100%;
  }
}

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

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

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

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

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

.cookie-btn-accept {
  background: #06b6d4;
  color: #0f172a;
}

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

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

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

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

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

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

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

@media (min-width: 768px) {
  .hero-section {
    padding: clamp(5rem, 10vw, 10rem) 0;
  }

  .featured-section,
  .benefits-section,
  .process-section,
  .features-section,
  .quote-section,
  .cta-section,
  .contact-section {
    padding: clamp(5rem, 10vw, 10rem) 0;
  }
}

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

  .process-step-number {
    font-size: 2rem;
    min-width: auto;
  }
}

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

    .footer {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  color: var(--color-text-light-muted);
  position: relative;
  overflow: hidden;
}

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

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

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

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

.footer-about-text {
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  line-height: 1.7;
  color: var(--color-text-light-muted);
}

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

.footer-column {
  flex: 1 1 200px;
  min-width: 160px;
}

.footer-column-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.3px;
}

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

.footer-nav-link,
.footer-legal-link {
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: var(--color-text-light-muted);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  line-height: 1.5;
}

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

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

.footer-contact-item {
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: var(--color-text-light-muted);
  line-height: 1.6;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  margin: clamp(1.5rem, 4vw, 2.5rem) 0;
}

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

.footer-copyright-text {
  font-size: clamp(0.8125rem, 1.2vw, 0.875rem);
  color: var(--color-text-light-muted);
  letter-spacing: 0.3px;
}

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

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

  .footer-nav-link:hover,
  .footer-legal-link:hover {
    transform: none;
  }
}

@media (min-width: 768px) {
  .footer-content {
    gap: 3.5rem;
  }

  .footer-sections {
    gap: 3rem;
  }

  .footer-nav,
  .footer-legal {
    gap: 0.875rem;
  }

  .footer-contact {
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .footer-sections {
    gap: 4rem;
  }

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

.category-page-creatieve-workshops {
  background: #ffffff;
  color: #0f172a;
}

.hero-section-creatieve-workshops {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e2a4a 100%);
}

.hero-deco-glow-1-creatieve-workshops {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-mesh-creatieve-workshops {
  position: absolute;
  bottom: -10%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-shape-creatieve-workshops {
  position: absolute;
  top: 20%;
  left: -50px;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-deco-accent-creatieve-workshops {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: rgba(15, 23, 42, 0.3);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

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

.hero-title-creatieve-workshops {
  font-size: clamp(2.5rem, 6vw + 1rem, 4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.hero-stats-creatieve-workshops {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number-creatieve-workshops {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

.stat-label-creatieve-workshops {
  font-size: 0.875rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.hero-cta-creatieve-workshops .btn {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.hero-cta-creatieve-workshops .btn-primary {
  background: #06b6d4;
  color: #0f172a;
}

.hero-cta-creatieve-workshops .btn-primary:hover {
  background: #22d3ee;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.hero-cta-creatieve-workshops .btn-outline {
  border-color: #ffffff;
  color: #ffffff;
}

.hero-cta-creatieve-workshops .btn-outline:hover {
  background: #ffffff;
  color: #0f172a;
  transform: translateY(-3px);
}

.posts-section-creatieve-workshops {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: #f8fafc;
}

.posts-deco-line-creatieve-workshops {
  position: absolute;
  top: 20%;
  left: -100px;
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.2), transparent);
  transform: rotate(-25deg);
  z-index: 1;
  pointer-events: none;
}

.posts-deco-orb-creatieve-workshops {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.posts-header-creatieve-workshops {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.posts-tag-creatieve-workshops {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.posts-title-creatieve-workshops {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.posts-subtitle-creatieve-workshops {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.card-creatieve-workshops {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1 1 320px;
  max-width: 420px;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.card-creatieve-workshops:hover {
  transform: translateY(-8px);
  border-color: #06b6d4;
  box-shadow: 0 15px 35px rgba(6, 182, 212, 0.15);
}

.card-image-creatieve-workshops {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin: -1.25rem -1.25rem 0 -1.25rem;
}

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

.card-description-creatieve-workshops {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-creatieve-workshops {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.5rem 0;
}

.meta-badge-creatieve-workshops {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: rgba(6, 182, 212, 0.08);
  color: #06b6d4;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 500;
}

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

.card-link-creatieve-workshops {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #06b6d4;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.card-link-creatieve-workshops:hover {
  color: #0891b2;
  transform: translateX(4px);
}

.learning-path-section-creatieve-workshops {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: #ffffff;
}

.learning-deco-shape-creatieve-workshops {
  position: absolute;
  top: -50px;
  right: 10%;
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.learning-deco-glow-creatieve-workshops {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.learning-header-creatieve-workshops {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.learning-tag-creatieve-workshops {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.learning-title-creatieve-workshops {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.steps-container-creatieve-workshops {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.step-item-creatieve-workshops {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
  transition: all 0.3s ease;
}

.step-item-creatieve-workshops:hover {
  background: #f1f5f9;
  transform: translateX(4px);
}

.step-number-creatieve-workshops {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

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

.step-title-creatieve-workshops {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #0f172a;
}

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

.benefits-section-creatieve-workshops {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: #f8fafc;
}

.benefits-deco-mesh-creatieve-workshops {
  position: absolute;
  top: 15%;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.benefits-deco-accent-creatieve-workshops {
  position: absolute;
  bottom: 10%;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 50% 40% 60% 40% / 40% 50% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.benefits-header-creatieve-workshops {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.benefits-tag-creatieve-workshops {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.benefits-title-creatieve-workshops {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.benefits-subtitle-creatieve-workshops {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.featured-quote-creatieve-workshops {
  position: relative;
  z-index: 10;
  padding: clamp(2rem, 4vw, 3rem);
  margin: clamp(2rem, 4vw, 3.5rem) auto;
  max-width: 700px;
  background: #ffffff;
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.quote-author-creatieve-workshops {
  display: block;
  font-size: 0.95rem;
  color: #64748b;
  font-style: normal;
}

.benefits-grid-creatieve-workshops {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 10;
}

.benefit-card-creatieve-workshops {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 280px;
  max-width: 380px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-card-creatieve-workshops:hover {
  transform: translateY(-4px);
  border-color: #06b6d4;
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.1);
}

.benefit-icon-creatieve-workshops {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 10px;
  font-size: 1.5rem;
}

.benefit-card-title-creatieve-workshops {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.benefit-card-text-creatieve-workshops {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .posts-grid-creatieve-workshops {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

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

  .benefits-grid-creatieve-workshops {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .benefit-card-creatieve-workshops {
    flex: 1 1 100%;
    max-width: none;
  }

  .step-item-creatieve-workshops {
    flex-direction: column;
    text-align: center;
  }

  .step-number-creatieve-workshops {
    min-width: auto;
  }

  .hero-stats-creatieve-workshops {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

@media (max-width: 480px) {
  .hero-cta-creatieve-workshops {
    flex-direction: column;
  }

  .hero-cta-creatieve-workshops .btn {
    width: 100%;
  }

  .card-image-creatieve-workshops {
    height: 180px;
  }
}

.main-responsive-web-design-fundamentals {
  width: 100%;
  background: #ffffff;
}

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

.hero-section-responsive-web-design-fundamentals {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.breadcrumbs-responsive-web-design-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-responsive-web-design-fundamentals a {
  color: #0284c7;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-responsive-web-design-fundamentals a:hover {
  color: #06b6d4;
  text-decoration: underline;
}

.breadcrumbs-responsive-web-design-fundamentals span {
  color: #94a3b8;
}

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

.hero-text-wrapper-responsive-web-design-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-responsive-web-design-fundamentals {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-responsive-web-design-fundamentals {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-meta-responsive-web-design-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-responsive-web-design-fundamentals {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #0891b2;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-responsive-web-design-fundamentals i {
  font-size: 1rem;
}

.hero-stats-responsive-web-design-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item-responsive-web-design-fundamentals {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-responsive-web-design-fundamentals {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

.stat-label-responsive-web-design-fundamentals {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.hero-image-wrapper-responsive-web-design-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-responsive-web-design-fundamentals {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero-content-responsive-web-design-fundamentals {
    flex-direction: column;
  }
  
  .hero-text-wrapper-responsive-web-design-fundamentals,
  .hero-image-wrapper-responsive-web-design-fundamentals {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-stats-responsive-web-design-fundamentals {
    gap: 1.5rem;
  }
}

.introduction-section-responsive-web-design-fundamentals {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.intro-wrapper-responsive-web-design-fundamentals {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-responsive-web-design-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-responsive-web-design-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-paragraph-responsive-web-design-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-responsive-web-design-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-featured-image-responsive-web-design-fundamentals {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-wrapper-responsive-web-design-fundamentals {
    flex-direction: column;
  }
  
  .intro-text-responsive-web-design-fundamentals,
  .intro-image-responsive-web-design-fundamentals {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.principles-section-responsive-web-design-fundamentals {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f1f5f9;
  position: relative;
  overflow: hidden;
}

.section-header-responsive-web-design-fundamentals {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-responsive-web-design-fundamentals {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #0891b2;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.principles-title-responsive-web-design-fundamentals {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.principles-subtitle-responsive-web-design-fundamentals {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.principles-steps-responsive-web-design-fundamentals {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.principle-step-responsive-web-design-fundamentals {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
  transition: all 0.3s ease;
}

.principle-step-responsive-web-design-fundamentals:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

.principle-number-responsive-web-design-fundamentals {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.principle-content-responsive-web-design-fundamentals {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.principle-title-responsive-web-design-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.principle-text-responsive-web-design-fundamentals {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

@media (max-width: 768px) {
  .principle-step-responsive-web-design-fundamentals {
    padding: 1rem;
    gap: 1rem;
  }
  
  .principle-number-responsive-web-design-fundamentals {
    min-width: 50px;
  }
}

.implementation-section-responsive-web-design-fundamentals {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.impl-wrapper-responsive-web-design-fundamentals {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.impl-text-responsive-web-design-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.impl-title-responsive-web-design-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.featured-quote-responsive-web-design-fundamentals {
  padding: 1.5rem 2rem;
  border-left: 4px solid #06b6d4;
  background: #f8fafc;
  margin: 2rem 0;
  border-radius: 8px;
}

.quote-text-responsive-web-design-fundamentals {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #1e293b;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-cite-responsive-web-design-fundamentals {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.impl-paragraph-responsive-web-design-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.impl-subtitle-responsive-web-design-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.impl-image-responsive-web-design-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.impl-featured-image-responsive-web-design-fundamentals {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .impl-wrapper-responsive-web-design-fundamentals {
    flex-direction: column;
  }
  
  .impl-text-responsive-web-design-fundamentals,
  .impl-image-responsive-web-design-fundamentals {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.features-section-responsive-web-design-fundamentals {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f1f5f9;
  position: relative;
  overflow: hidden;
}

.features-title-responsive-web-design-fundamentals {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.features-subtitle-responsive-web-design-fundamentals {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.features-cards-responsive-web-design-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.features-card-responsive-web-design-fundamentals {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.features-card-responsive-web-design-fundamentals:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.features-card-icon-responsive-web-design-fundamentals {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06b6d4;
  font-size: 1.5rem;
}

.features-card-title-responsive-web-design-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.features-card-text-responsive-web-design-fundamentals {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

@media (max-width: 768px) {
  .features-card-responsive-web-design-fundamentals {
    flex: 1 1 100%;
    max-width: none;
  }
}

.techniques-section-responsive-web-design-fundamentals {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.tech-wrapper-responsive-web-design-fundamentals {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.tech-image-responsive-web-design-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.tech-featured-image-responsive-web-design-fundamentals {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.tech-text-responsive-web-design-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.tech-title-responsive-web-design-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.tech-paragraph-responsive-web-design-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.tech-subtitle-responsive-web-design-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .tech-wrapper-responsive-web-design-fundamentals {
    flex-direction: column;
  }
  
  .tech-image-responsive-web-design-fundamentals,
  .tech-text-responsive-web-design-fundamentals {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-responsive-web-design-fundamentals {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.conclusion-content-responsive-web-design-fundamentals {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-responsive-web-design-fundamentals {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.conclusion-text-responsive-web-design-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-box-responsive-web-design-fundamentals {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

.cta-title-responsive-web-design-fundamentals {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cta-text-responsive-web-design-fundamentals {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cffafe;
  margin-bottom: 1.5rem;
}

.btn-primary-responsive-web-design-fundamentals {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  color: #06b6d4;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-responsive-web-design-fundamentals:hover {
  background: #f0f9fa;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.related-section-responsive-web-design-fundamentals {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.related-header-responsive-web-design-fundamentals {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-responsive-web-design-fundamentals {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.related-subtitle-responsive-web-design-fundamentals {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
}

.related-cards-responsive-web-design-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-responsive-web-design-fundamentals {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-responsive-web-design-fundamentals:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-card-image-responsive-web-design-fundamentals {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-card-img-responsive-web-design-fundamentals {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-responsive-web-design-fundamentals {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-responsive-web-design-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-text-responsive-web-design-fundamentals {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-responsive-web-design-fundamentals {
  display: inline-flex;
  align-items: center;
  color: #06b6d4;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.related-card-link-responsive-web-design-fundamentals:hover {
  color: #0891b2;
  transform: translateX(4px);
}

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

.disclaimer-section-responsive-web-design-fundamentals {
  width: 100%;
  padding: clamp(2rem, 5vw, 4rem) 0;
  background: #f1f5f9;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-responsive-web-design-fundamentals {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
}

.disclaimer-title-responsive-web-design-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-responsive-web-design-fundamentals {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

@media (min-width: 768px) and (max-width: 1023px) {
  h1 {
    font-size: clamp(2rem, 4vw, 3rem);
  }
  
  h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
  }
  
  h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
  }
}

.main-modern-css-techniques-web-development {
  width: 100%;
}

.hero-section-modern-css-techniques-web-development {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-modern-css-techniques-web-development {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-modern-css-techniques-web-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-modern-css-techniques-web-development {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-description-modern-css-techniques-web-development {
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-meta-modern-css-techniques-web-development {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-modern-css-techniques-web-development {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #0891b2;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-modern-css-techniques-web-development i {
  color: #06b6d4;
}

.hero-image-modern-css-techniques-web-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-modern-css-techniques-web-development {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.breadcrumbs-modern-css-techniques-web-development {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  font-size: 0.9375rem;
}

.breadcrumbs-modern-css-techniques-web-development a {
  color: #06b6d4;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumbs-modern-css-techniques-web-development a:hover {
  color: #0891b2;
}

.breadcrumbs-modern-css-techniques-web-development span {
  color: #cbd5e1;
}

.breadcrumbs-modern-css-techniques-web-development span:last-child {
  color: #64748b;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-content-modern-css-techniques-web-development {
    flex-direction: column;
  }

  .hero-text-modern-css-techniques-web-development,
  .hero-image-modern-css-techniques-web-development {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-modern-css-techniques-web-development {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-modern-css-techniques-web-development {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-modern-css-techniques-web-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-modern-css-techniques-web-development {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-paragraph-modern-css-techniques-web-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-image-modern-css-techniques-web-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-modern-css-techniques-web-development {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .intro-content-modern-css-techniques-web-development {
    flex-direction: column;
  }

  .intro-text-modern-css-techniques-web-development,
  .intro-image-modern-css-techniques-web-development {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.flexbox-section-modern-css-techniques-web-development {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.section-header-modern-css-techniques-web-development {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-modern-css-techniques-web-development {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.flexbox-title-modern-css-techniques-web-development {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle-modern-css-techniques-web-development {
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.flexbox-content-modern-css-techniques-web-development {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.flexbox-text-modern-css-techniques-web-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.flexbox-paragraph-modern-css-techniques-web-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.highlight-box-modern-css-techniques-web-development {
  background: #f1f5f9;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
  margin: 1.5rem 0;
}

.highlight-title-modern-css-techniques-web-development {
  font-size: 1.125rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.highlight-list-modern-css-techniques-web-development {
  list-style: none;
  padding: 0;
}

.highlight-list-modern-css-techniques-web-development li {
  font-size: 0.95rem;
  color: #475569;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.highlight-list-modern-css-techniques-web-development li:before {
  content: "";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: bold;
}

.flexbox-image-modern-css-techniques-web-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.flexbox-img-modern-css-techniques-web-development {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .flexbox-content-modern-css-techniques-web-development {
    flex-direction: column;
  }

  .flexbox-text-modern-css-techniques-web-development,
  .flexbox-image-modern-css-techniques-web-development {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.grid-section-modern-css-techniques-web-development {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.grid-content-modern-css-techniques-web-development {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.grid-image-modern-css-techniques-web-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.grid-img-modern-css-techniques-web-development {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.grid-text-modern-css-techniques-web-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.grid-title-modern-css-techniques-web-development {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.grid-paragraph-modern-css-techniques-web-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.featured-quote-modern-css-techniques-web-development {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #06b6d4;
  background: #ffffff;
  border-radius: 8px;
  margin: 1.5rem 0;
  font-style: italic;
}

.quote-text-modern-css-techniques-web-development {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-modern-css-techniques-web-development {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  display: block;
}

@media (max-width: 768px) {
  .grid-content-modern-css-techniques-web-development {
    flex-direction: column-reverse;
  }

  .grid-image-modern-css-techniques-web-development,
  .grid-text-modern-css-techniques-web-development {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.animations-section-modern-css-techniques-web-development {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.animations-content-modern-css-techniques-web-development {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.animations-text-modern-css-techniques-web-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.animations-title-modern-css-techniques-web-development {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.animations-paragraph-modern-css-techniques-web-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.techniques-cards-modern-css-techniques-web-development {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.technique-card-modern-css-techniques-web-development {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #f1f5f9;
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
}

.card-title-modern-css-techniques-web-development {
  font-size: 1rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-text-modern-css-techniques-web-development {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.animations-image-modern-css-techniques-web-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.animations-img-modern-css-techniques-web-development {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .animations-content-modern-css-techniques-web-development {
    flex-direction: column;
  }

  .animations-text-modern-css-techniques-web-development,
  .animations-image-modern-css-techniques-web-development {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.advanced-section-modern-css-techniques-web-development {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.advanced-content-modern-css-techniques-web-development {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.advanced-image-modern-css-techniques-web-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-img-modern-css-techniques-web-development {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.advanced-text-modern-css-techniques-web-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-title-modern-css-techniques-web-development {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 2rem;
}

.steps-container-modern-css-techniques-web-development {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-modern-css-techniques-web-development {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
}

.step-number-modern-css-techniques-web-development {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #06b6d4;
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

.step-content-modern-css-techniques-web-development {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-modern-css-techniques-web-development {
  font-size: 1.0625rem;
  color: #0f172a;
  font-weight: 600;
}

.step-text-modern-css-techniques-web-development {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .advanced-content-modern-css-techniques-web-development {
    flex-direction: column;
  }

  .advanced-image-modern-css-techniques-web-development,
  .advanced-text-modern-css-techniques-web-development {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.best-practices-section-modern-css-techniques-web-development {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practices-grid-modern-css-techniques-web-development {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.practice-card-modern-css-techniques-web-development {
  flex: 1 1 280px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.practice-card-modern-css-techniques-web-development:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.practice-icon-modern-css-techniques-web-development {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 10px;
  color: #06b6d4;
  font-size: 1.5rem;
}

.practice-title-modern-css-techniques-web-development {
  font-size: 1.125rem;
  color: #0f172a;
  font-weight: 600;
}

.practice-text-modern-css-techniques-web-development {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .practice-card-modern-css-techniques-web-development {
    flex: 1 1 100%;
    max-width: none;
  }
}

.conclusion-section-modern-css-techniques-web-development {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-modern-css-techniques-web-development {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-modern-css-techniques-web-development {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  text-align: center;
}

.conclusion-text-modern-css-techniques-web-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  text-align: center;
}

.cta-box-modern-css-techniques-web-development {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  margin: 2rem 0;
}

.cta-title-modern-css-techniques-web-development {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-text-modern-css-techniques-web-development {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.0625rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cta-btn-modern-css-techniques-web-development {
  background: #ffffff !important;
  color: #06b6d4 !important;
  margin-top: 0;
}

.cta-btn-modern-css-techniques-web-development:hover {
  background: #f1f5f9 !important;
  transform: translateY(-2px);
}

.disclaimer-box-modern-css-techniques-web-development {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
  margin-top: 2rem;
}

.disclaimer-title-modern-css-techniques-web-development {
  font-size: 1rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  font-size: 0.875rem;
  color: #f59e0b;
}

.disclaimer-text-modern-css-techniques-web-development {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.related-section-modern-css-techniques-web-development {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-modern-css-techniques-web-development {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-modern-css-techniques-web-development {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.related-subtitle-modern-css-techniques-web-development {
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
}

.related-cards-modern-css-techniques-web-development {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-modern-css-techniques-web-development {
  flex: 1 1 320px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.related-card-modern-css-techniques-web-development:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.related-image-modern-css-techniques-web-development {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 10px;
  margin: 0;
}

.related-card-img-modern-css-techniques-web-development {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-modern-css-techniques-web-development:hover .related-card-img-modern-css-techniques-web-development {
  transform: scale(1.05);
}

.related-card-content-modern-css-techniques-web-development {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.related-card-title-modern-css-techniques-web-development {
  font-size: 1.0625rem;
  color: #0f172a;
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-modern-css-techniques-web-development {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-modern-css-techniques-web-development {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #06b6d4;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
  margin-top: auto;
}

.related-card-link-modern-css-techniques-web-development:hover {
  color: #0891b2;
}

@media (max-width: 768px) {
  .related-card-modern-css-techniques-web-development {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .hero-section-modern-css-techniques-web-development {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .intro-section-modern-css-techniques-web-development {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .flexbox-section-modern-css-techniques-web-development {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .grid-section-modern-css-techniques-web-development {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .animations-section-modern-css-techniques-web-development {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .advanced-section-modern-css-techniques-web-development {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .best-practices-section-modern-css-techniques-web-development {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .conclusion-section-modern-css-techniques-web-development {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .related-section-modern-css-techniques-web-development {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-modern-css-techniques-web-development {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .intro-section-modern-css-techniques-web-development {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .flexbox-section-modern-css-techniques-web-development {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .grid-section-modern-css-techniques-web-development {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .animations-section-modern-css-techniques-web-development {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .advanced-section-modern-css-techniques-web-development {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .best-practices-section-modern-css-techniques-web-development {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .conclusion-section-modern-css-techniques-web-development {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .related-section-modern-css-techniques-web-development {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
}

.main-visual-design-principles-web {
  width: 100%;
}

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

.hero-section-visual-design-principles-web {
  width: 100%;
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.breadcrumbs-visual-design-principles-web {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-visual-design-principles-web a {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-visual-design-principles-web a:hover {
  color: #22d3ee;
  text-decoration: underline;
}

.breadcrumbs-visual-design-principles-web span {
  color: #64748b;
}

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

.hero-text-block-visual-design-principles-web {
  flex: 1 1 45%;
  max-width: 50%;
}

.hero-title-visual-design-principles-web {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.hero-meta-visual-design-principles-web {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-visual-design-principles-web {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #22d3ee;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-visual-design-principles-web i {
  font-size: 0.875rem;
}

.hero-image-block-visual-design-principles-web {
  flex: 1 1 45%;
  max-width: 50%;
}

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

.intro-section-visual-design-principles-web {
  width: 100%;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-visual-design-principles-web {
  flex: 1 1 45%;
  max-width: 50%;
}

.intro-title-visual-design-principles-web {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-paragraph-visual-design-principles-web {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-visual-design-principles-web {
  flex: 1 1 45%;
  max-width: 50%;
}

.intro-image-visual-design-principles-web {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.principles-section-visual-design-principles-web {
  width: 100%;
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.principles-header-visual-design-principles-web {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag-visual-design-principles-web {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #0891b2;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.principles-title-visual-design-principles-web {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.principles-subtitle-visual-design-principles-web {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.principle-card-visual-design-principles-web {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.principle-card-visual-design-principles-web:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(6, 182, 212, 0.15);
}

.principle-number-visual-design-principles-web {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  opacity: 0.8;
}

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

.principle-card-text-visual-design-principles-web {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
}

.implementation-section-visual-design-principles-web {
  width: 100%;
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.implementation-text-visual-design-principles-web {
  flex: 1 1 45%;
  max-width: 50%;
}

.implementation-title-visual-design-principles-web {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.implementation-paragraph-visual-design-principles-web {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.implementation-image-visual-design-principles-web {
  flex: 1 1 45%;
  max-width: 50%;
}

.implementation-image-visual-design-principles-web {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.quote-section-visual-design-principles-web {
  width: 100%;
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-visual-design-principles-web {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3.5rem);
  border-left: 5px solid #06b6d4;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.quote-text-visual-design-principles-web {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.quote-author-visual-design-principles-web {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
  font-style: normal;
  display: block;
}

.advanced-section-visual-design-principles-web {
  width: 100%;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.advanced-wrapper-visual-design-principles-web {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.advanced-image-visual-design-principles-web {
  flex: 1 1 45%;
  max-width: 50%;
}

.advanced-image-visual-design-principles-web {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advanced-text-visual-design-principles-web {
  flex: 1 1 45%;
  max-width: 50%;
}

.advanced-title-visual-design-principles-web {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.advanced-paragraph-visual-design-principles-web {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-section-visual-design-principles-web {
  width: 100%;
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-visual-design-principles-web {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-visual-design-principles-web {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.conclusion-paragraph-visual-design-principles-web {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.cta-box-visual-design-principles-web {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 16px;
  text-align: center;
  margin-top: 3rem;
}

.cta-title-visual-design-principles-web {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-text-visual-design-principles-web {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #ffffff;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-box-visual-design-principles-web .btn-primary {
  background: #ffffff;
  color: #06b6d4;
}

.cta-box-visual-design-principles-web .btn-primary:hover {
  background: #f0f9fa;
}

.disclaimer-section-visual-design-principles-web {
  width: 100%;
  background: #0f172a;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-box-visual-design-principles-web {
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
}

.disclaimer-title-visual-design-principles-web {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #22d3ee;
  margin-bottom: 1rem;
}

.disclaimer-text-visual-design-principles-web {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.related-section-visual-design-principles-web {
  width: 100%;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-visual-design-principles-web {
  text-align: center;
  margin-bottom: 4rem;
}

.related-title-visual-design-principles-web {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-visual-design-principles-web {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-visual-design-principles-web {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-visual-design-principles-web {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-visual-design-principles-web:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.related-card-content-visual-design-principles-web {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.related-card-title-visual-design-principles-web {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.related-card-text-visual-design-principles-web {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-visual-design-principles-web {
  color: #06b6d4;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.related-card-link-visual-design-principles-web:hover {
  color: #22d3ee;
  text-decoration: underline;
}

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

  .hero-text-block-visual-design-principles-web,
  .hero-image-block-visual-design-principles-web {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-content-visual-design-principles-web {
    flex-direction: column;
  }

  .intro-text-visual-design-principles-web,
  .intro-image-visual-design-principles-web {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .implementation-wrapper-visual-design-principles-web {
    flex-direction: column;
  }

  .implementation-text-visual-design-principles-web,
  .implementation-image-visual-design-principles-web {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .advanced-wrapper-visual-design-principles-web {
    flex-direction: column-reverse;
  }

  .advanced-image-visual-design-principles-web,
  .advanced-text-visual-design-principles-web {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .principle-card-visual-design-principles-web {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-card-visual-design-principles-web {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-content-visual-design-principles-web {
    flex-direction: column;
  }

  .hero-text-block-visual-design-principles-web,
  .hero-image-block-visual-design-principles-web {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .principle-card-visual-design-principles-web {
    flex: 1 1 calc(50% - 1rem);
    max-width: 100%;
  }

  .related-card-visual-design-principles-web {
    flex: 1 1 calc(50% - 1rem);
    max-width: 100%;
  }
}

.main-user-experience-design-masterclass {
  width: 100%;
}

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

.hero-section-user-experience-design-masterclass .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.breadcrumbs-user-experience-design-masterclass {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-user-experience-design-masterclass a {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-user-experience-design-masterclass a:hover {
  color: #22d3ee;
}

.breadcrumbs-user-experience-design-masterclass span {
  color: #64748b;
}

.hero-wrapper-user-experience-design-masterclass {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-content-user-experience-design-masterclass {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-user-experience-design-masterclass {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-user-experience-design-masterclass {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.hero-meta-user-experience-design-masterclass {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meta-badge-user-experience-design-masterclass {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-user-experience-design-masterclass i {
  font-size: 0.875rem;
}

.hero-stats-user-experience-design-masterclass {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
}

.stat-item-user-experience-design-masterclass {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-user-experience-design-masterclass {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

.stat-label-user-experience-design-masterclass {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.hero-img-user-experience-design-masterclass {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  max-height: 450px;
  display: block;
}

@media (max-width: 768px) {
  .hero-wrapper-user-experience-design-masterclass {
    flex-direction: column;
  }

  .hero-content-user-experience-design-masterclass,
  .hero-image-user-experience-design-masterclass {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-user-experience-design-masterclass {
    gap: 1.5rem;
  }
}

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

.intro-section-user-experience-design-masterclass .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.intro-wrapper-user-experience-design-masterclass {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-content-user-experience-design-masterclass {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-user-experience-design-masterclass {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-user-experience-design-masterclass {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-text-user-experience-design-masterclass {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-img-user-experience-design-masterclass {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  max-height: 400px;
  display: block;
}

@media (max-width: 768px) {
  .intro-wrapper-user-experience-design-masterclass {
    flex-direction: column;
  }

  .intro-content-user-experience-design-masterclass,
  .intro-image-user-experience-design-masterclass {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.foundations-section-user-experience-design-masterclass {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.foundations-section-user-experience-design-masterclass .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.section-header-user-experience-design-masterclass {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-user-experience-design-masterclass {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.foundations-title-user-experience-design-masterclass {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.foundations-subtitle-user-experience-design-masterclass {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.principles-steps-user-experience-design-masterclass {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.principle-step-user-experience-design-masterclass {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.principle-number-user-experience-design-masterclass {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.principle-content-user-experience-design-masterclass {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.principle-title-user-experience-design-masterclass {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.principle-text-user-experience-design-masterclass {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .principle-step-user-experience-design-masterclass {
    flex-direction: column;
    gap: 1rem;
  }

  .principle-number-user-experience-design-masterclass {
    min-width: auto;
  }
}

.research-section-user-experience-design-masterclass {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.research-section-user-experience-design-masterclass .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.research-wrapper-user-experience-design-masterclass {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.research-image-user-experience-design-masterclass {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.research-content-user-experience-design-masterclass {
  flex: 1 1 50%;
  max-width: 50%;
}

.research-title-user-experience-design-masterclass {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.research-text-user-experience-design-masterclass {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.research-img-user-experience-design-masterclass {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  max-height: 400px;
  display: block;
}

.featured-quote-user-experience-design-masterclass {
  padding: 2rem 2.5rem;
  border-left: 4px solid #06b6d4;
  background: #ffffff;
  margin: 2rem 0;
  border-radius: 8px;
}

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

.quote-cite-user-experience-design-masterclass {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  display: block;
}

@media (max-width: 768px) {
  .research-wrapper-user-experience-design-masterclass {
    flex-direction: column;
  }

  .research-image-user-experience-design-masterclass,
  .research-content-user-experience-design-masterclass {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.methods-section-user-experience-design-masterclass {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.methods-section-user-experience-design-masterclass .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.methods-title-user-experience-design-masterclass {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.methods-subtitle-user-experience-design-masterclass {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.methods-cards-user-experience-design-masterclass {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
  margin-top: 2.5rem;
}

.methods-card-user-experience-design-masterclass {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.methods-card-user-experience-design-masterclass:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.methods-card-icon-user-experience-design-masterclass {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 10px;
  color: #06b6d4;
  font-size: 1.5rem;
}

.methods-card-title-user-experience-design-masterclass {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.methods-card-text-user-experience-design-masterclass {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .methods-card-user-experience-design-masterclass {
    flex: 1 1 100%;
    max-width: none;
  }
}

.implementation-section-user-experience-design-masterclass {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-section-user-experience-design-masterclass .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

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

.implementation-content-user-experience-design-masterclass {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-user-experience-design-masterclass {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-user-experience-design-masterclass {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.implementation-text-user-experience-design-masterclass {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.implementation-img-user-experience-design-masterclass {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  max-height: 400px;
  display: block;
}

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

  .implementation-content-user-experience-design-masterclass,
  .implementation-image-user-experience-design-masterclass {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.accessibility-section-user-experience-design-masterclass {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.accessibility-section-user-experience-design-masterclass .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.accessibility-wrapper-user-experience-design-masterclass {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.accessibility-image-user-experience-design-masterclass {
  flex: 1 1 50%;
  max-width: 50%;
}

.accessibility-content-user-experience-design-masterclass {
  flex: 1 1 50%;
  max-width: 50%;
}

.accessibility-title-user-experience-design-masterclass {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.accessibility-text-user-experience-design-masterclass {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.accessibility-img-user-experience-design-masterclass {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  max-height: 400px;
  display: block;
}

@media (max-width: 768px) {
  .accessibility-wrapper-user-experience-design-masterclass {
    flex-direction: column;
  }

  .accessibility-image-user-experience-design-masterclass,
  .accessibility-content-user-experience-design-masterclass {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-section-user-experience-design-masterclass .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.conclusion-content-user-experience-design-masterclass {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-user-experience-design-masterclass {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-user-experience-design-masterclass {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: center;
}

.cta-box-user-experience-design-masterclass {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  margin-top: 3rem;
}

.cta-title-user-experience-design-masterclass {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-text-user-experience-design-masterclass {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  opacity: 0.95;
}

.cta-box-user-experience-design-masterclass .btn {
  margin-top: 1rem;
}

.related-section-user-experience-design-masterclass {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-section-user-experience-design-masterclass .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.related-header-user-experience-design-masterclass {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-user-experience-design-masterclass {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-user-experience-design-masterclass {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.related-cards-user-experience-design-masterclass {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.related-card-user-experience-design-masterclass {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-user-experience-design-masterclass:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.related-card-image-user-experience-design-masterclass {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-image-user-experience-design-masterclass img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.related-card-title-user-experience-design-masterclass {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.related-card-text-user-experience-design-masterclass {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-user-experience-design-masterclass {
  color: #06b6d4;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: color 0.2s ease;
}

.related-card-link-user-experience-design-masterclass:hover {
  color: #22d3ee;
}

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

.disclaimer-section-user-experience-design-masterclass {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-section-user-experience-design-masterclass .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.disclaimer-box-user-experience-design-masterclass {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(6, 182, 212, 0.08);
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
}

.disclaimer-title-user-experience-design-masterclass {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #06b6d4;
  margin-bottom: 1rem;
}

.disclaimer-text-user-experience-design-masterclass {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .hero-stats-user-experience-design-masterclass {
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-stats-user-experience-design-masterclass {
    gap: 4rem;
  }
}

.main-building-dynamic-websites-javascript {
  width: 100%;
}

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

.hero-wrapper-building-dynamic-websites-javascript {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-content-building-dynamic-websites-javascript {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-building-dynamic-websites-javascript {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-building-dynamic-websites-javascript {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.article-meta-building-dynamic-websites-javascript {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-building-dynamic-websites-javascript {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #06b6d4;
}

.meta-badge-building-dynamic-websites-javascript i {
  font-size: 0.875rem;
}

.hero-image-building-dynamic-websites-javascript {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-building-dynamic-websites-javascript {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.breadcrumbs-building-dynamic-websites-javascript {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-building-dynamic-websites-javascript a {
  color: #06b6d4;
  transition: color 0.3s ease;
}

.breadcrumbs-building-dynamic-websites-javascript a:hover {
  color: #22d3ee;
  text-decoration: underline;
}

.breadcrumbs-building-dynamic-websites-javascript span {
  color: #475569;
}

.breadcrumbs-building-dynamic-websites-javascript > :last-child {
  color: #cbd5e1;
}

@media (max-width: 768px) {
  .hero-wrapper-building-dynamic-websites-javascript {
    flex-direction: column;
  }
  
  .hero-content-building-dynamic-websites-javascript {
    flex: 1 1 100%;
  }
  
  .hero-image-building-dynamic-websites-javascript {
    flex: 1 1 100%;
  }
}

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

.intro-content-building-dynamic-websites-javascript {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-building-dynamic-websites-javascript {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-title-building-dynamic-websites-javascript {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.intro-description-building-dynamic-websites-javascript {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
}

.intro-image-building-dynamic-websites-javascript {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-building-dynamic-websites-javascript {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-building-dynamic-websites-javascript {
    flex-direction: column;
  }
  
  .intro-text-building-dynamic-websites-javascript {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .intro-image-building-dynamic-websites-javascript {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.concepts-section-building-dynamic-websites-javascript {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.section-header-building-dynamic-websites-javascript {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-building-dynamic-websites-javascript {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.concepts-title-building-dynamic-websites-javascript {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.concepts-subtitle-building-dynamic-websites-javascript {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.concepts-grid-building-dynamic-websites-javascript {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.concept-card-building-dynamic-websites-javascript {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.concept-card-building-dynamic-websites-javascript:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.concept-card-icon-building-dynamic-websites-javascript {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 10px;
  color: #06b6d4;
  font-size: 1.5rem;
}

.concept-card-title-building-dynamic-websites-javascript {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.concept-card-text-building-dynamic-websites-javascript {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .concept-card-building-dynamic-websites-javascript {
    flex: 1 1 100%;
    max-width: none;
  }
}

.implementation-section-building-dynamic-websites-javascript {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-wrapper-building-dynamic-websites-javascript {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.implementation-text-building-dynamic-websites-javascript {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-building-dynamic-websites-javascript {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.steps-container-building-dynamic-websites-javascript {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-building-dynamic-websites-javascript {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
}

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

.step-content-building-dynamic-websites-javascript {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.step-title-building-dynamic-websites-javascript {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.step-text-building-dynamic-websites-javascript {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.implementation-image-building-dynamic-websites-javascript {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-img-building-dynamic-websites-javascript {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .implementation-wrapper-building-dynamic-websites-javascript {
    flex-direction: column;
  }
  
  .implementation-text-building-dynamic-websites-javascript {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .implementation-image-building-dynamic-websites-javascript {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.best-practices-section-building-dynamic-websites-javascript {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.best-practices-title-building-dynamic-websites-javascript {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.best-practices-subtitle-building-dynamic-websites-javascript {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.featured-quote-building-dynamic-websites-javascript {
  padding: 2.5rem;
  border-left: 4px solid #06b6d4;
  background: #ffffff;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.quote-text-building-dynamic-websites-javascript {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #1e293b;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quote-author-building-dynamic-websites-javascript {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.practices-grid-building-dynamic-websites-javascript {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: 2rem;
}

.practice-card-building-dynamic-websites-javascript {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.practice-card-title-building-dynamic-websites-javascript {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.practice-card-text-building-dynamic-websites-javascript {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .practice-card-building-dynamic-websites-javascript {
    flex: 1 1 100%;
    max-width: none;
  }
}

.tools-section-building-dynamic-websites-javascript {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-wrapper-building-dynamic-websites-javascript {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.tools-content-building-dynamic-websites-javascript {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-title-building-dynamic-websites-javascript {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.tools-description-building-dynamic-websites-javascript {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tools-list-building-dynamic-websites-javascript {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.tool-item-building-dynamic-websites-javascript {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tool-icon-building-dynamic-websites-javascript {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 10px;
  color: #06b6d4;
  font-size: 1.5rem;
}

.tool-name-building-dynamic-websites-javascript {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
}

.tool-desc-building-dynamic-websites-javascript {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

.tools-image-building-dynamic-websites-javascript {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-img-building-dynamic-websites-javascript {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .tools-wrapper-building-dynamic-websites-javascript {
    flex-direction: column;
  }
  
  .tools-content-building-dynamic-websites-javascript {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .tools-image-building-dynamic-websites-javascript {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-building-dynamic-websites-javascript {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-building-dynamic-websites-javascript {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-building-dynamic-websites-javascript {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.conclusion-text-building-dynamic-websites-javascript {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
}

.conclusion-cta-building-dynamic-websites-javascript {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  text-align: center;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.cta-heading-building-dynamic-websites-javascript {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
}

.cta-text-building-dynamic-websites-javascript {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: rgba(255, 255, 255, 0.9);
}

.conclusion-cta-building-dynamic-websites-javascript .btn {
  background: #ffffff;
  color: #0891b2;
  margin-top: 0.5rem;
}

.conclusion-cta-building-dynamic-websites-javascript .btn:hover {
  background: #f0f0f0;
}

.disclaimer-section-building-dynamic-websites-javascript {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-box-building-dynamic-websites-javascript {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f1f5f9;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-building-dynamic-websites-javascript {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.disclaimer-text-building-dynamic-websites-javascript {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.7;
}

.related-section-building-dynamic-websites-javascript {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-building-dynamic-websites-javascript {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-building-dynamic-websites-javascript {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.related-subtitle-building-dynamic-websites-javascript {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
}

.related-cards-building-dynamic-websites-javascript {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-building-dynamic-websites-javascript {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-building-dynamic-websites-javascript:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.related-card-image-building-dynamic-websites-javascript {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-building-dynamic-websites-javascript img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-building-dynamic-websites-javascript {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.related-card-description-building-dynamic-websites-javascript {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-building-dynamic-websites-javascript {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #06b6d4;
  transition: color 0.3s ease;
  text-decoration: none;
}

.related-card-link-building-dynamic-websites-javascript:hover {
  color: #0891b2;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-card-building-dynamic-websites-javascript {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .hero-section-building-dynamic-websites-javascript {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
  
  .intro-section-building-dynamic-websites-javascript {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
  
  .concepts-section-building-dynamic-websites-javascript {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
  
  .implementation-section-building-dynamic-websites-javascript {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
  
  .best-practices-section-building-dynamic-websites-javascript {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
  
  .tools-section-building-dynamic-websites-javascript {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
  
  .conclusion-section-building-dynamic-websites-javascript {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
  
  .disclaimer-section-building-dynamic-websites-javascript {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
  
  .related-section-building-dynamic-websites-javascript {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .concepts-grid-building-dynamic-websites-javascript {
    gap: 2rem;
  }
  
  .practice-card-building-dynamic-websites-javascript {
    flex: 1 1 300px;
  }
}

.creative-workshop-journey-about {
  font-family: var(--font-primary);
  color: var(--color-text-dark);
}

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

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

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

.hero-vision-title-about {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-light);
  line-height: 1.15;
}

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

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

.stat-box-about {
  flex: 1 1 150px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.stat-label-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-light-muted);
  font-weight: 500;
}

.hero-visual-about {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
  display: block;
}

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

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

.story-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.story-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.story-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.story-subtitle-about {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
}

.story-blocks-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.story-block-about {
  flex: 1 1 280px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.block-heading-about {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.block-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
}

.story-visual-about {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin-top: 1rem;
  display: block;
}

.methodology-framework-about {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-dark-secondary);
  position: relative;
  overflow: hidden;
}

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

.methodology-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.methodology-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.methodology-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.methodology-subtitle-about {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

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

.process-step-about {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-dark-tertiary);
  border-radius: var(--radius-lg);
}

.step-number-about {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.step-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.step-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-light);
}

.step-description-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-muted);
  line-height: 1.6;
}

.approach-visual-about {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
  display: block;
}

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

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

.expertise-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.expertise-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-accent);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.expertise-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.expertise-subtitle-about {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
}

.expertise-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.expertise-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.card-title-about {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.card-description-about {
  font-size: 0.9375rem;
  color: var(--color-text-dark-muted);
  line-height: 1.6;
}

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

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

.commitment-text-about {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.commitment-quote-about {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(6, 182, 212, 0.08);
  margin: clamp(2rem, 4vw, 3rem) 0;
  border-radius: var(--radius-lg);
}

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

.quote-author-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-secondary);
  font-style: normal;
  font-weight: 500;
}

.commitment-closing-about {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto;
}

.values-visual-about {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
  display: block;
}

.disclaimer-section-about {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: var(--color-bg-light-tertiary);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-about {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.disclaimer-icon-about {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-dark);
}

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

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

  .foundation-story-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .methodology-framework-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .expertise-pillars-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .commitment-section-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .story-blocks-about {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .story-block-about {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .expertise-cards-about {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .expertise-card-about {
    flex: 1 1 calc(33.333% - 1rem);
  }
}

@media (max-width: 767px) {
  .story-block-about {
    flex: 1 1 100%;
  }

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

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

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

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

.legal-hub .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

.legal-hub-hero {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.legal-hub-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.legal-hub-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-hero-meta {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-muted);
  line-height: 1.6;
}

.legal-hub-content {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-light-primary);
  overflow: hidden;
}

.legal-hub-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
}

.legal-hub-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.legal-hub-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.legal-hub-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-section li strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

.legal-hub-contact {
  background: var(--color-bg-light-secondary);
  padding: clamp(2.5rem, 6vw, 4rem);
  border-radius: var(--radius-lg);
  margin-top: clamp(2rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-hub-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: 1.2;
}

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

.legal-hub-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.legal-hub-contact-label {
  font-weight: 600;
  color: var(--color-text-dark);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.legal-hub-contact-value {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

@media (min-width: 768px) {
  .legal-hub-hero {
    padding: 5rem 0;
  }

  .legal-hub-content {
    padding: 5rem 0;
  }

  .legal-hub-section {
    gap: 1.5rem;
  }

  .legal-hub-contact {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .legal-hub-hero {
    padding: 6rem 0;
  }

  .legal-hub-content {
    padding: 6rem 0;
  }

  .legal-hub-content-wrapper {
    gap: 3rem;
  }
}

.thank-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-dark-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1rem, 3vw, 2rem);
}

.thank-icon {
  width: clamp(60px, 15vw, 120px);
  height: clamp(60px, 15vw, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon i {
  font-size: clamp(40px, 12vw, 80px);
  color: var(--color-accent);
}

.thank-section h1 {
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-lead {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-description {
  color: var(--color-text-light-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-details {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
  max-width: 500px;
}

.detail-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding: clamp(0.75rem, 2vw, 1.25rem);
  border-radius: var(--radius-md);
  background: rgba(6, 182, 212, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.1);
  animation: slideUp 0.6s ease-out backwards;
}

.detail-item:nth-child(2) {
  animation-delay: 0.1s;
}

.detail-item:nth-child(3) {
  animation-delay: 0.2s;
}

.detail-item i {
  flex-shrink: 0;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-primary);
  width: clamp(1.5rem, 3vw, 2rem);
  height: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-item span {
  color: var(--color-text-light-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 1vw + 0.4rem, 1rem);
  line-height: 1.5;
  text-align: left;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1.25rem) clamp(1.5rem, 3vw, 2.5rem);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-bg-dark-primary);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(6, 182, 212, 0.3);
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .thank-content {
    gap: clamp(2rem, 5vw, 3.5rem);
  }

  .thank-details {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .detail-item {
    flex: 0 1 calc(33.333% - 1rem);
    min-width: 140px;
  }
}

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

  .thank-content {
    gap: 3rem;
  }

  .detail-item {
    padding: 1.25rem;
  }

  .btn:hover {
    transform: translateY(-4px);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 6rem 0;
  }

  .thank-icon {
    width: 120px;
    height: 120px;
  }

  .thank-icon i {
    font-size: 80px;
  }

  .thank-section h1 {
    font-size: 3.5rem;
  }

  .thank-lead {
    font-size: 1.5rem;
  }
}

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  background: linear-gradient(135deg, var(--color-bg-dark-primary) 0%, var(--color-bg-dark-secondary) 100%);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.error-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  z-index: 1;
}

.error-decoration-1 {
  width: clamp(300px, 60vw, 600px);
  height: clamp(300px, 60vw, 600px);
  background: var(--color-primary);
  top: -200px;
  right: -150px;
  animation: float 6s ease-in-out infinite;
}

.error-decoration-2 {
  width: clamp(250px, 50vw, 500px);
  height: clamp(250px, 50vw, 500px);
  background: var(--color-secondary);
  bottom: -150px;
  left: -100px;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

.error-code-wrapper {
  position: relative;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.error-code {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.05em;
  text-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
  font-family: var(--font-heading);
}

.error-code-accent {
  width: clamp(60px, 15vw, 120px);
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  margin: clamp(0.75rem, 2vw, 1.5rem) auto 0;
  border-radius: 2px;
}

.error-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light);
  margin: clamp(1rem, 2vw, 1.5rem) 0;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.error-description {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: var(--color-text-light-secondary);
  margin: clamp(1rem, 2vw, 1.5rem) 0 clamp(2rem, 4vw, 2.5rem);
  max-width: 500px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-actions {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 0.75rem);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(6, 182, 212, 0.3);
}

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

.btn i {
  font-size: 1em;
}

.error-hint {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.2);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-lg);
  max-width: 500px;
  backdrop-filter: blur(10px);
}

.error-hint i {
  color: var(--color-secondary);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  flex-shrink: 0;
}

.error-hint p {
  font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
  color: var(--color-text-light-muted);
  margin: 0;
  line-height: 1.5;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .error-section {
    padding: 4rem 0;
    min-height: 100vh;
  }

  .error-code {
    font-size: clamp(5rem, 12vw, 7rem);
  }

  .error-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  }

  .error-description {
    font-size: clamp(0.9375rem, 1.3vw, 1.125rem);
  }

  .error-hint {
    flex-direction: row;
    justify-content: flex-start;
  }

  .error-hint p {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: 6rem 0;
  }

  .error-code {
    font-size: clamp(6rem, 10vw, 8rem);
  }

  .error-title {
    font-size: 2.5rem;
    margin: 1.5rem 0;
  }

  .error-description {
    font-size: 1.125rem;
    margin: 1.5rem 0 2.5rem;
  }

  .error-actions {
    margin-bottom: 3rem;
  }

  .btn {
    padding: 1rem 2rem;
  }

  .error-hint {
    padding: 1.5rem;
  }
}

@media (min-width: 1440px) {
  .error-section {
    min-height: 100vh;
  }

  .error-code {
    font-size: 8rem;
  }

  .error-title {
    font-size: 2.75rem;
  }

  .error-description {
    font-size: 1.1875rem;
    max-width: 550px;
  }

  .error-hint {
    max-width: 550px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-decoration {
    animation: none;
  }

  .btn {
    transition: background-color 0.2s;
  }
}

@media print {
  .error-decoration {
    display: none;
  }

  .error-section {
    min-height: auto;
    padding: 2rem 0;
  }
}