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

:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #9ca3af;
  
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #0d9488;
  --color-accent: #f59e0b;
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

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

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

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

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

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

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

.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: #0c8a7c;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

.grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

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

.flex {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
}

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

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

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

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

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

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

.hidden {
  display: none;
}

.visible {
  display: block;
}

@media (max-width: 767px) {
  .hidden-mobile {
    display: none;
  }
}

@media (min-width: 768px) {
  .hidden-tablet {
    display: none;
  }
}

@media (min-width: 1024px) {
  .hidden-desktop {
    display: none;
  }
}
.header-advisory-nexus {
    background: var(--color-bg-primary);
    border-bottom: 1px solid var(--color-bg-tertiary);
    position: relative;
    z-index: 100;
  }

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

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

  .header-advisory-nexus-brand:hover {
    opacity: 0.85;
  }

  .header-advisory-nexus-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 0.25rem;
    flex-shrink: 0;
  }

  .header-advisory-nexus-logo-text {
    font-size: clamp(1rem, 2vw, 1.375rem);
    font-weight: 700;
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
  }

  .header-advisory-nexus-desktop-nav {
    display: none;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .header-advisory-nexus-nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 300ms ease;
    position: relative;
  }

  .header-advisory-nexus-nav-link:hover {
    color: var(--color-primary);
  }

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

  .header-advisory-nexus-nav-link:hover::after {
    width: 100%;
  }

  .header-advisory-nexus-cta-button {
    padding: clamp(0.625rem, 1.5vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 300ms ease;
    display: inline-block;
    white-space: nowrap;
  }

  .header-advisory-nexus-cta-button:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
  }

  .header-advisory-nexus-cta-button:active {
    transform: translateY(0);
  }

  .header-advisory-nexus-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }

  .header-advisory-nexus-hamburger {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 1px;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header-advisory-nexus-mobile-toggle[aria-expanded="true"] .header-advisory-nexus-hamburger:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }

  .header-advisory-nexus-mobile-toggle[aria-expanded="true"] .header-advisory-nexus-hamburger:nth-child(2) {
    opacity: 0;
  }

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

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

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

  .header-advisory-nexus-mobile-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-bg-tertiary);
  }

  .header-advisory-nexus-mobile-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-primary);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 300ms ease;
  }

  .header-advisory-nexus-mobile-close:hover {
    color: var(--color-primary);
  }

  .header-advisory-nexus-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    flex: 1;
  }

  .header-advisory-nexus-mobile-link {
    padding: 1rem 1.5rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 300ms ease;
    border-left: 3px solid transparent;
  }

  .header-advisory-nexus-mobile-link:hover {
    background: var(--color-bg-secondary);
    color: var(--color-primary);
    border-left-color: var(--color-primary);
    padding-left: 1.25rem;
  }

  .header-advisory-nexus-mobile-cta {
    padding: 1rem 1.5rem;
    margin: 1.5rem;
    background: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 300ms ease;
  }

  .header-advisory-nexus-mobile-cta:hover {
    background: var(--color-primary-hover);
  }

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

    .header-advisory-nexus-mobile-menu {
      display: none;
    }

    .header-advisory-nexus-desktop-nav {
      display: flex;
    }

    .header-advisory-nexus-container {
      gap: 2rem;
    }
  }

  @media (max-width: 1024px) {
    .header-advisory-nexus-desktop-nav {
      gap: 1rem;
    }

    .header-advisory-nexus-nav-link {
      font-size: 0.875rem;
    }

    .header-advisory-nexus-cta-button {
      padding: 0.625rem 1rem;
      font-size: 0.85rem;
    }
  }

    .consulting-hub {
  width: 100%;
}

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

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

/* ===== HERO SECTION ===== */
.hero-section-index {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1a2847 100%);
  position: relative;
}

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

.hero-gradient-mesh-index {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-index {
  position: absolute;
  top: 50%;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(34, 211, 238, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-orbital-shape-index {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(96, 165, 250, 0.1);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.hero-light-burst-index {
  position: absolute;
  top: 10%;
  right: 30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-accent-line-index {
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-corner-element-index {
  position: absolute;
  bottom: 5%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 20%;
  z-index: 1;
  pointer-events: none;
}

.hero-subtle-glow-index {
  position: absolute;
  top: 30%;
  left: 30%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-text-block-index {
  flex: 1 1 400px;
  max-width: 600px;
}

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

.hero-subtitle-index {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #60a5fa;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-description-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

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

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

.stat-number-index {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

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

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

.hero-image-block-index {
  flex: 1 1 350px;
  max-width: 550px;
  min-height: 400px;
}

.hero-image-index {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

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

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

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

  .hero-stats-index {
    gap: 1.5rem;
  }
}

/* ===== ABOUT SECTION ===== */
.about-section-index {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #ffffff;
}

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

.about-shape-element-index {
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 280px;
  height: 280px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.about-line-accent-index {
  position: absolute;
  top: 30%;
  left: 15%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.about-floating-form-index {
  position: absolute;
  top: 40%;
  right: 8%;
  width: 150px;
  height: 120px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  z-index: 1;
  pointer-events: none;
}

.about-soft-gradient-index {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.about-content-index {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.about-text-block-index {
  flex: 1 1 400px;
  max-width: 550px;
}

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

.about-intro-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.about-features-list-index {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-feature-item-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item-title-index {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

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

.about-image-block-index {
  flex: 1 1 350px;
  max-width: 500px;
}

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

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

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

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

/* ===== SERVICES SECTION ===== */
.services-section-index {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #f8fafc;
}

.services-gradient-field-index {
  position: absolute;
  top: 15%;
  left: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.services-shape-one-index {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

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

.services-line-element-index {
  position: absolute;
  bottom: 25%;
  right: 30%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.services-orbital-glow-index {
  position: absolute;
  top: 30%;
  left: 15%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

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

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

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

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

.services-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 10;
}

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

.services-card-index:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
}

.services-card-icon-index {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 12px;
  font-size: 1.5rem;
}

.services-card-title-index {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
}

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

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

/* ===== PROCESS SECTION ===== */
.process-section-index {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #0f172a;
}

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

.process-glow-two-index {
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.process-accent-shape-index {
  position: absolute;
  top: 50%;
  right: 15%;
  width: 250px;
  height: 250px;
  background: rgba(34, 211, 238, 0.08);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.process-line-accent-index {
  position: absolute;
  top: 30%;
  left: 20%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

.process-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.process-steps-index {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

.process-step-index {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 300ms ease;
}

.process-step-index:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateX(8px);
}

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

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

.process-step-title-index {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

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

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

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

/* ===== FEATURED SECTION ===== */
.featured-section-index {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #ffffff;
}

.featured-accent-one-index {
  position: absolute;
  top: 15%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.featured-accent-two-index {
  position: absolute;
  bottom: 10%;
  right: 8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.featured-glow-index {
  position: absolute;
  top: 50%;
  right: 20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

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

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

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

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

.featured-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 10;
}

.featured-card-index {
  flex: 1 1 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.featured-card-index:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
}

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

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

.featured-card-title-index {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

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

.featured-card-link-index {
  font-size: 0.9375rem;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  transition: color 300ms ease;
  margin-top: auto;
}

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

.featured-cta-index {
  text-align: center;
  position: relative;
  z-index: 10;
}

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

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section-index {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #f8fafc;
}

.testimonial-glow-left-index {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

.testimonial-shape-index {
  position: absolute;
  top: 50%;
  left: 15%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

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

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

.testimonial-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.testimonial-quote-index {
  position: relative;
  z-index: 10;
  padding: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
  border-left: 4px solid #2563eb;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.quote-author-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

/* ===== CTA SECTION ===== */
.cta-section-index {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: linear-gradient(135deg, #1a2847 0%, #0f172a 100%);
}

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

.cta-shape-element-index {
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 280px;
  height: 280px;
  background: rgba(34, 211, 238, 0.08);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.cta-line-accent-index {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.cta-floating-element-index {
  position: absolute;
  top: 40%;
  right: 20%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.cta-content-index {
  text-align: center;
  position: relative;
  z-index: 10;
}

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

.cta-description-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ===== CONTACT SECTION ===== */
.contact-section-index {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #ffffff;
}

.contact-accent-glow-index {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.contact-shape-accent-index {
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.contact-line-element-index {
  position: absolute;
  top: 30%;
  right: 25%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

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

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

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

.contact-form-wrapper-index {
  flex: 1 1 400px;
  max-width: 500px;
}

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

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

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

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

.contact-input-index:focus,
.contact-textarea-index:focus {
  outline: none;
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.contact-submit-index {
  width: 100%;
  padding: 1rem 2rem;
  background: #2563eb;
  color: #ffffff;
  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: 0.5rem;
}

.contact-submit-index:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

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

.contact-info-wrapper-index {
  flex: 1 1 400px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

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

.contact-info-title-index {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
}

.faq-item-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.faq-answer-index {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

.benefits-title-index {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
}

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

.benefit-item-index {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-icon-index {
  color: #10b981;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.benefit-text-index {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

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

  .contact-form-wrapper-index,
  .contact-info-wrapper-index {
    flex: 1 1 100%;
    max-width: none;
  }

  .contact-info-wrapper-index {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-info-block-index,
  .contact-benefits-index {
    flex: 1 1 45%;
  }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #1e293b;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

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

.cookie-btn-accept {
  background: #2563eb;
  color: #ffffff;
}

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

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

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

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }

  .cookie-banner-text {
    order: 1;
  }

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

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

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

.btn-primary:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 3px;
}

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

.btn-secondary:hover {
  background: #ffffff;
  color: #0f172a;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 3px;
}

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

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  section {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

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

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

    /* ============================================
   FOOTER COMPONENT STYLES
   ============================================ */

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

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

/* Footer content wrapper */
.footer-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

/* About section */
.footer-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
}

.footer-about-title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
  margin: 0;
}

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

/* Footer sections grid */
.footer-sections {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.footer-column {
  flex: 1 1 200px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-column-title {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 600;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  margin: 0;
  text-transform: none;
}

/* Navigation links */
.footer-nav,
.footer-legal-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-link,
.footer-legal-link {
  font-size: clamp(0.8rem, 0.95vw, 0.95rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: inline-block;
  width: fit-content;
}

.footer-nav-link:hover,
.footer-legal-link:hover {
  color: var(--color-primary);
  padding-left: 0.5rem;
}

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

/* Contact information */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  font-size: clamp(0.8rem, 0.95vw, 0.95rem);
  line-height: 1.6;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-contact-label {
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: clamp(0.75rem, 0.9vw, 0.85rem);
}

.footer-contact-value {
  color: var(--color-text-secondary);
  word-break: break-word;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-text-secondary),
    transparent
  );
  opacity: 0.2;
  width: 100%;
  margin: clamp(1rem, 3vw, 2rem) 0;
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 1rem;
}

.footer-copyright {
  font-size: clamp(0.75rem, 0.9vw, 0.9rem);
  color: var(--color-text-secondary);
  margin: 0;
  text-align: center;
  letter-spacing: 0.3px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (min-width: 768px) {
  .footer {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .footer-content {
    gap: clamp(3.5rem, 6vw, 5rem);
  }

  .footer-about {
    margin-bottom: 1rem;
  }

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

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

  .footer-contact-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .footer-contact-label {
    min-width: fit-content;
    flex-shrink: 0;
  }

  .footer-contact-value {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .footer-sections {
    gap: clamp(3rem, 6vw, 5rem);
  }

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

  .footer-nav-link:hover,
  .footer-legal-link:hover {
    padding-left: 0.75rem;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

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

/* Print styles */
@media print {
  .footer {
    background: white;
    color: black;
  }

  .footer-nav-link,
  .footer-legal-link {
    text-decoration: underline;
  }
}

/* ============================================
   CATEGORY PAGE: MANAGEMENT CONSULTING
   ============================================ */

/* Category Page Container */
.category-page-management-consulting {
  width: 100%;
  background: var(--color-bg-primary);
}

/* ===== HERO SECTION ===== */
.hero-section-management-consulting {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

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

.hero-deco-mesh-management-consulting {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-shape-management-consulting {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(96, 165, 250, 0.1);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.hero-deco-accent-management-consulting {
  position: absolute;
  top: 50%;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(34, 211, 238, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-content-management-consulting {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.hero-text-block-management-consulting {
  max-width: 800px;
}

.hero-title-management-consulting {
  font-size: clamp(2rem, 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-description-management-consulting {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 650px;
}

.hero-buttons-management-consulting {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.stat-item-management-consulting {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

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

@media (max-width: 768px) {
  .hero-section-management-consulting {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .hero-buttons-management-consulting {
    flex-direction: column;
    width: 100%;
  }

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

  .hero-stats-management-consulting {
    gap: 1.5rem;
  }
}

/* ===== INSIGHT SECTION ===== */
.insight-section-management-consulting {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.insight-deco-shape-left-management-consulting {
  position: absolute;
  top: 20%;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.insight-deco-glow-management-consulting {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.insight-content-management-consulting {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.insight-quote-management-consulting {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #2563eb;
  background: #ffffff;
  border-radius: 0 12px 12px 0;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.insight-cite-management-consulting {
  font-size: 0.9375rem;
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

.insight-highlight-management-consulting {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #eff6ff;
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.insight-highlight-title-management-consulting {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.insight-highlight-text-management-consulting {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
}

/* ===== POSTS SECTION ===== */
.posts-section-management-consulting {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.posts-deco-accent-management-consulting {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.posts-deco-line-management-consulting {
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.posts-title-management-consulting {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.posts-grid-management-consulting {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 10;
}

/* ===== CARD STYLES ===== */
.card-management-consulting {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card-management-consulting:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(37, 99, 235, 0.2);
}

.card-image-management-consulting {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 350ms ease;
}

.card-management-consulting:hover .card-image-management-consulting {
  transform: scale(1.05);
}

.card-title-management-consulting {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) 0.75rem;
  line-height: 1.3;
}

.card-description-management-consulting {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0 clamp(1rem, 2vw, 1.5rem) 1rem;
  flex-grow: 1;
}

.card-meta-management-consulting {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 clamp(1rem, 2vw, 1.5rem) 1rem;
}

.meta-badge-management-consulting {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: rgba(59, 130, 246, 0.08);
  color: #2563eb;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 500;
}

.meta-badge-management-consulting i {
  font-size: 0.6875rem;
}

.card-link-management-consulting {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: auto clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  padding: 0.75rem 1.25rem;
  background: #2563eb;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 300ms ease;
  text-align: center;
  justify-content: center;
}

.card-link-management-consulting:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

@media (max-width: 768px) {
  .posts-grid-management-consulting {
    grid-template-columns: 1fr;
  }

  .card-image-management-consulting {
    height: 200px;
  }
}

/* ===== PROCESS SECTION ===== */
.process-section-management-consulting {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #0f172a;
  position: relative;
  overflow: hidden;
}

.process-deco-mesh-management-consulting {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.process-deco-glow-management-consulting {
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

.process-title-management-consulting {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.process-steps-management-consulting {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

.process-step-management-consulting {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 300ms ease;
}

.process-step-management-consulting:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateX(8px);
}

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

.process-step-content-management-consulting {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-step-title-management-consulting {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.process-step-text-management-consulting {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-step-management-consulting {
    flex-direction: column;
    gap: 1rem;
  }

  .process-step-number-management-consulting {
    min-width: auto;
  }
}

/* ===== FEATURES SECTION ===== */
.features-section-management-consulting {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.features-deco-accent-management-consulting {
  position: absolute;
  top: 15%;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.features-deco-shape-management-consulting {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(34, 211, 238, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

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

.features-title-management-consulting {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.features-cards-management-consulting {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 10;
}

.feature-card-management-consulting {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-card-management-consulting:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
}

.feature-card-icon-management-consulting {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 12px;
  font-size: 1.5rem;
}

.feature-card-title-management-consulting {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

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

@media (max-width: 768px) {
  .features-cards-management-consulting {
    grid-template-columns: 1fr;
  }
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (min-width: 768px) {
  .hero-section-management-consulting {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .insight-section-management-consulting {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .posts-section-management-consulting {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .process-section-management-consulting {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .features-section-management-consulting {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-stats-management-consulting {
    gap: 4rem;
  }

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

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  .card-management-consulting,
  .feature-card-management-consulting,
  .process-step-management-consulting,
  .card-image-management-consulting,
  .card-link-management-consulting {
    transition: none;
  }

  .card-management-consulting:hover,
  .feature-card-management-consulting:hover {
    transform: none;
  }

  .card-management-consulting:hover .card-image-management-consulting {
    transform: none;
  }

  .process-step-management-consulting:hover {
    transform: none;
  }
}

/* Print styles */
@media print {
  .hero-section-management-consulting {
    background: white;
    color: black;
  }

  .hero-deco-glow-management-consulting,
  .hero-deco-mesh-management-consulting,
  .hero-deco-shape-management-consulting,
  .hero-deco-accent-management-consulting,
  .insight-deco-shape-left-management-consulting,
  .insight-deco-glow-management-consulting,
  .posts-deco-accent-management-consulting,
  .posts-deco-line-management-consulting,
  .process-deco-mesh-management-consulting,
  .process-deco-glow-management-consulting,
  .features-deco-accent-management-consulting,
  .features-deco-shape-management-consulting {
    display: none;
  }

  .hero-title-management-consulting,
  .hero-description-management-consulting,
  .stat-number-management-consulting,
  .stat-label-management-consulting {
    color: black;
  }

  .process-section-management-consulting {
    background: white;
  }

  .process-title-management-consulting,
  .process-subtitle-management-consulting,
  .process-step-title-management-consulting,
  .process-step-text-management-consulting {
    color: black;
  }
}
    

/* Post Page 1 Styles */
.main-effective-leadership-strategies {
  width: 100%;
}

.hero-section-effective-leadership-strategies {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.hero-text-block-effective-leadership-strategies {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-effective-leadership-strategies {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-effective-leadership-strategies {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-meta-effective-leadership-strategies {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.meta-badge-effective-leadership-strategies {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-effective-leadership-strategies i {
  font-size: 0.875rem;
}

.hero-image-block-effective-leadership-strategies {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-effective-leadership-strategies img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-stats-effective-leadership-strategies {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  justify-content: flex-start;
}

.stat-item-effective-leadership-strategies {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-effective-leadership-strategies {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
}

.stat-label-effective-leadership-strategies {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.intro-section-effective-leadership-strategies {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-effective-leadership-strategies {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-effective-leadership-strategies {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.intro-description-effective-leadership-strategies {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1rem;
}

.intro-image-effective-leadership-strategies {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-effective-leadership-strategies img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.fundamentals-header-effective-leadership-strategies {
  text-align: center;
  margin-bottom: 3rem;
}

.fundamentals-tag-effective-leadership-strategies {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.fundamentals-steps-effective-leadership-strategies {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fundamentals-step-effective-leadership-strategies {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

.fundamentals-step-number-effective-leadership-strategies {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.fundamentals-step-content-effective-leadership-strategies {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

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

.development-section-effective-leadership-strategies {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.development-content-effective-leadership-strategies {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.development-text-effective-leadership-strategies {
  flex: 1 1 50%;
  max-width: 50%;
}

.development-title-effective-leadership-strategies {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.development-description-effective-leadership-strategies {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1rem;
}

.development-highlight-effective-leadership-strategies {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  border-radius: 8px;
}

.development-highlight-text-effective-leadership-strategies {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #0f172a;
}

.development-image-effective-leadership-strategies {
  flex: 1 1 50%;
  max-width: 50%;
}

.development-image-effective-leadership-strategies img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.strategies-header-effective-leadership-strategies {
  text-align: center;
  margin-bottom: 3rem;
}

.strategies-tag-effective-leadership-strategies {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.strategies-title-effective-leadership-strategies {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

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

.strategies-card-effective-leadership-strategies {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strategies-card-effective-leadership-strategies:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.strategies-card-icon-effective-leadership-strategies {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 12px;
  font-size: 1.5rem;
}

.strategies-card-title-effective-leadership-strategies {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.strategies-card-text-effective-leadership-strategies {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.implementation-section-effective-leadership-strategies {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-content-effective-leadership-strategies {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.implementation-image-effective-leadership-strategies {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-effective-leadership-strategies img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.implementation-text-effective-leadership-strategies {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-effective-leadership-strategies {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.implementation-description-effective-leadership-strategies {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1rem;
}

.quote-section-effective-leadership-strategies {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-effective-leadership-strategies {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #f59e0b;
  margin: 0;
  text-align: center;
}

.quote-text-effective-leadership-strategies {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.quote-cite-effective-leadership-strategies {
  font-size: 0.9375rem;
  color: #cbd5e1;
  font-style: normal;
  display: block;
}

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

.conclusion-content-effective-leadership-strategies {
  max-width: 800px;
  margin: 0 auto;
}

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

.conclusion-text-effective-leadership-strategies {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.5rem;
}

.cta-box-effective-leadership-strategies {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #2563eb 0%, #0d9488 100%);
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
}

.cta-title-effective-leadership-strategies {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cta-text-effective-leadership-strategies {
  font-size: 1rem;
  color: #f0f9ff;
  margin-bottom: 1.5rem;
}

.cta-box-effective-leadership-strategies .btn {
  background: #ffffff;
  color: #2563eb;
}

.cta-box-effective-leadership-strategies .btn:hover {
  background: #f0f9ff;
}

.disclaimer-section-effective-leadership-strategies {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-box-effective-leadership-strategies {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-effective-leadership-strategies {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.disclaimer-text-effective-leadership-strategies {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
}

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

.related-header-effective-leadership-strategies {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-effective-leadership-strategies {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.related-subtitle-effective-leadership-strategies {
  font-size: 1rem;
  color: #64748b;
}

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

.related-card-effective-leadership-strategies {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.related-card-effective-leadership-strategies:hover {
  transform: translateY(-5px);
}

.related-card-image-effective-leadership-strategies {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 12px;
}

.related-card-image-effective-leadership-strategies img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-effective-leadership-strategies:hover .related-card-image-effective-leadership-strategies img {
  transform: scale(1.05);
}

.related-card-content-effective-leadership-strategies {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-effective-leadership-strategies {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.related-card-text-effective-leadership-strategies {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.related-card-link-effective-leadership-strategies {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.3s ease;
  font-size: 0.9375rem;
}

.related-card-link-effective-leadership-strategies:hover {
  gap: 0.75rem;
  color: #0d9488;
}

.breadcrumbs-effective-leadership-strategies {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-effective-leadership-strategies a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-effective-leadership-strategies a:hover {
  color: #0d9488;
  text-decoration: underline;
}

.breadcrumbs-effective-leadership-strategies span {
  color: #cbd5e1;
}

@media (max-width: 768px) {
  .hero-content-effective-leadership-strategies {
    flex-direction: column;
  }

  .hero-text-block-effective-leadership-strategies,
  .hero-image-block-effective-leadership-strategies {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-effective-leadership-strategies {
    gap: 1.5rem;
  }

  .stat-item-effective-leadership-strategies {
    flex: 0 1 auto;
  }

  .intro-content-effective-leadership-strategies,
  .development-content-effective-leadership-strategies,
  .implementation-content-effective-leadership-strategies {
    flex-direction: column;
  }

  .intro-text-effective-leadership-strategies,
  .intro-image-effective-leadership-strategies,
  .development-text-effective-leadership-strategies,
  .development-image-effective-leadership-strategies,
  .implementation-text-effective-leadership-strategies,
  .implementation-image-effective-leadership-strategies {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .fundamentals-step-effective-leadership-strategies {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .strategies-card-effective-leadership-strategies {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-card-effective-leadership-strategies {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* Post Page 2 Styles */
.main-business-process-optimization {
  width: 100%;
  background: #ffffff;
}

/* Hero Section */
.hero-section-business-process-optimization {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

.breadcrumbs-business-process-optimization {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-business-process-optimization a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-business-process-optimization a:hover {
  color: #cbd5e1;
}

.breadcrumbs-business-process-optimization span {
  color: #64748b;
}

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

.hero-text-block-business-process-optimization {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-business-process-optimization {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meta-badge-business-process-optimization {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.meta-badge-business-process-optimization i {
  color: #38bdf8;
  font-size: 0.875rem;
}

.hero-stats-business-process-optimization {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
}

.stat-item-business-process-optimization {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-business-process-optimization {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #38bdf8;
  line-height: 1;
}

.stat-label-business-process-optimization {
  display: block;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
  line-height: 1.4;
}

.hero-image-block-business-process-optimization {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-business-process-optimization {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .hero-content-business-process-optimization {
    flex-direction: column;
  }

  .hero-text-block-business-process-optimization,
  .hero-image-block-business-process-optimization {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-business-process-optimization {
    gap: 1.5rem;
  }
}

/* Introduction Section */
.introduction-section-business-process-optimization {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
}

.introduction-content-business-process-optimization {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.introduction-text-business-process-optimization {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-business-process-optimization {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.introduction-description-business-process-optimization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.introduction-image-business-process-optimization {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-item-business-process-optimization {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .introduction-content-business-process-optimization {
    flex-direction: column;
  }

  .introduction-text-business-process-optimization,
  .introduction-image-business-process-optimization {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Methodology Section */
.methodology-section-business-process-optimization {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8fafc;
}

.methodology-header-business-process-optimization {
  text-align: center;
  margin-bottom: 3rem;
}

.methodology-tag-business-process-optimization {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.methodology-title-business-process-optimization {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.methodology-subtitle-business-process-optimization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.methodology-steps-business-process-optimization {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.methodology-step-business-process-optimization {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

.methodology-step-number-business-process-optimization {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.methodology-step-content-business-process-optimization {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.methodology-step-title-business-process-optimization {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #0f172a;
  font-weight: 600;
  line-height: 1.3;
}

.methodology-step-text-business-process-optimization {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .methodology-step-business-process-optimization {
    flex-direction: column;
    gap: 1rem;
  }

  .methodology-step-number-business-process-optimization {
    min-width: auto;
  }
}

/* Key Areas Section */
.key-areas-section-business-process-optimization {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
}

.key-areas-header-business-process-optimization {
  text-align: center;
  margin-bottom: 3rem;
}

.key-areas-tag-business-process-optimization {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.key-areas-title-business-process-optimization {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  line-height: 1.2;
}

.key-areas-content-business-process-optimization {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.key-areas-text-business-process-optimization {
  flex: 1 1 50%;
  max-width: 50%;
}

.key-areas-description-business-process-optimization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.key-areas-list-business-process-optimization {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.key-area-item-business-process-optimization {
  padding: 1.25rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid #0d9488;
}

.key-area-item-title-business-process-optimization {
  font-size: 1.125rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.key-area-item-text-business-process-optimization {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.key-areas-image-business-process-optimization {
  flex: 1 1 50%;
  max-width: 50%;
}

.key-areas-image-item-business-process-optimization {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .key-areas-content-business-process-optimization {
    flex-direction: column;
  }

  .key-areas-text-business-process-optimization,
  .key-areas-image-business-process-optimization {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Tools Section */
.tools-section-business-process-optimization {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8fafc;
}

.tools-header-business-process-optimization {
  text-align: center;
  margin-bottom: 3rem;
}

.tools-tag-business-process-optimization {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.tools-title-business-process-optimization {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tools-subtitle-business-process-optimization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.tools-cards-business-process-optimization {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tools-card-business-process-optimization {
  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;
}

.tools-card-business-process-optimization:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tools-card-icon-business-process-optimization {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
  border-radius: 12px;
  font-size: 1.75rem;
}

.tools-card-title-business-process-optimization {
  font-size: 1.125rem;
  color: #0f172a;
  font-weight: 600;
  line-height: 1.3;
}

.tools-card-text-business-process-optimization {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tools-card-business-process-optimization {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* Benefits Section */
.benefits-section-business-process-optimization {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
}

.benefits-content-business-process-optimization {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.benefits-image-business-process-optimization {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-image-item-business-process-optimization {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.benefits-text-business-process-optimization {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-title-business-process-optimization {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.featured-quote-business-process-optimization {
  padding: 1.5rem 2rem;
  border-left: 4px solid #2563eb;
  background: #f0f9ff;
  margin: 1.5rem 0;
  font-style: italic;
}

.featured-quote-business-process-optimization p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.featured-quote-business-process-optimization cite {
  font-size: 0.875rem;
  color: #475569;
  font-style: normal;
}

.benefits-list-business-process-optimization {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.benefit-item-business-process-optimization {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-icon-business-process-optimization {
  font-size: 1.5rem;
  color: #0d9488;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.benefit-item-title-business-process-optimization {
  font-size: 1rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.benefit-item-text-business-process-optimization {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

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

  .benefits-image-business-process-optimization,
  .benefits-text-business-process-optimization {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Challenges Section */
.challenges-section-business-process-optimization {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8fafc;
}

.challenges-header-business-process-optimization {
  text-align: center;
  margin-bottom: 3rem;
}

.challenges-tag-business-process-optimization {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.challenges-title-business-process-optimization {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  line-height: 1.2;
}

.challenges-content-business-process-optimization {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.challenges-text-business-process-optimization {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-description-business-process-optimization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.challenges-items-business-process-optimization {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.challenge-item-business-process-optimization {
  padding: 1.25rem;
  background: #ffffff;
  border-radius: 8px;
  border-left: 3px solid #ef4444;
}

.challenge-item-title-business-process-optimization {
  font-size: 1.125rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.challenge-item-text-business-process-optimization {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.challenges-image-business-process-optimization {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-image-item-business-process-optimization {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .challenges-content-business-process-optimization {
    flex-direction: column;
  }

  .challenges-text-business-process-optimization,
  .challenges-image-business-process-optimization {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Conclusion Section */
.conclusion-section-business-process-optimization {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
}

.conclusion-content-business-process-optimization {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-business-process-optimization {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-business-process-optimization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-business-process-optimization {
  margin-top: 2.5rem;
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 12px;
  text-align: center;
}

.conclusion-cta-title-business-process-optimization {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.conclusion-cta-text-business-process-optimization {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #dbeafe;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-btn-business-process-optimization {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #2563eb;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn-business-process-optimization:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Related Section */
.related-section-business-process-optimization {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8fafc;
}

.related-title-business-process-optimization {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: #0f172a;
  margin-bottom: 2rem;
  text-align: center;
}

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

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

.related-card-business-process-optimization:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-card-image-business-process-optimization {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-business-process-optimization {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-content-business-process-optimization {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.related-card-title-business-process-optimization {
  font-size: 1.125rem;
  color: #0f172a;
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-business-process-optimization {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.related-card-link-business-process-optimization {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.related-card-link-business-process-optimization:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-card-business-process-optimization {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* Disclaimer Section */
.disclaimer-section-business-process-optimization {
  padding: clamp(2rem, 6vw, 4rem) 0;
  background: #ffffff;
}

.disclaimer-content-business-process-optimization {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #fef3c7;
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-business-process-optimization {
  font-size: 1.125rem;
  color: #92400e;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.disclaimer-text-business-process-optimization {
  font-size: 0.9375rem;
  color: #b45309;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .container {
    padding-inline: clamp(1rem, 4vw, 2rem);
  }
}

/* Post Page 3 Styles */
.main-staff-development-programs {
  width: 100%;
}

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

.breadcrumbs-staff-development-programs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.breadcrumbs-staff-development-programs a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-staff-development-programs a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumbs-staff-development-programs span {
  color: #cbd5e1;
}

.hero-section-staff-development-programs {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.hero-content-staff-development-programs {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-text-wrapper-staff-development-programs {
  flex: 1 1 300px;
  min-width: 280px;
}

.hero-title-staff-development-programs {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.15;
}

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

.hero-meta-staff-development-programs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.meta-badge-staff-development-programs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-staff-development-programs i {
  font-size: 0.875rem;
}

.hero-image-wrapper-staff-development-programs {
  flex: 1 1 300px;
  min-width: 280px;
}

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

.hero-stats-staff-development-programs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: flex-start;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.stat-item-staff-development-programs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-staff-development-programs {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
}

.stat-label-staff-development-programs {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-content-staff-development-programs {
    flex-direction: column;
  }

  .hero-text-wrapper-staff-development-programs,
  .hero-image-wrapper-staff-development-programs {
    flex: 1 1 100%;
  }

  .hero-stats-staff-development-programs {
    gap: 1.5rem;
  }
}

.intro-section-staff-development-programs {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-staff-development-programs {
  flex: 1 1 300px;
  min-width: 280px;
}

.intro-title-staff-development-programs {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.intro-description-staff-development-programs {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-image-staff-development-programs {
  flex: 1 1 300px;
  min-width: 280px;
}

.intro-image-content-staff-development-programs {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-staff-development-programs {
    flex-direction: column;
  }

  .intro-text-staff-development-programs,
  .intro-image-staff-development-programs {
    flex: 1 1 100%;
  }
}

.methodology-section-staff-development-programs {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.methodology-header-staff-development-programs {
  text-align: center;
  margin-bottom: 3rem;
}

.methodology-tag-staff-development-programs {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.methodology-title-staff-development-programs {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
}

.methodology-steps-staff-development-programs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.methodology-step-staff-development-programs {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
  align-items: flex-start;
}

.methodology-step-number-staff-development-programs {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.methodology-step-content-staff-development-programs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.methodology-step-title-staff-development-programs {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.methodology-step-text-staff-development-programs {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
}

@media (max-width: 768px) {
  .methodology-step-staff-development-programs {
    flex-direction: column;
  }

  .methodology-step-number-staff-development-programs {
    min-width: auto;
  }
}

.approaches-section-staff-development-programs {
  background: #f1f5f9;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.approaches-header-staff-development-programs {
  text-align: center;
  margin-bottom: 3rem;
}

.approaches-title-staff-development-programs {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.approaches-subtitle-staff-development-programs {
  font-size: 1rem;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.approaches-content-staff-development-programs {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.approaches-text-staff-development-programs {
  flex: 1 1 300px;
  min-width: 280px;
}

.approaches-description-staff-development-programs {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.5rem;
}

.approaches-features-staff-development-programs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.approaches-feature-item-staff-development-programs {
  padding: 1rem;
  background: #ffffff;
  border-radius: 8px;
  border-left: 3px solid #0d9488;
}

.approaches-feature-title-staff-development-programs {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.approaches-feature-text-staff-development-programs {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #475569;
}

.approaches-image-staff-development-programs {
  flex: 1 1 300px;
  min-width: 280px;
}

.approaches-image-content-staff-development-programs {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .approaches-content-staff-development-programs {
    flex-direction: column;
  }

  .approaches-text-staff-development-programs,
  .approaches-image-staff-development-programs {
    flex: 1 1 100%;
  }
}

.benefits-section-staff-development-programs {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.benefits-header-staff-development-programs {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-title-staff-development-programs {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
}

.benefits-grid-staff-development-programs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.benefits-card-staff-development-programs {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-card-staff-development-programs:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.benefits-card-icon-staff-development-programs {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 1.5rem;
}

.benefits-card-title-staff-development-programs {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.benefits-card-text-staff-development-programs {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
}

@media (max-width: 768px) {
  .benefits-card-staff-development-programs {
    flex: 1 1 100%;
    max-width: none;
  }
}

.implementation-section-staff-development-programs {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.implementation-content-staff-development-programs {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.implementation-image-staff-development-programs {
  flex: 1 1 300px;
  min-width: 280px;
  order: -1;
}

.implementation-image-content-staff-development-programs {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.implementation-text-staff-development-programs {
  flex: 1 1 300px;
  min-width: 280px;
}

.implementation-title-staff-development-programs {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.implementation-description-staff-development-programs {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.5rem;
}

.implementation-quote-staff-development-programs {
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  border-left: 4px solid #2563eb;
  background: #ffffff;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.implementation-quote-text-staff-development-programs {
  font-size: 1.125rem;
  font-style: italic;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.implementation-quote-cite-staff-development-programs {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

@media (max-width: 768px) {
  .implementation-content-staff-development-programs {
    flex-direction: column;
  }

  .implementation-image-staff-development-programs {
    order: 0;
  }

  .implementation-image-staff-development-programs,
  .implementation-text-staff-development-programs {
    flex: 1 1 100%;
  }
}

.conclusion-section-staff-development-programs {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-staff-development-programs {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-staff-development-programs {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
  text-align: center;
}

.conclusion-points-staff-development-programs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.conclusion-point-staff-development-programs {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-top: 3px solid #2563eb;
}

.conclusion-point-title-staff-development-programs {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.conclusion-point-text-staff-development-programs {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
}

.conclusion-cta-staff-development-programs {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #2563eb, #0d9488);
  border-radius: 16px;
  color: #ffffff;
}

.conclusion-cta-text-staff-development-programs {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.cta-button-staff-development-programs {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  color: #2563eb;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button-staff-development-programs:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .conclusion-points-staff-development-programs {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.related-section-staff-development-programs {
  background: #f1f5f9;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.related-header-staff-development-programs {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-staff-development-programs {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.related-subtitle-staff-development-programs {
  font-size: 1rem;
  color: #475569;
}

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

.related-card-staff-development-programs {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-staff-development-programs:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.related-card-image-staff-development-programs {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-content-staff-development-programs {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-staff-development-programs {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-staff-development-programs {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-text-staff-development-programs {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #475569;
  flex-grow: 1;
}

.related-card-link-staff-development-programs {
  display: inline-block;
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9375rem;
}

.related-card-link-staff-development-programs:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-card-staff-development-programs {
    flex: 1 1 100%;
    max-width: none;
  }
}

.disclaimer-section-staff-development-programs {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-staff-development-programs {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: #f8fafc;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-staff-development-programs {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-staff-development-programs {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #475569;
}

@media (max-width: 768px) {
  .disclaimer-content-staff-development-programs {
    padding: 1.5rem;
  }

  .disclaimer-title-staff-development-programs {
    font-size: 1.125rem;
  }
}

/* Post Page 4 Styles */
.main-financial-management-budgeting {
  width: 100%;
}

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

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

.hero-text-wrapper-financial-management-budgeting {
  flex: 1 1 50%;
  max-width: 50%;
}

.breadcrumbs-financial-management-budgeting {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-financial-management-budgeting a {
  color: #38bdf8;
  text-decoration: none;
}

.breadcrumbs-financial-management-budgeting a:hover {
  text-decoration: underline;
}

.breadcrumbs-financial-management-budgeting span {
  color: #64748b;
}

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

.hero-subtitle-financial-management-budgeting {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.article-meta-financial-management-budgeting {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.meta-badge-financial-management-budgeting i {
  color: #38bdf8;
}

.hero-image-wrapper-financial-management-budgeting {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-financial-management-budgeting {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-stats-financial-management-budgeting {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: flex-start;
}

.stat-item-financial-management-budgeting {
  flex: 0 1 auto;
}

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

.stat-label-financial-management-budgeting {
  display: block;
  font-size: 0.875rem;
  color: #cbd5e1;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-content-financial-management-budgeting {
    flex-direction: column;
  }
  
  .hero-text-wrapper-financial-management-budgeting,
  .hero-image-wrapper-financial-management-budgeting {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-stats-financial-management-budgeting {
    justify-content: center;
    gap: 2rem;
  }
}

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

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

.intro-text-financial-management-budgeting {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-financial-management-budgeting {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-financial-management-budgeting {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-image-financial-management-budgeting {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-financial-management-budgeting {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.content-section-1-financial-management-budgeting {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-1-financial-management-budgeting {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-1-financial-management-budgeting {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-1-financial-management-budgeting {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-description-1-financial-management-budgeting {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.highlight-box-financial-management-budgeting {
  background: #e0f2fe;
  border-left: 4px solid #0284c7;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.highlight-text-financial-management-budgeting {
  color: #0c4a6e;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

.content-image-1-financial-management-budgeting {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-1-financial-management-budgeting {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .content-wrapper-1-financial-management-budgeting {
    flex-direction: column;
  }
  
  .content-text-1-financial-management-budgeting,
  .content-image-1-financial-management-budgeting {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.process-header-financial-management-budgeting {
  text-align: center;
  margin-bottom: 3rem;
}

.process-title-financial-management-budgeting {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.process-subtitle-financial-management-budgeting {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.process-steps-financial-management-budgeting {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.process-step-financial-management-budgeting {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.process-step-number-financial-management-budgeting {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #f59e0b;
  flex-shrink: 0;
  min-width: 60px;
}

.process-step-content-financial-management-budgeting {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-step-title-financial-management-budgeting {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.process-step-text-financial-management-budgeting {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  color: #cbd5e1;
}

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

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

.content-image-2-financial-management-budgeting {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-image-2-financial-management-budgeting {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-text-2-financial-management-budgeting {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-2-financial-management-budgeting {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-description-2-financial-management-budgeting {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-list-financial-management-budgeting {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content-list-item-financial-management-budgeting {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.content-list-item-financial-management-budgeting::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0284c7;
  font-weight: bold;
}

@media (max-width: 768px) {
  .content-wrapper-2-financial-management-budgeting {
    flex-direction: column;
  }
  
  .content-image-2-financial-management-budgeting,
  .content-text-2-financial-management-budgeting {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.quote-section-financial-management-budgeting {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-financial-management-budgeting {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #f59e0b;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-lg);
  margin: 0;
}

.quote-text-financial-management-budgeting {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #ffffff;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-cite-financial-management-budgeting {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  font-style: normal;
}

.content-section-3-financial-management-budgeting {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-3-financial-management-budgeting {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-3-financial-management-budgeting {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-3-financial-management-budgeting {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-description-3-financial-management-budgeting {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-image-3-financial-management-budgeting {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-3-financial-management-budgeting {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .content-wrapper-3-financial-management-budgeting {
    flex-direction: column;
  }
  
  .content-text-3-financial-management-budgeting,
  .content-image-3-financial-management-budgeting {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-financial-management-budgeting {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-financial-management-budgeting {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-financial-management-budgeting {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.key-takeaways-financial-management-budgeting {
  background: #f1f5f9;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  border-left: 4px solid #0284c7;
}

.takeaways-title-financial-management-budgeting {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.takeaways-list-financial-management-budgeting {
  list-style: none;
  padding: 0;
  margin: 0;
}

.takeaway-item-financial-management-budgeting {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.takeaway-item-financial-management-budgeting::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #0284c7;
  font-weight: bold;
}

.cta-box-financial-management-budgeting {
  background: linear-gradient(135deg, #2563eb 0%, #0284c7 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

.cta-title-financial-management-budgeting {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cta-description-financial-management-budgeting {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #e0f2fe;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-btn-financial-management-budgeting {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  color: #2563eb;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-btn-financial-management-budgeting:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: #f1f5f9;
}

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

.related-header-financial-management-budgeting {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-financial-management-budgeting {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

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

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

.related-card-financial-management-budgeting {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.related-card-financial-management-budgeting:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.related-card-image-financial-management-budgeting {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-img-financial-management-budgeting {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-financial-management-budgeting:hover .related-card-img-financial-management-budgeting {
  transform: scale(1.05);
}

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

.related-card-title-financial-management-budgeting {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

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

.related-card-link-financial-management-budgeting {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.related-card-link-financial-management-budgeting:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-card-financial-management-budgeting {
    flex: 1 1 100%;
    max-width: none;
  }
}

.disclaimer-section-financial-management-budgeting {
  background: #fff7ed;
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid #fed7aa;
  overflow: hidden;
}

.disclaimer-content-financial-management-budgeting {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-financial-management-budgeting {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #92400e;
  margin-bottom: 1rem;
}

.disclaimer-text-financial-management-budgeting {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #b45309;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-section-financial-management-budgeting {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
  
  .intro-section-financial-management-budgeting {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
  
  .content-section-1-financial-management-budgeting {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
  
  .process-section-financial-management-budgeting {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
  
  .content-section-2-financial-management-budgeting {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
  
  .quote-section-financial-management-budgeting {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
  
  .content-section-3-financial-management-budgeting {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
  
  .conclusion-section-financial-management-budgeting {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
  
  .related-section-financial-management-budgeting {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
}

/* Post Page 5 Styles */
.main-strategic-planning-development {
  width: 100%;
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--color-text-primary);
}

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

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

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

.breadcrumbs-strategic-planning-development {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-strategic-planning-development a {
  color: #38bdf8;
  transition: color 0.2s ease;
}

.breadcrumbs-strategic-planning-development a:hover {
  color: #7dd3fc;
  text-decoration: underline;
}

.breadcrumbs-strategic-planning-development span {
  color: #64748b;
}

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

.hero-text-strategic-planning-development {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.article-meta-strategic-planning-development {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.meta-badge-strategic-planning-development {
  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-strategic-planning-development i {
  font-size: 0.875rem;
}

.hero-image-strategic-planning-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-strategic-planning-development {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

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

.stat-item-strategic-planning-development {
  flex: 1 1 auto;
  min-width: 150px;
}

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

.stat-label-strategic-planning-development {
  display: block;
  font-size: 0.875rem;
  color: #94a3b8;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-content-strategic-planning-development {
    flex-direction: column;
  }
  
  .hero-text-strategic-planning-development,
  .hero-image-strategic-planning-development {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-stats-strategic-planning-development {
    gap: 1.5rem;
  }
}

/* Intro Section */
.intro-section-strategic-planning-development {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.intro-text-strategic-planning-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-strategic-planning-development {
  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-strategic-planning-development {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-image-strategic-planning-development {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

/* Process Section */
.process-section-strategic-planning-development {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-header-strategic-planning-development {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-strategic-planning-development {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.process-title-strategic-planning-development {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.process-subtitle-strategic-planning-development {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.process-steps-strategic-planning-development {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-strategic-planning-development {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-step-strategic-planning-development:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.process-step-number-strategic-planning-development {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.process-step-content-strategic-planning-development {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.process-step-title-strategic-planning-development {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.process-step-text-strategic-planning-development {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
}

@media (max-width: 768px) {
  .process-step-strategic-planning-development {
    flex-direction: column;
  }
  
  .process-step-number-strategic-planning-development {
    min-width: auto;
  }
}

/* Analysis Section */
.analysis-section-strategic-planning-development {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.analysis-content-strategic-planning-development {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.analysis-text-strategic-planning-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.analysis-title-strategic-planning-development {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.analysis-description-strategic-planning-development {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.analysis-image-strategic-planning-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.analysis-img-strategic-planning-development {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .analysis-content-strategic-planning-development {
    flex-direction: column;
  }
  
  .analysis-text-strategic-planning-development,
  .analysis-image-strategic-planning-development {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Implementation Section */
.implementation-section-strategic-planning-development {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.implementation-content-strategic-planning-development {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.implementation-image-strategic-planning-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-img-strategic-planning-development {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.implementation-text-strategic-planning-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-strategic-planning-development {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.implementation-description-strategic-planning-development {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .implementation-content-strategic-planning-development {
    flex-direction: column-reverse;
  }
  
  .implementation-image-strategic-planning-development,
  .implementation-text-strategic-planning-development {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Features Section */
.features-section-strategic-planning-development {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.features-title-strategic-planning-development {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.features-subtitle-strategic-planning-development {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.features-card-strategic-planning-development {
  flex: 1 1 300px;
  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;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.features-card-strategic-planning-development:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.features-card-icon-strategic-planning-development {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 12px;
  color: #2563eb;
  font-size: 1.5rem;
}

.features-card-title-strategic-planning-development {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.features-card-text-strategic-planning-development {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

@media (max-width: 768px) {
  .features-card-strategic-planning-development {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* Challenges Section */
.challenges-section-strategic-planning-development {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.challenges-content-strategic-planning-development {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.challenges-text-strategic-planning-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-title-strategic-planning-development {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.challenges-description-strategic-planning-development {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.challenges-image-strategic-planning-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-img-strategic-planning-development {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .challenges-content-strategic-planning-development {
    flex-direction: column;
  }
  
  .challenges-text-strategic-planning-development,
  .challenges-image-strategic-planning-development {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Quote Section */
.quote-section-strategic-planning-development {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.featured-quote-strategic-planning-development {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #38bdf8;
  background: rgba(59, 130, 246, 0.1);
  margin: 0;
  border-radius: 8px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.quote-text-strategic-planning-development {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-strategic-planning-development {
  display: block;
  font-size: 0.875rem;
  color: #cbd5e1;
  font-style: normal;
}

/* Conclusion Section */
.conclusion-section-strategic-planning-development {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.conclusion-content-strategic-planning-development {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-strategic-planning-development {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.cta-box-strategic-planning-development {
  background: linear-gradient(135deg, #2563eb 0%, #0d9488 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  margin-top: 2.5rem;
}

.cta-title-strategic-planning-development {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.cta-text-strategic-planning-development {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-primary-strategic-planning-development {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #2563eb;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn-primary-strategic-planning-development:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Related Section */
.related-section-strategic-planning-development {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

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

.related-cards-strategic-planning-development {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2.5rem;
  justify-content: center;
}

.related-card-strategic-planning-development {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.related-card-image-strategic-planning-development {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

.related-card-title-strategic-planning-development {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-text-strategic-planning-development {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-strategic-planning-development {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.2s ease;
  margin-top: 0.5rem;
}

.related-card-link-strategic-planning-development:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-card-strategic-planning-development {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* Disclaimer Section */
.disclaimer-section-strategic-planning-development {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-box-strategic-planning-development {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f0f9ff;
  border-left: 4px solid #2563eb;
  border-radius: 8px;
}

.disclaimer-title-strategic-planning-development {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.disclaimer-text-strategic-planning-development {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .hero-section-strategic-planning-development {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
  
  .process-section-strategic-planning-development,
  .features-section-strategic-planning-development,
  .analysis-section-strategic-planning-development,
  .implementation-section-strategic-planning-development,
  .challenges-section-strategic-planning-development,
  .conclusion-section-strategic-planning-development,
  .related-section-strategic-planning-development,
  .quote-section-strategic-planning-development,
  .intro-section-strategic-planning-development {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-stats-strategic-planning-development {
    gap: 4rem;
  }
  
  .stat-item-strategic-planning-development {
    min-width: 180px;
  }
}

/* About Page Styles */
:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #0d1526;
  --color-bg-tertiary: #111d2f;
  --color-text-primary: #ffffff;
  --color-text-secondary: #94a3b8;
  --color-primary: #f59e0b;
  --color-primary-hover: #fbbf24;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.3);
  --radius-md: 12px;
  --radius-lg: 16px;
}

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

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

.management-consulting-about {
  width: 100%;
}

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

section {
  width: 100%;
  overflow: hidden;
}

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

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

.intro-hero-title-about {
  font-size: clamp(2.25rem, 6vw + 0.5rem, 4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-hero-subtitle-about {
  font-size: clamp(1.125rem, 2.5vw + 0.5rem, 1.375rem);
  color: #cbd5e1;
  max-width: 700px;
  line-height: 1.7;
}

.intro-hero-image-about {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1.5rem, 3vw, 2rem) 0 0 0;
}

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

.stat-item-about {
  flex: 1 1 auto;
  min-width: 140px;
}

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

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

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

.expertise-content-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: flex-start;
}

.expertise-text-block-about {
  flex: 1 1 400px;
  min-width: 300px;
}

.expertise-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.expertise-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.expertise-highlight-about {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(245, 158, 11, 0.08);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.expertise-highlight-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #fbbf24;
  font-style: italic;
  line-height: 1.7;
}

.expertise-visual-about {
  flex: 1 1 400px;
  min-width: 300px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .expertise-content-about {
    flex-direction: column;
  }
  
  .expertise-visual-about {
    flex: 1 1 100%;
  }
}

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

.methodology-header-about {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.methodology-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.methodology-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.methodology-subtitle-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #94a3b8;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.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-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 158, 11, 0.1);
  transition: all 0.3s ease;
}

.methodology-step-about:hover {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.03);
}

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

.methodology-step-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.methodology-step-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.methodology-step-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

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

.values-intro-about {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.values-intro-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.values-intro-text-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.values-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 158, 11, 0.15);
  transition: all 0.3s ease;
}

.values-card-about:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 15px 50px rgba(245, 158, 11, 0.15);
}

.values-card-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.75rem;
  flex-shrink: 0;
}

.values-card-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.values-card-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #94a3b8;
  line-height: 1.7;
}

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

.impact-content-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.impact-text-about {
  flex: 1 1 380px;
  min-width: 300px;
}

.impact-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.impact-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.impact-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.impact-features-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.impact-feature-about {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.impact-feature-icon-about {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 6px;
  color: var(--color-primary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.impact-feature-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.impact-visual-about {
  flex: 1 1 380px;
  min-width: 300px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .impact-content-about {
    flex-direction: column;
  }
  
  .impact-visual-about {
    flex: 1 1 100%;
  }
}

.featured-insight-about {
  padding: clamp(2rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-tertiary);
  margin: clamp(2rem, 4vw, 3rem) 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.featured-insight-text-about {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #fbbf24;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.featured-insight-author-about {
  font-size: 0.875rem;
  color: #94a3b8;
  font-style: normal;
}

.disclaimer-notice-section-about {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid rgba(245, 158, 11, 0.1);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.disclaimer-header-about {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.disclaimer-icon-about {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 6px;
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.disclaimer-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.disclaimer-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 900px;
}

@media (min-width: 768px) {
  .intro-hero-section-about {
    padding: 5rem 0;
  }
  
  .expertise-foundation-section-about {
    padding: 5rem 0;
  }
  
  .methodology-process-section-about {
    padding: 5rem 0;
  }
  
  .values-commitment-section-about {
    padding: 5rem 0;
  }
  
  .impact-outcomes-section-about {
    padding: 5rem 0;
  }
  
  .disclaimer-notice-section-about {
    padding: 4rem 0;
  }
  
  .hero-stats-about {
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .intro-hero-section-about {
    padding: 6rem 0;
  }
  
  .expertise-foundation-section-about {
    padding: 6rem 0;
  }
  
  .methodology-process-section-about {
    padding: 6rem 0;
  }
  
  .values-commitment-section-about {
    padding: 6rem 0;
  }
  
  .impact-outcomes-section-about {
    padding: 6rem 0;
  }
  
  .disclaimer-notice-section-about {
    padding: 4rem 0;
  }
}

/* Privacy Page Styles */
/* Universal legal documentation page */
.legal-docs {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

/* Section base styles */
.legal-docs section {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

/* Container */
.legal-docs .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

/* Hero section */
.legal-docs-hero {
  background: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-bg-tertiary);
}

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

.legal-docs-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-hero-meta {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  font-style: italic;
}

/* Main content section */
.legal-docs-content {
  background: var(--color-bg-primary);
}

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

/* Section article */
.legal-docs-article {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.legal-docs-article h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-article h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.25;
  margin-top: 1.5rem;
}

.legal-docs-article p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-article ul,
.legal-docs-article ol {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-left: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-docs-article li {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Contact section */
.legal-docs-contact {
  background: var(--color-bg-secondary);
  margin-top: clamp(2.5rem, 6vw, 4rem);
  border-top: 1px solid var(--color-bg-tertiary);
}

.legal-docs-contact-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-docs-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.2;
}

.legal-docs-contact p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-docs-contact-label {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.legal-docs-contact-value {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .legal-docs section {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .legal-docs-article {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .legal-docs section {
    padding: 6rem 0;
  }
}

/* Thank You Page Styles */
.thank-you-page {
  width: 100%;
}

.thank-section {
  background: var(--color-bg-primary);
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px, 15vw, 120px);
  height: clamp(80px, 15vw, 120px);
  background: var(--color-secondary);
  border-radius: 50%;
  animation: scaleIn 0.6s ease-out;
}

.thank-icon i {
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: #ffffff;
}

.thank-section h1 {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  line-height: 1.2;
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-lead {
  color: var(--color-text-secondary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

.thank-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  box-shadow: var(--shadow-sm);
}

.thank-steps-title {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
  margin: 0 0 1rem 0;
}

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

.thank-steps-list li {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-steps-list li::before {
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.75rem;
  margin-top: 2px;
}

.thank-steps-list li::before {
  content: '✓';
  font-size: 0.875rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  font-family: var(--font-primary);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(4rem, 8vw, 8rem) 0;
    min-height: 100vh;
  }

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

  .thank-next-steps {
    padding: clamp(2rem, 4vw, 3rem);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: 8rem 0;
  }

  .thank-content {
    gap: 3rem;
  }

  .thank-steps-list {
    gap: 1.25rem;
  }

  .btn:hover {
    transform: translateY(-3px);
  }
}

/* 404 Page Styles */
/* Error Page Component */
.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-primary);
  padding: clamp(2rem, 8vw, 4rem) 0;
  overflow: hidden;
  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 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1rem, 4vw, 2rem);
}

/* Error Visual Section */
.error-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: clamp(0.5rem, 2vw, 1.5rem);
}

.error-code-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.error-code {
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 900;
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(37, 99, 235, 0.15);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-decoration {
  position: absolute;
  bottom: -20px;
  right: clamp(10%, 15vw, 30%);
  font-size: clamp(2rem, 8vw, 4rem);
  color: var(--color-accent);
  opacity: 0.8;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Error Title */
.error-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin: clamp(1rem, 3vw, 2rem) 0 0 0;
  line-height: 1.2;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Error Description */
.error-description {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Error Subtitle */
.error-subtitle {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

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

.btn-large {
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(2rem, 5vw, 3rem);
  font-size: clamp(0.9375rem, 1.2vw + 0.5rem, 1.125rem);
  margin-top: clamp(0.5rem, 2vw, 1rem);
}

/* Error Suggestions */
.error-suggestions {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  border-top: 1px solid var(--color-bg-tertiary);
  width: 100%;
  max-width: 600px;
}

.suggestions-label {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-weight: 600;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  letter-spacing: 0.5px;
}

.suggestions-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.suggestions-list li {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  font-size: clamp(0.8125rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.suggestions-list i {
  color: var(--color-primary);
  flex-shrink: 0;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

/* Responsive Design */
@media (min-width: 768px) {
  .error-section {
    padding: clamp(3rem, 10vw, 5rem) 0;
    min-height: 100vh;
  }

  .error-content {
    gap: clamp(2rem, 5vw, 3.5rem);
    padding: clamp(1.5rem, 5vw, 3rem);
  }

  .error-code {
    text-shadow: 0 6px 30px rgba(37, 99, 235, 0.2);
  }

  .error-decoration {
    bottom: -30px;
    right: clamp(15%, 20vw, 35%);
  }

  .error-suggestions {
    margin-top: clamp(2rem, 5vw, 3rem);
    padding-top: clamp(2rem, 5vw, 3rem);
  }

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

@media (min-width: 1024px) {
  .error-section {
    padding: clamp(4rem, 12vw, 6rem) 0;
    min-height: 100vh;
  }

  .error-content {
    gap: clamp(2.5rem, 6vw, 4rem);
  }

  .btn-primary:hover {
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.4);
  }
}

@media (min-width: 1440px) {
  .error-section {
    padding: 6rem 0;
    min-height: 100vh;
  }

  .error-content {
    gap: 4rem;
  }
}

/* Accessibility */
.error-page a:focus-visible,
.error-page button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .error-section {
    min-height: auto;
    padding: 2rem 0;
  }

  .error-decoration {
    display: none;
  }
}