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

:root {
  --color-bg-dark-primary: #0a0f1e;
  --color-bg-dark-secondary: #0f172a;
  --color-bg-dark-tertiary: #1e293b;
  --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-dark-primary: #ffffff;
  --color-text-dark-secondary: #e2e8f0;
  --color-text-dark-muted: #94a3b8;
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #334155;
  --color-text-light-muted: #64748b;

  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-primary-light: #60a5fa;
  --color-secondary: #06b6d4;
  --color-secondary-hover: #0891b2;
  --color-accent: #f59e0b;
  --color-accent-hover: #d97706;

  --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;
  --space-4xl: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-dark-lg: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

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

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.9375rem, 1vw + 0.5rem, 1.125rem);
}

p {
  line-height: 1.7;
}

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

ul,
ol {
  list-style: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2rem);
  text-decoration: none;
  white-space: nowrap;
}

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

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

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

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

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

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

.btn-outline-dark:hover {
  background: rgba(15, 23, 42, 0.05);
}

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-primary {
  background: rgba(59, 130, 246, 0.2);
  color: var(--color-primary);
}

.badge-secondary {
  background: rgba(6, 182, 212, 0.2);
  color: var(--color-secondary);
}

@media (max-width: 768px) {
  h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }

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

  h3 {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  }

  .btn {
    padding: clamp(0.625rem, 1.2vw, 0.875rem) clamp(1rem, 2.5vw, 1.5rem);
  }
}

input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: 1rem;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  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(59, 130, 246, 0.1);
}

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

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

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

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

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

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

.opacity-75 {
  opacity: 0.75;
}

.opacity-50 {
  opacity: 0.5;
}

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

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

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

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

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

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

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

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

.pt-1 {
  padding-top: var(--space-sm);
}

.pt-2 {
  padding-top: var(--space-md);
}

.pt-3 {
  padding-top: var(--space-lg);
}

.pt-4 {
  padding-top: var(--space-xl);
}

.pb-1 {
  padding-bottom: var(--space-sm);
}

.pb-2 {
  padding-bottom: var(--space-md);
}

.pb-3 {
  padding-bottom: var(--space-lg);
}

.pb-4 {
  padding-bottom: var(--space-xl);
}

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

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

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

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

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

.card-dark {
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-box {
  width: clamp(3rem, 6vw, 4rem);
  height: clamp(3rem, 6vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  font-size: clamp(1.5rem, 3vw, 2rem);
  flex-shrink: 0;
}

.icon-box-primary {
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
}

.icon-box-secondary {
  background: rgba(6, 182, 212, 0.15);
  color: var(--color-secondary);
}

.icon-box-accent {
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-accent);
}

.divider {
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.1;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.scroll-smooth {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700&display=swap');

.header-design-portal {
  position: static;
  background: var(--color-bg-dark-primary);
  border-bottom: 1px solid var(--color-bg-dark-secondary);
  width: 100%;
  z-index: 100;
}

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

.header-design-portal-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

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

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

.header-design-portal-desktop-nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
}

.header-design-portal-nav-link {
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

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

.header-design-portal-nav-link:hover {
  color: #ffffff;
}

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

.header-design-portal-cta-button {
  display: none;
  padding: 0.75rem 1.75rem;
  background: var(--color-primary);
  color: #0f172a;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.header-design-portal-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

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

.header-design-portal-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.header-design-portal-mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header-design-portal-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.header-design-portal-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header-design-portal-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-design-portal-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-dark-primary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
}

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

.header-design-portal-mobile-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1.25rem clamp(1rem, 5vw, 2rem);
  border-bottom: 1px solid var(--color-bg-dark-secondary);
}

.header-design-portal-mobile-close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 300ms ease;
}

.header-design-portal-mobile-close:active {
  color: #cbd5e1;
}

.header-design-portal-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  padding: 1rem 0;
  overflow-y: auto;
}

.header-design-portal-mobile-link {
  padding: 1rem clamp(1rem, 5vw, 2rem);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  color: #cbd5e1;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 300ms ease;
}

.header-design-portal-mobile-link:active {
  background: rgba(59, 130, 246, 0.1);
  color: #ffffff;
}

.header-design-portal-mobile-cta {
  padding: 1rem clamp(1rem, 5vw, 2rem);
  margin: 1rem clamp(1rem, 5vw, 2rem);
  background: var(--color-primary);
  color: #0f172a;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  text-align: center;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.header-design-portal-mobile-cta:active {
  background: var(--color-primary-hover);
  transform: scale(0.98);
}

@media (min-width: 768px) {
  .header-design-portal-container {
    padding: 1.5rem clamp(1rem, 5vw, 2rem);
  }

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

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

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

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

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

@media (min-width: 1024px) {
  .header-design-portal-container {
    padding: 1.5rem clamp(1.5rem, 4vw, 2rem);
  }

  .header-design-portal-nav-link {
    font-size: 0.95rem;
  }

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

    .design-hub-portal {
  width: 100%;
  background: #ffffff;
}

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

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

.hero-glow-orb-primary {
  position: absolute;
  top: 30%;
  right: -100px;
  width: 350px;
  height: 350px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-accent-shape-1 {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

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

.hero-floating-panel-1 {
  position: absolute;
  top: 15%;
  right: 15%;
  width: 200px;
  height: 150px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transform: rotate(-12deg);
  z-index: 2;
  pointer-events: none;
}

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

.hero-corner-glow {
  position: absolute;
  bottom: -80px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(96, 165, 250, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-title-index {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

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

.hero-cta-group-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.hero-cta-group-index .btn {
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(1.75rem, 3vw, 2.25rem);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: #3b82f6;
  color: #0f172a;
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  justify-content: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item-index {
  flex: 0 1 auto;
  text-align: center;
}

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

.hero-stat-label-index {
  display: block;
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

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

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

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

.fundamentals-glow-accent-2 {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

.fundamentals-content-index {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

.fundamentals-text-block-index {
  flex: 1 1 400px;
  min-width: 300px;
}

.fundamentals-header-index {
  margin-bottom: 2.5rem;
}

.fundamentals-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.fundamentals-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.fundamentals-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

.fundamentals-steps-index {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fundamentals-step-index {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.fundamentals-step-number-index {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.fundamentals-step-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.25rem;
}

.fundamentals-step-title-index {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.fundamentals-step-text-index {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.fundamentals-image-block-index {
  flex: 1 1 350px;
  min-width: 300px;
}

.fundamentals-image-index {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

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

.hierarchy-color-field-1 {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.hierarchy-shape-right {
  position: absolute;
  top: 30%;
  right: -80px;
  width: 350px;
  height: 350px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.hierarchy-accent-line {
  position: absolute;
  top: 40%;
  left: 8%;
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.4), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.hierarchy-header-index {
  text-align: center;
  margin-bottom: 3.5rem;
}

.hierarchy-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hierarchy-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.hierarchy-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.hierarchy-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hierarchy-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

.hierarchy-card-icon-index {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 10px;
  font-size: 1.5rem;
}

.hierarchy-card-title-index {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.hierarchy-card-text-index {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

.featured-posts-glow-1 {
  position: absolute;
  top: -150px;
  left: 10%;
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.featured-posts-glow-2 {
  position: absolute;
  bottom: -100px;
  right: 5%;
  width: 350px;
  height: 350px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

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

.featured-posts-header-index {
  text-align: center;
  margin-bottom: 3.5rem;
}

.featured-posts-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.featured-posts-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.featured-posts-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.featured-posts-card-index {
  flex: 1 1 320px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-posts-card-index:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

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

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

.featured-posts-card-title-index {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.featured-posts-card-text-index {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.featured-posts-card-link-index {
  font-size: 0.9375rem;
  color: #60a5fa;
  font-weight: 500;
  text-decoration: none;
  transition: all 300ms ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
}

.featured-posts-card-link-index:hover {
  color: #93c5fd;
  transform: translateX(4px);
}

.featured-posts-footer-index {
  text-align: center;
}

.featured-posts-cta-link-index {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #3b82f6;
  color: #0f172a;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-posts-cta-link-index:hover {
  background: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

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

.tools-gradient-mesh {
  position: absolute;
  top: -10%;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.tools-accent-shape {
  position: absolute;
  top: 40%;
  left: -50px;
  width: 320px;
  height: 320px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

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

.tools-header-index {
  text-align: center;
  margin-bottom: 3.5rem;
}

.tools-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.tools-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.tools-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.tools-feature-index {
  flex: 1 1 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.tools-feature-index:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(59, 130, 246, 0.2);
}

.tools-feature-icon-index {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 10px;
  font-size: 1.5rem;
}

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

.tools-feature-text-index {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

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

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

.expertise-glow-right {
  position: absolute;
  top: 30%;
  right: -80px;
  width: 280px;
  height: 280px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.expertise-accent-line {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.expertise-content-index {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.expertise-text-index {
  flex: 1 1 380px;
  min-width: 300px;
}

.expertise-header-index {
  margin-bottom: 2rem;
}

.expertise-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.expertise-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

.expertise-quote-index {
  margin-top: 2.5rem;
  padding: 2rem;
  background: #f8fafc;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
}

.expertise-quote-text-index {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-style: italic;
  color: #0f172a;
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

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

.expertise-image-index {
  flex: 1 1 350px;
  min-width: 300px;
}

.expertise-image-photo-index {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

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

.contact-glow-top {
  position: absolute;
  top: -150px;
  left: 15%;
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-glow-bottom {
  position: absolute;
  bottom: -100px;
  right: 10%;
  width: 350px;
  height: 350px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

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

.contact-header-index {
  text-align: center;
  margin-bottom: 3.5rem;
}

.contact-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-main-content-index {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-form-wrapper-index {
  flex: 1 1 400px;
  min-width: 300px;
}

.contact-form-index {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.contact-input-index,
.contact-textarea-index {
  width: 100%;
  padding: clamp(0.875rem, 1.5vw, 1rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  transition: all 300ms ease;
}

.contact-input-index:focus,
.contact-textarea-index:focus {
  outline: none;
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-input-index::placeholder,
.contact-textarea-index::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

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

.contact-submit-index {
  width: 100%;
  padding: clamp(0.875rem, 1.5vw, 1.125rem);
  background: #3b82f6;
  color: #0f172a;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 1rem;
}

.contact-submit-index:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

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

.contact-info-wrapper-index {
  flex: 1 1 400px;
  min-width: 300px;
}

.contact-faq-block-index {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-faq-title-index {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-faq-item-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-faq-item-index:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-faq-question-index {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.contact-faq-answer-index {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

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

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

.cookie-banner-text {
  color: #cbd5e1;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  flex: 1 1 auto;
  min-width: 200px;
}

.cookie-policy-link {
  color: #60a5fa;
  text-decoration: underline;
  transition: color 300ms ease;
}

.cookie-policy-link:hover {
  color: #93c5fd;
}

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

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 300ms ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: #3b82f6;
  color: #0f172a;
}

.cookie-btn-accept:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

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

.cookie-btn-decline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .fundamentals-content-index,
  .expertise-content-index,
  .contact-main-content-index {
    flex-direction: column;
  }

  .fundamentals-image-block-index,
  .expertise-image-index,
  .contact-form-wrapper-index,
  .contact-info-wrapper-index {
    width: 100%;
  }

  .hero-cta-group-index {
    flex-direction: column;
  }

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

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

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

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

  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1;
  }
}

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

  .featured-posts-cards-index {
    flex-direction: column;
  }

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

  .contact-submit-index {
    padding: 0.75rem 1.5rem;
  }
}

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

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

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

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

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

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

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

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

  .footer-column-title {
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 2vw, 1.0625rem);
    font-weight: 600;
    color: var(--color-text-dark-primary);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

  .footer-nav-link {
    font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
    color: var(--color-text-dark-muted);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-left: 0;
  }

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

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

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

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

  .footer-contact-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-dark-primary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
  }

  .footer-contact-label:first-child {
    margin-top: 0;
  }

  .footer-contact-value {
    font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
    color: var(--color-text-dark-muted);
    line-height: 1.5;
  }

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

  .footer-legal-link {
    font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
    color: var(--color-text-dark-muted);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }

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

  .footer-legal-link::before {
    content: '→';
    margin-right: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    width: 0.75rem;
  }

  .footer-legal-link:hover::before {
    opacity: 1;
  }

  .footer-divider {
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(226, 232, 240, 0.2),
      transparent
    );
    margin: clamp(2rem, 5vw, 3rem) 0;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .footer-copyright {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    color: var(--color-text-dark-muted);
    text-align: center;
  }

  @media (min-width: 768px) {
    .footer-content {
      flex-direction: row;
      align-items: flex-start;
      gap: clamp(3rem, 6vw, 5rem);
    }

    .footer-about {
      flex: 0 0 auto;
      min-width: 300px;
    }

    .footer-sections {
      flex: 1 1 auto;
      gap: clamp(2.5rem, 5vw, 4rem);
    }

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

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

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

  /* Decorative elements */
  .footer::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
      circle,
      rgba(59, 130, 246, 0.08) 0%,
      transparent 70%
    );
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
  }

  .footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(
      circle,
      rgba(6, 182, 212, 0.06) 0%,
      transparent 70%
    );
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
  }

  .footer .container {
    position: relative;
    z-index: 10;
  }

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

  /* Focus states */
  .footer-nav-link:focus-visible,
  .footer-legal-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 2px;
  }
    

/* Category Page Styles */
.main.category-page-web-design-learning {
  width: 100%;
  background: #0a0f1e;
  color: #ffffff;
}

/* Hero Section */
.hero-section-web-design {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #0a0f1e;
}

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

.hero-decoration-mesh {
  position: absolute;
  top: 20%;
  left: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-decoration-shape-1 {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 280px;
  height: 320px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.hero-decoration-accent-2 {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-decoration-line {
  position: absolute;
  top: 30%;
  right: 20%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.3), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-decoration-orbit {
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-decoration-blur-3 {
  position: absolute;
  top: 60%;
  right: 15%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-title-web-design {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.15;
}

.hero-subtitle-web-design {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

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

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

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

.hero-buttons-web-design {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

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

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #e2e8f0;
}

/* Posts Section */
.posts-section-web-design {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #0f172a;
}

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

.posts-decoration-shape-1 {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 320px;
  height: 280px;
  background: rgba(59, 130, 246, 0.07);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.posts-decoration-accent-1 {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.posts-header-web-design {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.posts-tag-web-design {
  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: 600;
  margin-bottom: 1rem;
}

.posts-title-web-design {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.posts-subtitle-web-design {
  color: #94a3b8;
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.card-web-design {
  flex: 1 1 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-web-design:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.card-image-web-design {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}

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

.card-description-web-design {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  flex-grow: 1;
}

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

.meta-badge-web-design {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 16px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.meta-badge-web-design i {
  color: #3b82f6;
}

.card-link-web-design {
  color: #38bdf8;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.card-link-web-design:hover {
  color: #0ea5e9;
  text-decoration: underline;
}

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

/* Learning Path Section */
.learning-path-section-web-design {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #1e293b;
}

.learning-decoration-glow-1 {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.learning-decoration-shape-2 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.learning-decoration-accent-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.learning-header-web-design {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.learning-tag-web-design {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.learning-title-web-design {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.learning-subtitle-web-design {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.steps-container-web-design {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.step-item-web-design {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.step-item-web-design:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(59, 130, 246, 0.3);
}

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

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

.step-title-web-design {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
}

.step-text-web-design {
  color: #a1a5b0;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .step-item-web-design {
    gap: 1rem;
  }

  .step-number-web-design {
    min-width: 50px;
  }
}

/* Benefits Section */
.benefits-section-web-design {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #0a0f1e;
}

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

.benefits-decoration-shape-3 {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 320px;
  height: 280px;
  background: rgba(245, 158, 11, 0.07);
  border-radius: 50% 30% 70% 30% / 30% 70% 30% 70%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.benefits-decoration-line-1 {
  position: absolute;
  top: 40%;
  right: 25%;
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.25), transparent);
  z-index: 1;
  pointer-events: none;
}

.benefits-header-web-design {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.benefits-title-web-design {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
}

.benefits-quote-web-design {
  position: relative;
  z-index: 10;
  padding: clamp(2rem, 3vw, 3rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  background: rgba(59, 130, 246, 0.08);
  border-left: 4px solid #3b82f6;
  border-radius: 4px;
}

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

.quote-author-web-design {
  color: #94a3b8;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 500;
}

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

.benefit-item-web-design {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item-web-design:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(6, 182, 212, 0.3);
}

.benefit-icon-web-design {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border-radius: 12px;
  font-size: 1.5rem;
  margin: 0 auto;
}

.benefit-title-web-design {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
}

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

@media (max-width: 768px) {
  .benefit-item-web-design {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* CTA Section */
.cta-section-web-design {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.cta-decoration-glow-3 {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.cta-decoration-accent-4 {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

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

.cta-title-web-design {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.cta-button-web-design {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(2rem, 4vw, 2.5rem);
  background: #3b82f6;
  color: #0f172a;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button-web-design:hover {
  background: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .posts-grid-web-design {
    flex-direction: column;
    align-items: stretch;
  }

  .card-web-design {
    max-width: 100%;
  }
}

/* Focus States */
.card-link-web-design:focus-visible,
.cta-button-web-design:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 3px;
}

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

/* Post Page 1 Styles */
.main-visual-hierarchy-contrast {
  width: 100%;
  overflow: hidden;
}

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

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

.hero-text-block-visual-hierarchy-contrast {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-visual-hierarchy-contrast {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-visual-hierarchy-contrast {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.hero-meta-visual-hierarchy-contrast {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-visual-hierarchy-contrast {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-visual-hierarchy-contrast i {
  color: #3b82f6;
}

.hero-stats-visual-hierarchy-contrast {
  display: flex;
  gap: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-visual-hierarchy-contrast {
  flex: 0 1 auto;
}

.stat-number-visual-hierarchy-contrast {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #3b82f6;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-visual-hierarchy-contrast {
  display: block;
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.hero-image-visual-hierarchy-contrast {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.breadcrumbs-visual-hierarchy-contrast {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumb-link-visual-hierarchy-contrast {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-visual-hierarchy-contrast:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.breadcrumb-separator-visual-hierarchy-contrast {
  color: #475569;
}

.breadcrumb-current-visual-hierarchy-contrast {
  color: #cbd5e1;
}

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

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

.intro-text-visual-hierarchy-contrast {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-visual-hierarchy-contrast {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-paragraph-visual-hierarchy-contrast {
  color: #374151;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

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

.principles-header-visual-hierarchy-contrast {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-visual-hierarchy-contrast {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.principles-title-visual-hierarchy-contrast {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.principles-subtitle-visual-hierarchy-contrast {
  color: #94a3b8;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.principles-list-visual-hierarchy-contrast {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.principle-item-visual-hierarchy-contrast {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
}

.principle-number-visual-hierarchy-contrast {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.principle-content-visual-hierarchy-contrast {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.principle-title-visual-hierarchy-contrast {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
}

.principle-text-visual-hierarchy-contrast {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

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

.application-content-visual-hierarchy-contrast {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.application-text-visual-hierarchy-contrast {
  flex: 1 1 50%;
  max-width: 50%;
}

.application-image-visual-hierarchy-contrast {
  flex: 1 1 50%;
  max-width: 50%;
}

.application-title-visual-hierarchy-contrast {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.application-paragraph-visual-hierarchy-contrast {
  color: #374151;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.highlight-quote-visual-hierarchy-contrast {
  padding: 2rem 2rem 2rem 1.5rem;
  border-left: 4px solid #3b82f6;
  background: #f0f4f8;
  margin: 2rem 0;
  border-radius: 8px;
}

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

.quote-author-visual-hierarchy-contrast {
  color: #64748b;
  font-size: 0.875rem;
  font-style: normal;
}

.application-img-visual-hierarchy-contrast {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contrast-standards-section-visual-hierarchy-contrast {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.contrast-standards-header-visual-hierarchy-contrast {
  text-align: center;
  margin-bottom: 3rem;
}

.contrast-standards-title-visual-hierarchy-contrast {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.contrast-standards-subtitle-visual-hierarchy-contrast {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.contrast-standards-content-visual-hierarchy-contrast {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.standards-text-visual-hierarchy-contrast {
  flex: 1 1 50%;
  max-width: 50%;
}

.standards-image-visual-hierarchy-contrast {
  flex: 1 1 50%;
  max-width: 50%;
}

.standards-paragraph-visual-hierarchy-contrast {
  color: #e2e8f0;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.standards-list-visual-hierarchy-contrast {
  list-style: none;
  margin-bottom: 1.5rem;
}

.standards-list-item-visual-hierarchy-contrast {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 1rem;
}

.standards-list-item-visual-hierarchy-contrast::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

.standards-strong-visual-hierarchy-contrast {
  color: #ffffff;
  font-weight: 600;
}

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

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

.tools-header-visual-hierarchy-contrast {
  text-align: center;
  margin-bottom: 3rem;
}

.tools-tag-visual-hierarchy-contrast {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.tools-title-visual-hierarchy-contrast {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.tools-card-visual-hierarchy-contrast {
  flex: 1 1 300px;
  max-width: 380px;
  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.2s ease, box-shadow 0.2s ease;
}

.tools-card-visual-hierarchy-contrast:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tools-card-icon-visual-hierarchy-contrast {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 10px;
  color: #3b82f6;
  font-size: 1.5rem;
}

.tools-card-title-visual-hierarchy-contrast {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
}

.tools-card-text-visual-hierarchy-contrast {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.conclusion-section-visual-hierarchy-contrast {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-content-visual-hierarchy-contrast {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-visual-hierarchy-contrast {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.conclusion-text-visual-hierarchy-contrast {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-button-visual-hierarchy-contrast {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2rem);
  background: #3b82f6;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 1rem;
}

.cta-button-visual-hierarchy-contrast:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.disclaimer-section-visual-hierarchy-contrast {
  background: #1e293b;
  padding: clamp(2rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-content-visual-hierarchy-contrast {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-visual-hierarchy-contrast {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-visual-hierarchy-contrast {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.related-section-visual-hierarchy-contrast {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.related-header-visual-hierarchy-contrast {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-visual-hierarchy-contrast {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.related-subtitle-visual-hierarchy-contrast {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
}

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

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

.related-card-visual-hierarchy-contrast:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.related-card-content-visual-hierarchy-contrast {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 2vw, 1.5rem);
}

.related-card-title-visual-hierarchy-contrast {
  color: #0f172a;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-visual-hierarchy-contrast {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-visual-hierarchy-contrast {
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.2s ease;
  margin-top: 0.5rem;
}

.related-card-link-visual-hierarchy-contrast:hover {
  color: #2563eb;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-content-visual-hierarchy-contrast,
  .intro-content-visual-hierarchy-contrast,
  .application-content-visual-hierarchy-contrast,
  .contrast-standards-content-visual-hierarchy-contrast {
    flex-direction: column;
  }

  .hero-text-block-visual-hierarchy-contrast,
  .hero-image-block-visual-hierarchy-contrast,
  .intro-text-visual-hierarchy-contrast,
  .intro-image-visual-hierarchy-contrast,
  .application-text-visual-hierarchy-contrast,
  .application-image-visual-hierarchy-contrast,
  .standards-text-visual-hierarchy-contrast,
  .standards-image-visual-hierarchy-contrast {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .principle-item-visual-hierarchy-contrast {
    flex-direction: column;
    gap: 1rem;
  }

  .principle-number-visual-hierarchy-contrast {
    min-width: auto;
  }

  .tools-grid-visual-hierarchy-contrast,
  .related-cards-visual-hierarchy-contrast {
    flex-direction: column;
  }

  .tools-card-visual-hierarchy-contrast,
  .related-card-visual-hierarchy-contrast {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-visual-hierarchy-contrast {
    gap: 1.5rem;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-visual-hierarchy-contrast {
    font-size: 0.75rem;
  }

  .breadcrumb-separator-visual-hierarchy-contrast {
    margin: 0 0.25rem;
  }

  .hero-meta-visual-hierarchy-contrast {
    gap: 0.75rem;
  }

  .meta-badge-visual-hierarchy-contrast {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }

  .hero-stats-visual-hierarchy-contrast {
    gap: 1rem;
    border-top: none;
    padding-top: 0;
    margin-top: 1rem;
  }

  .stat-number-visual-hierarchy-contrast {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }

  .stat-label-visual-hierarchy-contrast {
    font-size: 0.75rem;
  }
}

/* Post Page 2 Styles */
.main-web-layout-fundamentals {
    width: 100%;
  }

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

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

  .hero-text-block-web-layout-fundamentals {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .breadcrumbs-web-layout-fundamentals {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
  }

  .breadcrumb-link-web-layout-fundamentals {
    color: #38bdf8;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .breadcrumb-link-web-layout-fundamentals:hover {
    color: #0284c7;
  }

  .breadcrumb-separator-web-layout-fundamentals {
    color: #64748b;
  }

  .breadcrumb-current-web-layout-fundamentals {
    color: #cbd5e1;
  }

  .hero-title-web-layout-fundamentals {
    font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.15;
  }

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

  .article-meta-web-layout-fundamentals {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .meta-badge-web-layout-fundamentals {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 20px;
    font-size: 0.875rem;
    color: #38bdf8;
  }

  .meta-badge-web-layout-fundamentals i {
    font-size: 0.875rem;
  }

  .hero-image-block-web-layout-fundamentals {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .hero-image-web-layout-fundamentals {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    max-width: 100%;
  }

  .hero-stats-web-layout-fundamentals {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: flex-start;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-item-web-layout-fundamentals {
    flex: 0 1 auto;
  }

  .stat-number-web-layout-fundamentals {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #38bdf8;
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .stat-label-web-layout-fundamentals {
    display: block;
    font-size: 0.875rem;
    color: #94a3b8;
  }

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

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

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

  .intro-title-web-layout-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-description-web-layout-fundamentals {
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
    color: #334155;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

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

  .intro-image-web-layout-fundamentals {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    max-width: 100%;
  }

  .principles-section-web-layout-fundamentals {
    background: #f8fafc;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .principles-header-web-layout-fundamentals {
    text-align: center;
    margin-bottom: 3rem;
  }

  .section-tag-web-layout-fundamentals {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

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

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

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

  .principles-text-block-web-layout-fundamentals {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .principle-item-web-layout-fundamentals {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

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

  .principle-text-web-layout-fundamentals {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

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

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

  .principles-image-block-web-layout-fundamentals {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .principles-image-web-layout-fundamentals {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    max-width: 100%;
  }

  .responsive-section-web-layout-fundamentals {
    background: #0a0f1e;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

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

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

  .responsive-image-web-layout-fundamentals {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    max-width: 100%;
  }

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

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

  .responsive-description-web-layout-fundamentals {
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .featured-quote-web-layout-fundamentals {
    padding: 2rem 2.5rem;
    border-left: 4px solid #38bdf8;
    background: rgba(59, 130, 246, 0.1);
    margin: 2rem 0;
    font-style: italic;
  }

  .quote-text-web-layout-fundamentals {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  .quote-author-web-layout-fundamentals {
    font-size: 0.875rem;
    color: #94a3b8;
    font-style: normal;
  }

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

  .techniques-header-web-layout-fundamentals {
    text-align: center;
    margin-bottom: 3rem;
  }

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

  .techniques-grid-web-layout-fundamentals {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 2rem);
  }

  .technique-card-web-layout-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: transform 0.3s ease, box-shadow 0.3s ease;
  }

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

  .technique-icon-web-layout-fundamentals {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    border-radius: 10px;
    color: #3b82f6;
    font-size: 1.5rem;
  }

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

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

  .practice-section-web-layout-fundamentals {
    background: #f8fafc;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

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

  .practice-text-block-web-layout-fundamentals {
    flex: 1 1 50%;
    max-width: 50%;
  }

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

  .practice-steps-web-layout-fundamentals {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .practice-step-web-layout-fundamentals {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
  }

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

  .practice-step-content-web-layout-fundamentals {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .practice-step-title-web-layout-fundamentals {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
  }

  .practice-step-text-web-layout-fundamentals {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
  }

  .practice-image-block-web-layout-fundamentals {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .practice-image-web-layout-fundamentals {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    max-width: 100%;
  }

  .tools-section-web-layout-fundamentals {
    background: #0a0f1e;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .tools-header-web-layout-fundamentals {
    text-align: center;
    margin-bottom: 3rem;
  }

  .tools-title-web-layout-fundamentals {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
  }

  .tools-subtitle-web-layout-fundamentals {
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
    color: #cbd5e1;
  }

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

  .tools-image-block-web-layout-fundamentals {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .tools-image-web-layout-fundamentals {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    max-width: 100%;
  }

  .tools-list-block-web-layout-fundamentals {
    flex: 1 1 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .tool-item-web-layout-fundamentals {
    padding: 0;
  }

  .tool-name-web-layout-fundamentals {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
  }

  .tool-description-web-layout-fundamentals {
    font-size: 0.9375rem;
    color: #cbd5e1;
    line-height: 1.6;
  }

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

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

  .conclusion-title-web-layout-fundamentals {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2rem;
    text-align: center;
  }

  .conclusion-text-web-layout-fundamentals {
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
    color: #334155;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .cta-box-web-layout-fundamentals {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
    margin-top: 3rem;
  }

  .cta-title-web-layout-fundamentals {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
  }

  .cta-description-web-layout-fundamentals {
    font-size: 0.9375rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    opacity: 0.95;
  }

  .cta-box-web-layout-fundamentals .btn {
    background: #ffffff;
    color: #3b82f6;
  }

  .cta-box-web-layout-fundamentals .btn:hover {
    background: #f0f9ff;
  }

  .disclaimer-section-web-layout-fundamentals {
    background: #f8fafc;
    padding: clamp(2rem, 4vw, 3rem) 0;
    border-top: 1px solid #e2e8f0;
    overflow: hidden;
  }

  .disclaimer-content-web-layout-fundamentals {
    max-width: 800px;
    margin: 0 auto;
  }

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

  .disclaimer-text-web-layout-fundamentals {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
  }

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

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

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

  .related-subtitle-web-layout-fundamentals {
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
    color: #64748b;
  }

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

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

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

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

  .related-card-content-web-layout-fundamentals {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: clamp(1rem, 3vw, 1.5rem);
  }

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

  .related-card-text-web-layout-fundamentals {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    flex-grow: 1;
  }

  .related-card-link-web-layout-fundamentals {
    color: #3b82f6;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
  }

  .related-card-link-web-layout-fundamentals:hover {
    color: #0284c7;
    text-decoration: underline;
  }

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

    .hero-text-block-web-layout-fundamentals,
    .hero-image-block-web-layout-fundamentals {
      flex: 1 1 100%;
      max-width: none;
    }

    .hero-stats-web-layout-fundamentals {
      flex-direction: column;
      gap: 1.5rem;
      align-items: flex-start;
    }

    .intro-content-web-layout-fundamentals,
    .principles-content-web-layout-fundamentals,
    .responsive-content-web-layout-fundamentals,
    .practice-content-web-layout-fundamentals,
    .tools-content-web-layout-fundamentals {
      flex-direction: column;
    }

    .intro-text-block-web-layout-fundamentals,
    .intro-image-block-web-layout-fundamentals,
    .principles-text-block-web-layout-fundamentals,
    .principles-image-block-web-layout-fundamentals,
    .responsive-image-block-web-layout-fundamentals,
    .responsive-text-block-web-layout-fundamentals,
    .practice-text-block-web-layout-fundamentals,
    .practice-image-block-web-layout-fundamentals,
    .tools-image-block-web-layout-fundamentals,
    .tools-list-block-web-layout-fundamentals {
      flex: 1 1 100%;
      max-width: none;
    }

    .technique-card-web-layout-fundamentals {
      flex: 1 1 100%;
      max-width: none;
    }

    .principle-item-web-layout-fundamentals {
      gap: 1rem;
    }

    .practice-steps-web-layout-fundamentals {
      gap: 1rem;
    }

    .practice-step-web-layout-fundamentals {
      padding: 1rem;
      gap: 1rem;
    }

    .tools-list-block-web-layout-fundamentals {
      gap: 1.5rem;
    }

    .related-card-web-layout-fundamentals {
      flex: 1 1 100%;
      max-width: none;
    }
  }

  @media (max-width: 1024px) {
    .hero-stats-web-layout-fundamentals {
      gap: 2rem;
    }
  }

/* Post Page 3 Styles */
.main-responsive-design-guide {
  width: 100%;
  background: #ffffff;
}

.hero-section-responsive-design-guide {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

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

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

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

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

.hero-description-responsive-design-guide {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

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

.meta-badge-responsive-design-guide {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-responsive-design-guide i {
  color: #60a5fa;
}

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

.hero-stats-responsive-design-guide {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-responsive-design-guide {
  flex: 0 1 auto;
  text-align: center;
}

.stat-number-responsive-design-guide {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-responsive-design-guide {
  display: block;
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.breadcrumbs-responsive-design-guide {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.875rem;
}

.breadcrumbs-responsive-design-guide a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-responsive-design-guide a:hover {
  color: #93c5fd;
}

.breadcrumbs-responsive-design-guide span {
  color: #64748b;
}

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

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

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

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

.intro-title-responsive-design-guide {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-description-responsive-design-guide {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

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

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

.section-tag-responsive-design-guide {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.foundation-title-responsive-design-guide {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: 1rem;
}

.foundation-subtitle-responsive-design-guide {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.principles-wrapper-responsive-design-guide {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.principle-text-responsive-design-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.principle-intro-responsive-design-guide {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.principles-list-responsive-design-guide {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.principle-item-responsive-design-guide {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

.principle-number-responsive-design-guide {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

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

.principle-item-title-responsive-design-guide {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
}

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

.principle-image-responsive-design-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.principle-image-responsive-design-guide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.breakpoints-section-responsive-design-guide {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.breakpoints-image-responsive-design-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.breakpoints-image-responsive-design-guide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.breakpoints-text-responsive-design-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.breakpoints-description-responsive-design-guide {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.breakpoints-quote-responsive-design-guide {
  padding: 1.5rem 2rem;
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  border-radius: 4px;
}

.quote-text-responsive-design-guide {
  color: #ffffff;
  font-size: 1.0625rem;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-responsive-design-guide {
  color: #94a3b8;
  font-size: 0.875rem;
  font-style: normal;
}

.breakpoints-list-responsive-design-guide {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.breakpoint-item-responsive-design-guide {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.breakpoint-label-responsive-design-guide {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.breakpoint-range-responsive-design-guide {
  color: #60a5fa;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.breakpoint-detail-responsive-design-guide {
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.6;
}

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

.implementation-wrapper-responsive-design-guide {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.implementation-text-responsive-design-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-subtitle-responsive-design-guide {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.implementation-subtitle-responsive-design-guide:first-child {
  margin-top: 0;
}

.implementation-description-responsive-design-guide {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.implementation-image-responsive-design-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-responsive-design-guide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.best-practices-section-responsive-design-guide {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.best-practices-cards-responsive-design-guide {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.best-practice-card-responsive-design-guide {
  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;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.best-practice-card-responsive-design-guide:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.best-practice-icon-responsive-design-guide {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  color: #3b82f6;
  font-size: 1.5rem;
}

.best-practice-title-responsive-design-guide {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
}

.best-practice-text-responsive-design-guide {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
}

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

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

.conclusion-title-responsive-design-guide {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-text-responsive-design-guide {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-cta-responsive-design-guide {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.cta-button-responsive-design-guide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #3b82f6;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button-responsive-design-guide:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.disclaimer-section-responsive-design-guide {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-responsive-design-guide {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-responsive-design-guide {
  color: #92400e;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-responsive-design-guide {
  color: #78350f;
  font-size: 0.9375rem;
  line-height: 1.7;
}

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

.related-title-responsive-design-guide {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: 0.5rem;
}

.related-subtitle-responsive-design-guide {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

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

.related-card-responsive-design-guide {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.related-card-responsive-design-guide:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

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

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

.related-card-title-responsive-design-guide {
  color: #1e293b;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.3;
}

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

@media (max-width: 768px) {
  .hero-content-responsive-design-guide,
  .intro-wrapper-responsive-design-guide,
  .principles-wrapper-responsive-design-guide,
  .breakpoints-wrapper-responsive-design-guide,
  .implementation-wrapper-responsive-design-guide {
    flex-direction: column;
  }

  .hero-text-responsive-design-guide,
  .hero-image-responsive-design-guide,
  .intro-text-responsive-design-guide,
  .intro-image-responsive-design-guide,
  .principle-text-responsive-design-guide,
  .principle-image-responsive-design-guide,
  .breakpoints-image-responsive-design-guide,
  .breakpoints-text-responsive-design-guide,
  .implementation-text-responsive-design-guide,
  .implementation-image-responsive-design-guide {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .best-practice-card-responsive-design-guide {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-card-responsive-design-guide {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-stats-responsive-design-guide {
    gap: 1.5rem;
  }

  .stat-item-responsive-design-guide {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

/* Post Page 4 Styles */
.main-typography-web-design {
  width: 100%;
}

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

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

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

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

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

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

.hero-meta-typography-web-design {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meta-badge-typography-web-design {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #94a3b8;
}

.meta-badge-typography-web-design i {
  color: #3b82f6;
}

.hero-stats-typography-web-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.stat-label-typography-web-design {
  font-size: 0.875rem;
  color: #94a3b8;
}

.hero-image-typography-web-design {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.breadcrumbs-typography-web-design {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-typography-web-design a {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-typography-web-design a:hover {
  color: #0ea5e9;
  text-decoration: underline;
}

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

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

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

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

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

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

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

.intro-image-typography-web-design {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.content-section-one-typography-web-design {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-one-typography-web-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-typography-web-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-typography-web-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.content-paragraph-one-typography-web-design {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.font-types-list-typography-web-design {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.font-type-item-typography-web-design {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #3b82f6;
  border-radius: 8px;
}

.font-type-name-typography-web-design {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.font-type-desc-typography-web-design {
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.6;
}

.content-image-typography-web-design {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

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

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

.content-image-two-typography-web-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-text-two-typography-web-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-typography-web-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.content-paragraph-two-typography-web-design {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #334155;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.featured-quote-typography-web-design {
  padding: 2rem 2.5rem;
  border-left: 4px solid #3b82f6;
  background: #f8fafc;
  margin: 2rem 0;
  border-radius: 8px;
}

.quote-text-typography-web-design {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #0f172a;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-typography-web-design {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.tips-section-typography-web-design {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-header-typography-web-design {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-typography-web-design {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.tips-title-typography-web-design {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.tips-subtitle-typography-web-design {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.tips-grid-typography-web-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.tips-card-typography-web-design {
  flex: 1 1 calc(50% - 1rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tips-card-typography-web-design:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.tips-card-number-typography-web-design {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.tips-card-title-typography-web-design {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.tips-card-text-typography-web-design {
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.6;
}

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

.tools-header-typography-web-design {
  text-align: center;
  margin-bottom: 3rem;
}

.tools-title-typography-web-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

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

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

.tools-left-block-typography-web-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-right-block-typography-web-design {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tools-image-typography-web-design {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.tools-item-typography-web-design {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 3px solid #3b82f6;
}

.tools-item-name-typography-web-design {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.tools-item-desc-typography-web-design {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

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

.conclusion-title-typography-web-design {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-text-typography-web-design {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

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

.cta-box-text-typography-web-design {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cta-box-typography-web-design .btn {
  background: #ffffff;
  color: #3b82f6;
}

.cta-box-typography-web-design .btn:hover {
  background: #f1f5f9;
}

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

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

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

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

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

.related-card-typography-web-design {
  flex: 1 1 calc(33.333% - 1.33rem);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

.related-card-desc-typography-web-design {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-typography-web-design {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-link-typography-web-design:hover {
  color: #2563eb;
  gap: 1rem;
}

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

.disclaimer-content-typography-web-design {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.1);
  border-left: 3px solid #3b82f6;
  border-radius: 8px;
}

.disclaimer-title-typography-web-design {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.disclaimer-text-typography-web-design {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-content-typography-web-design,
  .intro-content-typography-web-design,
  .content-wrapper-one-typography-web-design,
  .content-wrapper-two-typography-web-design,
  .tools-content-typography-web-design {
    flex-direction: column;
  }

  .hero-text-block-typography-web-design,
  .hero-image-block-typography-web-design,
  .intro-text-block-typography-web-design,
  .intro-image-block-typography-web-design,
  .content-text-one-typography-web-design,
  .content-image-one-typography-web-design,
  .content-image-two-typography-web-design,
  .content-text-two-typography-web-design,
  .tools-left-block-typography-web-design,
  .tools-right-block-typography-web-design {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tips-card-typography-web-design {
    flex: 1 1 100%;
  }

  .related-card-typography-web-design {
    flex: 1 1 100%;
  }

  .hero-stats-typography-web-design {
    gap: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .tips-card-typography-web-design {
    flex: 1 1 calc(50% - 1rem);
  }

  .related-card-typography-web-design {
    flex: 1 1 calc(50% - 1rem);
  }
}

/* Post Page 5 Styles */
.main-web-design-trends-2026 {
  width: 100%;
}

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

.hero-content-web-design-trends-2026 {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

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

.hero-image-web-design-trends-2026 {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.breadcrumbs-web-design-trends-2026 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.9375rem;
}

.breadcrumbs-web-design-trends-2026 a {
  color: #60a5fa;
  transition: color 0.3s ease;
}

.breadcrumbs-web-design-trends-2026 a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.breadcrumbs-web-design-trends-2026 span {
  color: #64748b;
}

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

.hero-description-web-design-trends-2026 {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-meta-web-design-trends-2026 {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.meta-badge-web-design-trends-2026 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-web-design-trends-2026 i {
  color: #60a5fa;
}

.hero-stats-web-design-trends-2026 {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: flex-start;
}

.stat-item-web-design-trends-2026 {
  flex: 0 1 auto;
}

.stat-number-web-design-trends-2026 {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-web-design-trends-2026 {
  display: block;
  font-size: 0.875rem;
  color: #94a3b8;
}

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

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

.intro-text-block-web-design-trends-2026 {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-block-web-design-trends-2026 {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.intro-text-web-design-trends-2026 {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-text-web-design-trends-2026:last-child {
  margin-bottom: 0;
}

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

.section-header-web-design-trends-2026 {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag-web-design-trends-2026 {
  display: inline-block;
  padding: clamp(0.375rem, 0.75vw, 0.5rem) clamp(1rem, 2vw, 1.5rem);
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

.trends-subtitle-web-design-trends-2026 {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

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

.trends-card-web-design-trends-2026 {
  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;
}

.trends-card-web-design-trends-2026:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.trends-card-icon-web-design-trends-2026 {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 12px;
  font-size: 1.5rem;
}

.trends-card-title-web-design-trends-2026 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

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

.deep-dive-section-web-design-trends-2026 {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.deep-dive-content-web-design-trends-2026 {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.deep-dive-text-web-design-trends-2026 {
  flex: 1 1 50%;
  max-width: 50%;
}

.deep-dive-image-web-design-trends-2026 {
  flex: 1 1 50%;
  max-width: 50%;
}

.deep-dive-image-web-design-trends-2026 img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.deep-dive-title-web-design-trends-2026 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.deep-dive-text-web-design-trends-2026 p {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.deep-dive-text-web-design-trends-2026 p:last-of-type {
  margin-bottom: 2rem;
}

.featured-quote-web-design-trends-2026 {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  margin: clamp(2rem, 4vw, 3rem) 0;
}

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

.quote-author-web-design-trends-2026 {
  font-size: 0.875rem;
  color: #94a3b8;
  font-style: normal;
}

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

.process-title-web-design-trends-2026 {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.process-steps-web-design-trends-2026 {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

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

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

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

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

.process-step-text-web-design-trends-2026 {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.palette-section-web-design-trends-2026 {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.palette-content-web-design-trends-2026 {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.palette-image-web-design-trends-2026 {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.palette-text-web-design-trends-2026 {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.palette-text-web-design-trends-2026 p {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.palette-text-web-design-trends-2026 p:last-child {
  margin-bottom: 0;
}

.conclusion-section-web-design-trends-2026 {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-web-design-trends-2026 {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-web-design-trends-2026 {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.conclusion-text-web-design-trends-2026 {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-text-web-design-trends-2026:last-of-type {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.cta-box-web-design-trends-2026 {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
}

.cta-title-web-design-trends-2026 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.cta-text-web-design-trends-2026 {
  font-size: 0.9375rem;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  opacity: 0.95;
}

.btn-primary-web-design-trends-2026 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  color: #3b82f6;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary-web-design-trends-2026:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.related-title-web-design-trends-2026 {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.related-subtitle-web-design-trends-2026 {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

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

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

.related-card-web-design-trends-2026:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.related-card-image-web-design-trends-2026 {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.related-card-content-web-design-trends-2026 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.related-card-title-web-design-trends-2026 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.related-card-text-web-design-trends-2026 {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
  flex-grow: 1;
}

.related-card-link-web-design-trends-2026 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-card-link-web-design-trends-2026:hover {
  color: #2563eb;
  text-decoration: underline;
}

.disclaimer-section-web-design-trends-2026 {
  background: #0f172a;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-web-design-trends-2026 {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
}

.disclaimer-title-web-design-trends-2026 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 1rem;
}

.disclaimer-text-web-design-trends-2026 {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.7;
}

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

  .hero-text-wrapper-web-design-trends-2026,
  .hero-image-wrapper-web-design-trends-2026 {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-web-design-trends-2026 {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .intro-content-web-design-trends-2026 {
    flex-direction: column;
  }

  .intro-text-block-web-design-trends-2026,
  .intro-image-block-web-design-trends-2026 {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .trends-card-web-design-trends-2026 {
    flex: 1 1 100%;
    max-width: none;
  }

  .deep-dive-content-web-design-trends-2026 {
    flex-direction: column;
  }

  .deep-dive-text-web-design-trends-2026,
  .deep-dive-image-web-design-trends-2026 {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .process-step-web-design-trends-2026 {
    flex-direction: column;
    align-items: flex-start;
  }

  .palette-content-web-design-trends-2026 {
    flex-direction: column;
  }

  .palette-image-web-design-trends-2026,
  .palette-text-web-design-trends-2026 {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

  .section-header-web-design-trends-2026 {
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  }
}

/* About Page Styles */
.kudede-educational-about {
  font-family: var(--font-primary);
  color: var(--color-text-light-primary);
}

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

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

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

.hero-gateway-title-about {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-text-light-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-gateway-subtitle-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-light-secondary);
  max-width: 600px;
  line-height: 1.6;
}

.hero-gateway-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

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

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

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

.stat-label-gateway-about {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-light-muted);
  font-weight: 500;
}

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

@media (min-width: 1024px) {
  .hero-gateway-about {
    padding: clamp(6rem, 12vw, 8rem) 0;
  }

  .hero-gateway-content-about {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }

  .hero-gateway-image-about {
    flex: 1;
    max-width: 500px;
    margin-top: 0;
  }
}

.vision-foundation-about {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.vision-foundation-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

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

.vision-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary-light);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.vision-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.vision-description-about {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.vision-blocks-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 3vw, 2.5rem);
}

.vision-block-about {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vision-block-icon-about {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-primary-light);
  font-size: 1.5rem;
}

.vision-block-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
}

.vision-block-text-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-dark-muted);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .vision-foundation-about {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }

  .vision-blocks-about {
    justify-content: center;
  }

  .vision-block-about {
    flex: 1 1 280px;
  }
}

@media (min-width: 1024px) {
  .vision-foundation-about {
    padding: clamp(6rem, 12vw, 8rem) 0;
  }

  .vision-block-about {
    flex: 1 1 300px;
  }
}

.methodology-journey-about {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.methodology-subtitle-about {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-light-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.methodology-step-about {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

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

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

.methodology-step-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.methodology-step-text-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-light-muted);
  line-height: 1.6;
}

.methodology-visual-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

@media (min-width: 768px) {
  .methodology-journey-about {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .methodology-journey-about {
    padding: clamp(6rem, 12vw, 8rem) 0;
  }
}

.values-ecosystem-about {
  background: var(--color-bg-dark-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.values-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.values-intro-about {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.value-card-about {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.value-card-about:hover {
  transform: translateY(-4px);
  background: rgba(59, 130, 246, 0.15);
}

.value-card-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-primary-light);
  font-size: 1.75rem;
}

.value-card-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
}

.value-card-text-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-dark-muted);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .values-ecosystem-about {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }

  .value-card-about {
    flex: 1 1 260px;
  }
}

@media (min-width: 1024px) {
  .values-ecosystem-about {
    padding: clamp(6rem, 12vw, 8rem) 0;
  }

  .value-card-about {
    flex: 1 1 280px;
    max-width: 350px;
  }
}

.featured-quote-about {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.1);
  margin: clamp(2rem, 3vw, 3rem) 0;
  border-radius: var(--radius-md);
}

.featured-quote-text-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 500;
  color: var(--color-text-light-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.featured-quote-author-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-muted);
  font-style: normal;
}

.disclaimer-section-about {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

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

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.disclaimer-icon-about {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  margin: 0;
}

.disclaimer-text-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  margin: 0;
}

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

  .disclaimer-content-about {
    padding: clamp(2rem, 3vw, 2.5rem);
  }
}

@media (min-width: 1024px) {
  .disclaimer-section-about {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }
}

/* Privacy Page Styles */
:root {
  --color-bg-dark-primary: #0a0f1e;
  --color-bg-dark-secondary: #0f172a;
  --color-bg-dark-tertiary: #1e293b;
  --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-dark-primary: #ffffff;
  --color-text-dark-secondary: #e2e8f0;
  --color-text-dark-muted: #94a3b8;
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #334155;
  --color-text-light-muted: #64748b;
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-primary-light: #60a5fa;
  --color-secondary: #06b6d4;
  --color-secondary-hover: #0891b2;
  --color-accent: #f59e0b;
  --color-accent-hover: #d97706;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-dark-lg: 0 10px 40px rgba(0, 0, 0, 0.3);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
}

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

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

body {
  font-family: var(--font-primary), sans-serif;
  line-height: 1.6;
}

.docs-center {
  background: var(--color-bg-light-primary);
  color: var(--color-text-light-primary);
}

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

section {
  width: 100%;
}

.hero-section {
  background: var(--color-bg-light-secondary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.hero-section h1 {
  font-family: var(--font-heading), sans-serif;
  font-size: clamp(1.75rem, 5vw + 1rem, 3rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-section-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: clamp(0.5rem, 2vw, 1rem);
}

.hero-section-meta p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-muted);
}

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

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

.content-section h2 {
  font-family: var(--font-heading), sans-serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.3;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.content-section p {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-section ul {
  margin-left: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.content-section li {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

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

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

.contact-section h2 {
  font-family: var(--font-heading), sans-serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.3;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.contact-section p {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

.contact-section strong {
  color: var(--color-text-light-primary);
  font-weight: 600;
}

.contact-info-block {
  background: var(--color-bg-light-primary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-info-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.contact-info-value {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
}

@media (min-width: 768px) {
  .contact-info-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .contact-info-item:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 4rem 0;
  }

  .content-section {
    padding: 6rem 0;
  }

  .contact-section {
    padding: 6rem 0;
  }
}

/* Thank You Page Styles */
/* Thank You Page Styles */
.thank-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.thank-section {
  width: 100%;
  background: linear-gradient(135deg, var(--color-bg-dark-primary) 0%, var(--color-bg-dark-secondary) 100%);
  padding: clamp(2.5rem, 6vw, 6rem) 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, 3vw, 2.5rem);
  padding: clamp(2rem, 5vw, 3rem);
}

/* Success Icon */
.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(60px, 12vw, 100px);
  height: clamp(60px, 12vw, 100px);
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  animation: icon-pulse 0.6s ease-out;
}

.thank-icon i {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--color-primary-light);
}

@keyframes icon-pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Typography - Dark Background */
.thank-section h1 {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-lead {
  color: var(--color-primary-light);
  font-size: clamp(1rem, 2.5vw + 0.5rem, 1.375rem);
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.thank-description,
.thank-next-steps {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-description {
  max-width: 600px;
}

.thank-next-steps {
  max-width: 600px;
  color: var(--color-text-dark-muted);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  white-space: nowrap;
  word-wrap: normal;
}

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

.btn-primary:hover,
.btn-primary:focus {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

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

/* Responsive Design */
@media (min-width: 768px) {
  .thank-section {
    padding: clamp(4rem, 8vw, 8rem) 0;
    min-height: 100vh;
  }

  .thank-content {
    padding: clamp(3rem, 6vw, 4rem);
    gap: clamp(2rem, 4vw, 3rem);
  }

  .thank-icon {
    width: clamp(80px, 14vw, 120px);
    height: clamp(80px, 14vw, 120px);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(6rem, 10vw, 10rem) 0;
    min-height: 100vh;
  }

  .thank-content {
    padding: clamp(4rem, 8vw, 5rem);
    gap: clamp(2.5rem, 5vw, 3.5rem);
  }

  .thank-icon {
    width: 120px;
    height: 120px;
  }

  .thank-icon i {
    font-size: 3.5rem;
  }
}

/* Accessibility */
.btn:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .thank-icon {
    animation: none;
  }

  .btn {
    transition: none;
  }
}

/* 404 Page Styles */
/* ============================================
   Error Page Component
   ============================================ */

.main.error-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Error Section */
.error-section {
  width: 100%;
  background: var(--color-bg-dark-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.error-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(2rem, 5vw, 4rem);
}

/* Error Visual */
.error-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.error-code-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw + 2rem, 10rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.05em;
  text-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
  animation: float 3s ease-in-out infinite;
}

.error-decoration {
  position: absolute;
  right: clamp(-1rem, -5vw, -3rem);
  top: clamp(-1rem, -3vw, -1.5rem);
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--color-secondary);
  animation: spin 8s linear infinite;
}

/* Error Message */
.error-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 600px;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.02em;
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Error Suggestions */
.error-suggestions {
  width: 100%;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  margin: clamp(0.5rem, 2vw, 1rem) 0;
}

.suggestion-label {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  color: var(--color-primary-light);
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.suggestion-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.suggestion-list li {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.5;
}

.suggestion-list i {
  color: var(--color-secondary);
  flex-shrink: 0;
  font-size: 1.25rem;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

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

.btn-large {
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(2rem, 5vw, 3rem);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
}

/* Background Decorations */
.error-background-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.decoration-1 {
  width: clamp(200px, 40vw, 600px);
  height: clamp(200px, 40vw, 600px);
  background: var(--color-primary);
  top: -20%;
  right: -10%;
  animation: float-slow 6s ease-in-out infinite;
}

.decoration-2 {
  width: clamp(150px, 30vw, 400px);
  height: clamp(150px, 30vw, 400px);
  background: var(--color-secondary);
  bottom: -15%;
  left: -5%;
  animation: float-slow 8s ease-in-out infinite reverse;
}

.decoration-3 {
  width: clamp(100px, 20vw, 300px);
  height: clamp(100px, 20vw, 300px);
  background: var(--color-accent);
  top: 30%;
  left: 5%;
  animation: float 7s ease-in-out infinite;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes float-slow {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-40px);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
  }
}

/* ============================================
   Responsive Design
   ============================================ */

@media (min-width: 768px) {
  .error-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    min-height: 100vh;
  }

  .error-content {
    gap: clamp(2.5rem, 6vw, 5rem);
  }

  .error-code {
    transition: transform 0.3s ease;
  }

  .error-code:hover {
    transform: scale(1.05);
  }

  .error-suggestions {
    padding: clamp(1.5rem, 4vw, 2.5rem);
  }

  .suggestion-list {
    gap: 1rem;
  }

  .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: 4rem 0;
  }

  .error-content {
    gap: 4rem;
  }

  .error-code-wrapper {
    position: relative;
  }

  .error-code {
    position: relative;
    z-index: 1;
  }

  .error-decoration {
    right: -2rem;
    top: -2rem;
  }

  .error-message {
    max-width: 700px;
  }

  .error-suggestions {
    margin: 1.5rem 0;
  }
}

@media (min-width: 1440px) {
  .error-section {
    padding: 5rem 0;
  }

  .error-content {
    gap: 4rem;
  }

  .error-code {
    font-size: 10rem;
  }

  .error-title {
    font-size: 3rem;
  }

  .error-description {
    font-size: 1.125rem;
  }

  .btn-large {
    padding: 1.25rem 3rem;
  }
}

/* ============================================
   Accessibility & Mobile Optimization
   ============================================ */

@media (max-height: 700px) {
  .error-section {
    min-height: auto;
    padding: 2rem 0;
  }

  .error-content {
    gap: 1.5rem;
  }

  .error-decoration {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code,
  .error-decoration,
  .decoration-circle {
    animation: none;
  }

  .btn-primary {
    transition: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

/* Ensure text is always readable */
.error-section h2,
.error-section p,
.error-section li,
.error-section a {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

label{
  color: #000 !important;
}
.contact-input-index, .contact-textarea-index{
  border: 1px solid #000;
}