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

:root {
  /* LIGHT PALETTE - L3: SOFT GRAY + GREEN */
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;
  
  /* Text colors */
  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  
  /* Accent colors - Professional Green */
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-primary-light: #d1fae5;
  --color-secondary: #10b981;
  --color-secondary-light: #a7f3d0;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --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.1);
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.15;
  color: var(--color-text-primary);
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  color: var(--color-text-primary);
}

h3 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  line-height: 1.25;
  color: var(--color-text-primary);
}

h4 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  line-height: 1.3;
  color: var(--color-text-primary);
}

p, li, span {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
}

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

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

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

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

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

.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: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

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

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

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

/* Form styles */
input, textarea, select {
  font-family: var(--font-primary);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
  color: var(--color-text-primary);
  transition: all 0.3s ease;
}

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

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

/* Form submit button */
.form-submit-btn, .contact-form-submit {
  background: var(--color-primary);
  color: #ffffff;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  font-size: 1rem;
}

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

/* Card styles */
.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

/* Grid layouts */
.grid {
  display: grid;
  gap: clamp(1rem, 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));
}

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

/* Flex utilities */
.flex {
  display: flex;
  gap: var(--space-md);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

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

/* Responsive utilities */
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .flex-between {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Accent decorations */
.accent-line {
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 2px;
  width: 60px;
}

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

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

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

/* Utility classes */
.text-center {
  text-align: center;
}

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

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

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

.py-1 { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-2 { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-3 { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-4 { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }

/* Scroll behavior */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-tertiary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-hover);
}

/* Selection */
::selection {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

::-moz-selection {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

/* Responsive breakpoint utilities */
@media (max-width: 768px) {
  h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }
  
  h2 {
    font-size: clamp(1.25rem, 4vw, 2rem);
  }
  
  .container {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }
}
:root {
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;
  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-primary-light: #d1fae5;
  --color-secondary: #10b981;
  --color-secondary-light: #a7f3d0;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

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

html {
  scroll-behavior: smooth;
}

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

.header-leadership-deck {
  background: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-bg-tertiary);
  position: relative;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-leadership-deck-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: clamp(70px, 12vw, 90px);
  gap: clamp(1rem, 2vw, 2rem);
}

.header-leadership-deck-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  flex-shrink: 0;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header-leadership-deck-brand:hover {
  opacity: 0.8;
}

.header-leadership-deck-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(36px, 6vw, 48px);
  height: clamp(36px, 6vw, 48px);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.header-leadership-deck-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.5px;
}

.header-leadership-deck-desktop-nav {
  display: none;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  flex-grow: 1;
  justify-content: center;
}

.header-leadership-deck-nav-link {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 300ms ease;
  position: relative;
  white-wrap: balance;
}

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

.header-leadership-deck-nav-link:hover {
  color: var(--color-primary);
}

.header-leadership-deck-nav-link:hover::after {
  width: 100%;
}

.header-leadership-deck-cta-button {
  display: none;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1rem, 2.5vw, 1.5rem);
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-leadership-deck-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(5, 150, 105, 0.2);
}

.header-leadership-deck-cta-button:active {
  transform: translateY(0);
}

.header-leadership-deck-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 8vw, 48px);
  height: clamp(40px, 8vw, 48px);
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  cursor: pointer;
  transition: all 300ms ease;
  padding: 0;
  flex-shrink: 0;
}

.header-leadership-deck-mobile-toggle:hover {
  color: var(--color-primary);
}

.header-leadership-deck-mobile-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.header-leadership-deck-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-bg-secondary);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  display: flex;
  flex-direction: column;
}

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

.header-leadership-deck-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-bottom: 1px solid var(--color-bg-tertiary);
}

.header-leadership-deck-mobile-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.header-leadership-deck-mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 300ms ease;
  padding: 0;
}

.header-leadership-deck-mobile-close:hover {
  color: var(--color-primary);
}

.header-leadership-deck-mobile-close:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.header-leadership-deck-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  flex-grow: 1;
  overflow-y: auto;
}

.header-leadership-deck-mobile-link {
  padding: clamp(1rem, 2vw, 1.25rem) clamp(1rem, 3vw, 1.5rem);
  color: var(--color-text-primary);
  text-decoration: none;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 500;
  border-bottom: 1px solid var(--color-bg-tertiary);
  transition: all 300ms ease;
  display: block;
}

.header-leadership-deck-mobile-link:hover {
  background: var(--color-bg-primary);
  color: var(--color-primary);
  padding-left: clamp(1.25rem, 3vw, 1.75rem);
}

.header-leadership-deck-mobile-cta {
  margin: auto clamp(1rem, 3vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 2.5vw, 1.5rem);
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  text-align: center;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.header-leadership-deck-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(5, 150, 105, 0.2);
}

.header-leadership-deck-mobile-cta:active {
  transform: translateY(0);
}

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

  .header-leadership-deck-cta-button {
    display: inline-block;
  }

  .header-leadership-deck-mobile-toggle {
    display: none;
  }

  .header-leadership-deck-mobile-menu {
    display: none;
  }

  .header-leadership-deck-container {
    gap: 2rem;
  }

  .header-leadership-deck-nav-link {
    font-size: 1rem;
  }

  .header-leadership-deck-cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .header-leadership-deck-container {
    gap: 3rem;
  }

  .header-leadership-deck-desktop-nav {
    gap: 2.5rem;
  }

  .header-leadership-deck-nav-link {
    font-size: 1rem;
  }

  .header-leadership-deck-logo-text {
    font-size: 1.375rem;
  }

  .header-leadership-deck-cta-button {
    padding: 1rem 1.75rem;
  }
}

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

    /* HR Excellence Portal - Index Page */
.hr-excellence-portal {
  width: 100%;
  overflow-x: hidden;
}

/* ============ HERO SECTION ============ */
.hero-section-index {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: #f9fafb;
}

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

.hero-gradient-mesh-index {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.1) 0%, transparent 65%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.hero-accent-orb-index {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-card-index {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 180px;
  height: 140px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  z-index: 2;
  pointer-events: none;
  transform: rotate(8deg);
}

.hero-line-accent-index {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-shape-organic-index {
  position: absolute;
  bottom: -5%;
  left: 20%;
  width: 320px;
  height: 280px;
  background: rgba(34, 197, 94, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-glow-secondary-index {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.08) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

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

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

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

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

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

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

.hero-stat-label-index {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

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

.hero-btn-primary-index {
  background: #059669;
  color: #ffffff;
}

.hero-btn-primary-index:hover {
  background: #047857;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.25);
}

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

.hero-btn-secondary-index:hover {
  background: rgba(5, 150, 105, 0.05);
  border-color: #047857;
  color: #047857;
}

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

.about-shape-accent-index {
  position: absolute;
  top: 10%;
  left: -50px;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

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

.about-line-element-index {
  position: absolute;
  top: 30%;
  right: 5%;
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #059669, transparent);
  z-index: 2;
  pointer-events: none;
}

.about-floating-panel-index {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 160px;
  height: 120px;
  background: rgba(5, 150, 105, 0.04);
  border: 1px solid rgba(5, 150, 105, 0.1);
  border-radius: 10px;
  z-index: 1;
  pointer-events: none;
  transform: rotate(-5deg);
}

.about-mesh-soft-index {
  position: absolute;
  bottom: 20%;
  left: 30%;
  width: 350px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.08) 0%, transparent 65%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.about-accent-dot-index {
  position: absolute;
  top: 60%;
  right: 15%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  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: center;
}

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

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

.about-description-index {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

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

.about-feature-icon-index {
  color: #059669;
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.about-feature-text-index {
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.6;
}

.about-image-block-index {
  flex: 1 1 300px;
  min-width: 280px;
}

.about-image-index {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* ============ SERVICES SECTION ============ */
.services-section-index {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: #f3f4f6;
}

.services-glow-top-index {
  position: absolute;
  top: -5%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.services-gradient-field-index {
  position: absolute;
  top: 30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

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

.services-floating-element-index {
  position: absolute;
  top: 20%;
  right: 8%;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 20px;
  z-index: 2;
  pointer-events: none;
  transform: rotate(12deg);
}

.services-line-divider-index {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.services-accent-blob-index {
  position: absolute;
  bottom: 15%;
  right: 15%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.08) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.services-glow-bottom-index {
  position: absolute;
  bottom: -50px;
  left: 30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.services-header-index {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.services-subtitle-index {
  font-size: clamp(0.9375rem, 1.5vw + 0.25rem, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

.services-card-index:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(5, 150, 105, 0.2);
}

.services-card-icon-index {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 10px;
  color: #059669;
  font-size: 1.5rem;
}

.services-card-title-index {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

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

.services-card-link-index {
  font-size: 0.875rem;
  font-weight: 600;
  color: #059669;
  text-decoration: none;
  transition: all 300ms ease-in-out;
  display: inline-flex;
  align-items: center;
}

.services-card-link-index:hover {
  color: #047857;
  transform: translateX(4px);
}

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

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

.process-shape-left-index {
  position: absolute;
  bottom: 5%;
  left: -40px;
  width: 320px;
  height: 320px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.process-shape-right-index {
  position: absolute;
  top: 40%;
  right: 5%;
  width: 240px;
  height: 240px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.process-line-element-index {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.process-floating-card-index {
  position: absolute;
  bottom: 30%;
  right: 10%;
  width: 150px;
  height: 100px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(5, 150, 105, 0.15);
  border-radius: 8px;
  z-index: 1;
  pointer-events: none;
  transform: rotate(6deg);
}

.process-header-index {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3.5rem;
}

.process-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.process-subtitle-index {
  font-size: clamp(0.9375rem, 1.5vw + 0.25rem, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.process-steps-index {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.process-step-index {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.75rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #059669;
  transition: all 300ms ease;
}

.process-step-index:hover {
  background: #f1f5f9;
  transform: translateX(8px);
}

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

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

.process-step-title-index {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

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

@media (max-width: 768px) {
  .process-step-index {
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .process-step-number-index {
    min-width: 60px;
  }
}

/* ============ FEATURED POSTS SECTION ============ */
.featured-posts-section-index {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: #f3f4f6;
}

.featured-posts-glow-index {
  position: absolute;
  top: 5%;
  left: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.featured-posts-shape-index {
  position: absolute;
  top: 50%;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 45% 55% 50% 50% / 55% 45% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.featured-posts-accent-index {
  position: absolute;
  bottom: 10%;
  left: 20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.08) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.featured-posts-element-index {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

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

.featured-posts-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.featured-posts-subtitle-index {
  font-size: clamp(0.9375rem, 1.5vw + 0.25rem, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

.featured-posts-card-index:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

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

.featured-posts-card-title-index {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

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

.featured-posts-card-link-index {
  font-size: 0.875rem;
  font-weight: 600;
  color: #059669;
  text-decoration: none;
  transition: all 300ms ease-in-out;
  display: inline-flex;
  align-items: center;
}

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

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

.featured-posts-btn-index {
  background: #059669;
  color: #ffffff;
}

.featured-posts-btn-index:hover {
  background: #047857;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.25);
}

/* ============ TESTIMONIALS SECTION ============ */
.testimonials-section-index {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: #ffffff;
}

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

.testimonials-glow-right-index {
  position: absolute;
  bottom: 15%;
  right: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

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

.testimonials-floating-element-index {
  position: absolute;
  bottom: 30%;
  left: 10%;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(5, 150, 105, 0.15);
  border-radius: 16px;
  z-index: 1;
  pointer-events: none;
  transform: rotate(-8deg);
}

.testimonials-header-index {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3.5rem;
}

.testimonials-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.testimonials-quote-block-index {
  flex: 1 1 300px;
  min-width: 280px;
  padding: 2.5rem;
  background: #f8fafc;
  border-left: 5px solid #059669;
  border-radius: 8px;
}

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

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

.testimonials-author-name-index {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

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

.testimonials-benefits-index {
  flex: 1 1 300px;
  min-width: 280px;
}

.testimonials-benefits-title-index {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

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

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

.testimonials-benefit-icon-index {
  color: #059669;
  font-size: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.testimonials-benefit-item-index span {
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.6;
}

/* ============ CONTACT SECTION ============ */
.contact-section-index {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: #f9fafb;
}

.contact-glow-accent-index {
  position: absolute;
  top: 10%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.contact-shape-element-index {
  position: absolute;
  bottom: 5%;
  left: -50px;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.contact-line-divider-index {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.contact-floating-panel-index {
  position: absolute;
  top: 50%;
  left: 8%;
  width: 160px;
  height: 120px;
  background: rgba(139, 92, 246, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 10px;
  z-index: 1;
  pointer-events: none;
  transform: rotate(5deg);
}

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

.contact-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.contact-subtitle-index {
  font-size: clamp(0.9375rem, 1.5vw + 0.25rem, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

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

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

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

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

.contact-input-index:focus,
.contact-textarea-index:focus {
  outline: none;
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

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

.contact-privacy-index {
  padding: 1rem;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(5, 150, 105, 0.1);
}

.contact-privacy-text-index {
  font-size: 0.8125rem;
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

.contact-privacy-link-index {
  color: #059669;
  text-decoration: underline;
  font-weight: 600;
}

.contact-privacy-link-index:hover {
  color: #047857;
}

.contact-submit-index {
  padding: 1rem 2rem;
  background: #059669;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-primary);
}

.contact-submit-index:hover {
  background: #047857;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.25);
}

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

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

.contact-faq-block-index {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #e5e7eb;
}

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

.contact-faq-item-index {
  margin-bottom: 1.75rem;
}

.contact-faq-item-index:last-child {
  margin-bottom: 0;
}

.contact-faq-question-index {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

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

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

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

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

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms ease;
  font-family: var(--font-primary);
}

.cookie-btn-accept-index {
  background: #059669;
  color: #ffffff;
}

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

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

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

/* ============ RESPONSIVE BREAKPOINTS ============ */
@media (max-width: 768px) {
  .about-content-index,
  .testimonials-content-index {
    flex-direction: column;
  }
  
  .about-image-index {
    max-height: 300px;
  }
  
  .hero-cta-group-index {
    flex-direction: column;
  }
  
  .hero-btn-primary-index,
  .hero-btn-secondary-index {
    width: 100%;
  }
  
  .services-card-index {
    flex: 1 1 100%;
    max-width: none;
  }
  
  .featured-posts-card-index {
    flex: 1 1 100%;
    max-width: none;
  }
  
  .process-step-index {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-banner-index {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-banner-buttons-index {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-stats-index {
    gap: 1.5rem;
  }
  
  .contact-form-wrapper-index,
  .contact-info-wrapper-index {
    flex: 1 1 100%;
  }
}

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

    .footer {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid var(--color-bg-tertiary);
  margin-top: 0;
}

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

.footer-content {
  display: block;
  width: 100%;
}

/* About Section */
.footer-about-section {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--color-bg-tertiary);
}

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

.footer-about-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 500px;
}

/* Navigation Section */
.footer-navigation-section {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--color-bg-tertiary);
}

.footer-nav-title {
  font-family: var(--font-heading);
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

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

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

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

/* Contact Section */
.footer-contact-section {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--color-bg-tertiary);
}

.footer-contact-title {
  font-family: var(--font-heading);
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-contact-item {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Legal Section */
.footer-legal-section {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--color-bg-tertiary);
}

.footer-legal-title {
  font-family: var(--font-heading);
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

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

.footer-legal-link:hover::after {
  width: 100%;
}

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

/* Copyright Section */
.footer-copyright-section {
  text-align: center;
  padding-top: clamp(1.5rem, 3vw, 2rem);
}

.footer-copyright-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.875rem);
  color: var(--color-text-muted);
  margin: 0;
  letter-spacing: 0.3px;
}

/* Tablet Responsive */
@media (min-width: 768px) {
  .footer {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    grid-auto-flow: dense;
  }

  .footer-about-section {
    grid-column: 1 / -1;
    margin-bottom: 0;
    padding-bottom: clamp(2rem, 4vw, 3rem);
  }

  .footer-navigation-section,
  .footer-contact-section,
  .footer-legal-section {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .footer-copyright-section {
    grid-column: 1 / -1;
    padding-top: clamp(2rem, 4vw, 3rem);
    border-top: 1px solid var(--color-bg-tertiary);
  }
}

/* Desktop Responsive */
@media (min-width: 1024px) {
  .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    grid-auto-flow: row;
  }

  .footer-about-section {
    grid-column: 1;
    border-bottom: none;
    padding-bottom: 0;
  }

  .footer-navigation-section {
    grid-column: 2;
  }

  .footer-contact-section {
    grid-column: 3;
  }

  .footer-legal-section {
    grid-column: 4;
  }

  .footer-copyright-section {
    grid-column: 1 / -1;
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    border-top: 1px solid var(--color-bg-tertiary);
  }
}

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

  .footer-nav-link::after,
  .footer-legal-link::after {
    transition: none;
  }
}
    

/* Category Page Styles */
/* Category page wrapper */
.category-page-hr-consulting {
  width: 100%;
  overflow: hidden;
}

/* ====== HERO SECTION ====== */
.hero-section-hr-consulting {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f9fafb;
}

/* Decorative elements */
.hero-ambient-glow-hr {
  position: absolute;
  top: 5%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-field-hr {
  position: absolute;
  top: 50%;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-hr {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(34, 197, 94, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-corner-shape-hr {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-accent-orb-hr {
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 250px;
  height: 250px;
  background: rgba(5, 150, 105, 0.07);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-header-hr {
  margin-bottom: 3rem;
}

.hero-tag-hr-consulting {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title-hr-consulting {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  line-height: 1.15;
  color: #111827;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-description-hr-consulting {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #4b5563;
  max-width: 750px;
  margin-bottom: 0;
}

.hero-stats-hr-consulting {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(5, 150, 105, 0.1);
}

.stat-item-hr {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 0 1 auto;
}

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

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

@media (max-width: 768px) {
  .hero-section-hr-consulting {
    padding: 2.5rem 0;
  }

  .hero-stats-hr-consulting {
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
  }

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

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

.posts-header-hr-consulting {
  text-align: center;
  margin-bottom: 4rem;
}

.posts-title-hr-consulting {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 1rem;
}

.posts-subtitle-hr-consulting {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #4b5563;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.card-hr-consulting {
  flex: 1 1 320px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hr-consulting:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(5, 150, 105, 0.1);
  border-color: rgba(5, 150, 105, 0.2);
}

.card-image-hr-consulting {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  background: linear-gradient(135deg, #f0fdf4 0%, #dbeafe 100%);
}

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

.card-description-hr-consulting {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
  flex-grow: 1;
}

.card-meta-hr-consulting {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
}

.meta-badge-hr {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(5, 150, 105, 0.08);
  color: #059669;
  border-radius: 16px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.meta-badge-hr i {
  font-size: 0.875rem;
  opacity: 0.8;
}

.card-link-hr-consulting {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: #059669;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #059669;
}

.card-link-hr-consulting:hover {
  background: #047857;
  border-color: #047857;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.25);
}

.card-link-hr-consulting:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.3);
}

@media (max-width: 768px) {
  .posts-section-hr-consulting {
    padding: 2.5rem 0;
  }

  .posts-header-hr-consulting {
    margin-bottom: 2.5rem;
  }

  .card-hr-consulting {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ====== METHODOLOGY SECTION ====== */
.methodology-section-hr-consulting {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #f3f4f6;
}

.methodology-accent-glow-hr {
  position: absolute;
  top: 20%;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.methodology-shape-left-hr {
  position: absolute;
  bottom: 5%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.methodology-shape-right-hr {
  position: absolute;
  top: 60%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(5, 150, 105, 0.04);
  border-radius: 70% 30% 40% 60% / 30% 70% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.methodology-header-hr-consulting {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 10;
}

.methodology-title-hr-consulting {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 1rem;
}

.methodology-subtitle-hr-consulting {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #4b5563;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.methodology-steps-hr-consulting {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.methodology-step-hr-consulting {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.methodology-step-hr-consulting:hover {
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.08);
  border-color: rgba(5, 150, 105, 0.15);
}

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

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

.methodology-step-title-hr-consulting {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #111827;
}

.methodology-step-text-hr-consulting {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #4b5563;
}

@media (max-width: 768px) {
  .methodology-section-hr-consulting {
    padding: 2.5rem 0;
  }

  .methodology-header-hr-consulting {
    margin-bottom: 2.5rem;
  }

  .methodology-step-hr-consulting {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .methodology-step-number-hr {
    font-size: 2rem;
  }
}

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

.insights-pulse-glow-hr {
  position: absolute;
  top: 10%;
  right: -120px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.insights-floating-element-hr {
  position: absolute;
  bottom: 15%;
  left: -80px;
  width: 320px;
  height: 320px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 55% 45% 52% 48% / 48% 55% 45% 52%;
  z-index: 1;
  pointer-events: none;
}

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

.insights-text-block-hr {
  flex: 1 1 500px;
  min-width: 300px;
}

.insights-title-hr-consulting {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 1.5rem;
}

.insights-intro-hr-consulting {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 2.5rem;
}

.insights-points-hr-consulting {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.insight-item-hr-consulting {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 1.5rem;
  border-left: 3px solid #059669;
}

.insight-heading-hr-consulting {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #111827;
}

.insight-text-hr-consulting {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

.insights-highlight-hr {
  flex: 1 1 350px;
  min-width: 280px;
}

.featured-quote-hr-consulting {
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.06) 0%, rgba(16, 185, 129, 0.04) 100%);
  border-left: 4px solid #059669;
  border-radius: 8px;
  margin: 0;
}

.quote-text-hr-consulting {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  color: #111827;
  font-style: italic;
  margin-bottom: 1.5rem;
  margin: 0 0 1.5rem 0;
}

.quote-attribution-hr-consulting {
  display: block;
  font-size: 0.9375rem;
  color: #4b5563;
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 768px) {
  .insights-section-hr-consulting {
    padding: 2.5rem 0;
  }

  .insights-content-hr-consulting {
    flex-direction: column;
    gap: 2rem;
  }

  .insights-text-block-hr,
  .insights-highlight-hr {
    flex: 1 1 100%;
  }

  .insights-points-hr-consulting {
    gap: 1.5rem;
  }
}

/* ====== RESPONSIVE UTILITIES ====== */
@media (max-width: 768px) {
  .container {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }
}

/* ====== FOCUS STATES & ACCESSIBILITY ====== */
*:focus-visible {
  outline: 2px solid #059669;
  outline-offset: 2px;
}

/* ====== MOTION PREFERENCES ====== */
@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;
  }
}

/* Post Page 1 Styles */
.main-essential-leadership-development-programs {
  width: 100%;
}

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

.hero-section-essential-leadership-development-programs {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

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

.hero-text-essential-leadership-development-programs {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-essential-leadership-development-programs {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-essential-leadership-development-programs {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.hero-title-essential-leadership-development-programs {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.15;
  color: #111827;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-description-essential-leadership-development-programs {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-meta-essential-leadership-development-programs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meta-badge-essential-leadership-development-programs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-essential-leadership-development-programs i {
  color: #059669;
}

.hero-stats-essential-leadership-development-programs {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.stat-item-essential-leadership-development-programs {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-essential-leadership-development-programs {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.stat-label-essential-leadership-development-programs {
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 500;
}

.breadcrumbs-essential-leadership-development-programs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  align-items: center;
  font-size: 0.875rem;
}

.breadcrumb-link-essential-leadership-development-programs {
  color: #059669;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-essential-leadership-development-programs:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumb-separator-essential-leadership-development-programs {
  color: #9ca3af;
}

.breadcrumb-current-essential-leadership-development-programs {
  color: #4b5563;
}

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

.introduction-wrapper-essential-leadership-development-programs {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.introduction-text-essential-leadership-development-programs {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-essential-leadership-development-programs {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-essential-leadership-development-programs {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.introduction-title-essential-leadership-development-programs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  color: #111827;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.introduction-content-essential-leadership-development-programs {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.introduction-content-essential-leadership-development-programs:last-child {
  margin-bottom: 0;
}

.core-competencies-section-essential-leadership-development-programs {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.core-header-essential-leadership-development-programs {
  text-align: center;
  margin-bottom: 3rem;
}

.core-tag-essential-leadership-development-programs {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.core-title-essential-leadership-development-programs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  color: #111827;
  margin-bottom: 1rem;
  font-weight: 700;
}

.core-subtitle-essential-leadership-development-programs {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.competencies-grid-essential-leadership-development-programs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.competency-card-essential-leadership-development-programs {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.competency-card-essential-leadership-development-programs:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.competency-icon-essential-leadership-development-programs {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d1fae5;
  border-radius: var(--radius-lg);
  color: #059669;
  font-size: 1.5rem;
}

.competency-title-essential-leadership-development-programs {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.competency-text-essential-leadership-development-programs {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

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

.methodology-content-essential-leadership-development-programs {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.methodology-text-essential-leadership-development-programs {
  flex: 1 1 50%;
  max-width: 50%;
}

.methodology-image-essential-leadership-development-programs {
  flex: 1 1 50%;
  max-width: 50%;
}

.methodology-img-essential-leadership-development-programs {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.methodology-title-essential-leadership-development-programs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  color: #111827;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.methodology-description-essential-leadership-development-programs {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.methodology-step-essential-leadership-development-programs {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.methodology-step-number-essential-leadership-development-programs {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #059669;
  flex-shrink: 0;
  min-width: 50px;
  line-height: 1;
}

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

.methodology-step-title-essential-leadership-development-programs {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.methodology-step-text-essential-leadership-development-programs {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

.benefits-section-essential-leadership-development-programs {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.benefits-tag-essential-leadership-development-programs {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.benefits-title-essential-leadership-development-programs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  color: #111827;
  margin-bottom: 1rem;
  font-weight: 700;
}

.benefits-subtitle-essential-leadership-development-programs {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.benefits-wrapper-essential-leadership-development-programs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
}

.benefits-column-essential-leadership-development-programs {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.benefit-item-essential-leadership-development-programs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border-left: 4px solid #059669;
}

.benefit-icon-essential-leadership-development-programs {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d1fae5;
  border-radius: 8px;
  color: #059669;
  font-size: 1.25rem;
}

.benefit-item-title-essential-leadership-development-programs {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.benefit-item-text-essential-leadership-development-programs {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

.featured-quote-essential-leadership-development-programs {
  padding: 2rem 2.5rem;
  border-left: 4px solid #059669;
  background: #ffffff;
  margin: 0;
  border-radius: var(--radius-lg);
}

.quote-text-essential-leadership-development-programs {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.6;
  color: #1e293b;
  font-style: italic;
  margin-bottom: 1rem;
}

.quote-author-essential-leadership-development-programs {
  font-size: 0.875rem;
  color: #4b5563;
  font-style: normal;
}

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

.implementation-wrapper-essential-leadership-development-programs {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.implementation-image-essential-leadership-development-programs {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-img-essential-leadership-development-programs {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.implementation-text-essential-leadership-development-programs {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-essential-leadership-development-programs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  color: #111827;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.implementation-content-essential-leadership-development-programs {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.implementation-list-essential-leadership-development-programs {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.list-item-essential-leadership-development-programs {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.list-number-essential-leadership-development-programs {
  color: #059669;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.4;
}

.list-content-essential-leadership-development-programs {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.list-title-essential-leadership-development-programs {
  font-size: 0.9375rem;
  color: #1e293b;
  font-weight: 600;
}

.list-content-essential-leadership-development-programs {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
}

.conclusion-section-essential-leadership-development-programs {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-essential-leadership-development-programs {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-essential-leadership-development-programs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  color: #111827;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.conclusion-text-essential-leadership-development-programs {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.conclusion-cta-essential-leadership-development-programs {
  display: flex;
  justify-content: center;
}

.cta-button-essential-leadership-development-programs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  background: #059669;
  color: #ffffff;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #059669;
}

.cta-button-essential-leadership-development-programs:hover {
  background: #047857;
  border-color: #047857;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.disclaimer-content-essential-leadership-development-programs {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f9fafb;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-lg);
}

.disclaimer-title-essential-leadership-development-programs {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.disclaimer-text-essential-leadership-development-programs {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.7;
}

.related-section-essential-leadership-development-programs {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-essential-leadership-development-programs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  color: #111827;
  margin-bottom: 1rem;
  font-weight: 700;
}

.related-subtitle-essential-leadership-development-programs {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-essential-leadership-development-programs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-essential-leadership-development-programs {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.related-card-essential-leadership-development-programs:hover {
  border-color: #059669;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.related-card-content-essential-leadership-development-programs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.related-card-title-essential-leadership-development-programs {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.related-card-text-essential-leadership-development-programs {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
  flex: 1;
}

.related-card-link-essential-leadership-development-programs {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #059669;
  margin-top: auto;
  transition: color 0.2s ease;
}

.related-card-essential-leadership-development-programs:hover .related-card-link-essential-leadership-development-programs {
  color: #047857;
}

@media (max-width: 768px) {
  .hero-content-essential-leadership-development-programs,
  .introduction-wrapper-essential-leadership-development-programs,
  .methodology-content-essential-leadership-development-programs,
  .implementation-wrapper-essential-leadership-development-programs {
    flex-direction: column;
  }

  .hero-text-essential-leadership-development-programs,
  .hero-image-essential-leadership-development-programs,
  .introduction-text-essential-leadership-development-programs,
  .introduction-image-essential-leadership-development-programs,
  .methodology-text-essential-leadership-development-programs,
  .methodology-image-essential-leadership-development-programs,
  .implementation-image-essential-leadership-development-programs,
  .implementation-text-essential-leadership-development-programs {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-stats-essential-leadership-development-programs {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-item-essential-leadership-development-programs {
    flex-direction: row;
    align-items: baseline;
    gap: 0.5rem;
  }

  .stat-number-essential-leadership-development-programs {
    font-size: 1.5rem;
  }

  .stat-label-essential-leadership-development-programs {
    font-size: 0.75rem;
  }

  .benefits-column-essential-leadership-development-programs {
    flex: 1 1 100%;
  }

  .related-card-essential-leadership-development-programs {
    flex: 1 1 100%;
    max-width: none;
  }

  .methodology-steps-essential-leadership-development-programs {
    gap: 1rem;
  }

  .methodology-step-essential-leadership-development-programs {
    gap: 1rem;
  }
}

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

  .core-title-essential-leadership-development-programs,
  .benefits-title-essential-leadership-development-programs,
  .methodology-title-essential-leadership-development-programs,
  .implementation-title-essential-leadership-development-programs,
  .conclusion-title-essential-leadership-development-programs,
  .related-title-essential-leadership-development-programs {
    font-size: 1.5rem;
  }

  .competencies-grid-essential-leadership-development-programs {
    flex-direction: column;
  }

  .competency-card-essential-leadership-development-programs {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* Post Page 2 Styles */
.main-building-high-performance-hr-teams {
  width: 100%;
}

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

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

.hero-section-building-high-performance-hr-teams {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.hero-content-building-high-performance-hr-teams {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.hero-text-wrapper-building-high-performance-hr-teams {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-building-high-performance-hr-teams {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-subtitle-building-high-performance-hr-teams {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.article-meta-building-high-performance-hr-teams {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-building-high-performance-hr-teams {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #059669;
  font-weight: 500;
}

.meta-badge-building-high-performance-hr-teams i {
  color: #059669;
}

.hero-image-wrapper-building-high-performance-hr-teams {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-building-high-performance-hr-teams {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-stats-building-high-performance-hr-teams {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  justify-content: flex-start;
}

.stat-item-building-high-performance-hr-teams {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-building-high-performance-hr-teams {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.stat-label-building-high-performance-hr-teams {
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-content-building-high-performance-hr-teams {
    flex-direction: column;
    margin-bottom: 2rem;
  }

  .hero-text-wrapper-building-high-performance-hr-teams,
  .hero-image-wrapper-building-high-performance-hr-teams {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-building-high-performance-hr-teams {
    gap: 2rem;
  }
}

.breadcrumbs-building-high-performance-hr-teams {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-building-high-performance-hr-teams {
  color: #059669;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumb-link-building-high-performance-hr-teams:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumb-separator-building-high-performance-hr-teams {
  color: #cbd5e1;
  margin: 0 0.25rem;
}

.breadcrumb-current-building-high-performance-hr-teams {
  color: #4b5563;
  font-weight: 500;
}

.intro-section-building-high-performance-hr-teams {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.intro-content-building-high-performance-hr-teams {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-building-high-performance-hr-teams {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-building-high-performance-hr-teams {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.intro-paragraph-building-high-performance-hr-teams {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.intro-image-building-high-performance-hr-teams {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-building-high-performance-hr-teams {
  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-building-high-performance-hr-teams {
    flex-direction: column;
  }

  .intro-text-building-high-performance-hr-teams,
  .intro-image-building-high-performance-hr-teams {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-one-building-high-performance-hr-teams,
.content-section-two-building-high-performance-hr-teams,
.content-section-three-building-high-performance-hr-teams {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.content-section-one-building-high-performance-hr-teams,
.content-section-three-building-high-performance-hr-teams {
  background: #f3f4f6;
}

.content-section-two-building-high-performance-hr-teams {
  background: #ffffff;
}

.section-header-building-high-performance-hr-teams {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-building-high-performance-hr-teams {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title-building-high-performance-hr-teams {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.section-subtitle-building-high-performance-hr-teams {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.content-wrapper-one-building-high-performance-hr-teams,
.content-wrapper-two-building-high-performance-hr-teams,
.content-wrapper-three-building-high-performance-hr-teams {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-one-building-high-performance-hr-teams,
.content-text-two-building-high-performance-hr-teams,
.content-text-three-building-high-performance-hr-teams {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-building-high-performance-hr-teams,
.content-image-two-building-high-performance-hr-teams,
.content-image-three-building-high-performance-hr-teams {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-heading-one-building-high-performance-hr-teams,
.content-heading-two-building-high-performance-hr-teams,
.content-heading-three-building-high-performance-hr-teams {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.content-paragraph-one-building-high-performance-hr-teams,
.content-paragraph-two-building-high-performance-hr-teams,
.content-paragraph-three-building-high-performance-hr-teams {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.content-subheading-one-building-high-performance-hr-teams,
.content-subheading-two-building-high-performance-hr-teams,
.content-subheading-three-building-high-performance-hr-teams {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #111827;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.content-list-one-building-high-performance-hr-teams,
.content-list-two-building-high-performance-hr-teams,
.content-list-three-building-high-performance-hr-teams {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content-list-one-building-high-performance-hr-teams li,
.content-list-two-building-high-performance-hr-teams li,
.content-list-three-building-high-performance-hr-teams li {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  list-style-position: outside;
}

.highlight-box-building-high-performance-hr-teams {
  padding: clamp(1rem, 3vw, 1.5rem);
  background: rgba(5, 150, 105, 0.08);
  border-left: 4px solid #059669;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.highlight-text-building-high-performance-hr-teams {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #111827;
  line-height: 1.6;
}

.featured-quote-building-high-performance-hr-teams {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #059669;
  background: #f3f4f6;
  margin: 2rem 0;
  border-radius: 4px;
}

.quote-text-building-high-performance-hr-teams {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #111827;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.quote-author-building-high-performance-hr-teams {
  font-size: 0.875rem;
  color: #4b5563;
  font-style: normal;
  font-weight: 500;
}

.content-img-one-building-high-performance-hr-teams,
.content-img-two-building-high-performance-hr-teams,
.content-img-three-building-high-performance-hr-teams {
  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) {
  .content-wrapper-one-building-high-performance-hr-teams,
  .content-wrapper-two-building-high-performance-hr-teams,
  .content-wrapper-three-building-high-performance-hr-teams {
    flex-direction: column;
  }

  .content-text-one-building-high-performance-hr-teams,
  .content-text-two-building-high-performance-hr-teams,
  .content-text-three-building-high-performance-hr-teams,
  .content-image-one-building-high-performance-hr-teams,
  .content-image-two-building-high-performance-hr-teams,
  .content-image-three-building-high-performance-hr-teams {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.process-section-building-high-performance-hr-teams {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.process-steps-building-high-performance-hr-teams {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-step-building-high-performance-hr-teams {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f3f4f6;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.process-step-number-building-high-performance-hr-teams {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.process-step-content-building-high-performance-hr-teams {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-step-title-building-high-performance-hr-teams {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
}

.process-step-text-building-high-performance-hr-teams {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-step-building-high-performance-hr-teams {
    flex-direction: column;
    gap: 1rem;
  }

  .process-step-number-building-high-performance-hr-teams {
    min-width: auto;
  }
}

.features-section-building-high-performance-hr-teams {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.features-cards-building-high-performance-hr-teams {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.features-card-building-high-performance-hr-teams {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-card-building-high-performance-hr-teams:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.features-card-icon-building-high-performance-hr-teams {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 10px;
  color: #059669;
  font-size: 1.5rem;
}

.features-card-title-building-high-performance-hr-teams {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
}

.features-card-text-building-high-performance-hr-teams {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features-card-building-high-performance-hr-teams {
    flex: 1 1 100%;
    max-width: none;
  }
}

.conclusion-section-building-high-performance-hr-teams {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.conclusion-content-building-high-performance-hr-teams {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-building-high-performance-hr-teams {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.conclusion-text-building-high-performance-hr-teams {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-box-building-high-performance-hr-teams {
  background: linear-gradient(135deg, #059669, #10b981);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

.cta-title-building-high-performance-hr-teams {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-text-building-high-performance-hr-teams {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #f0fdf4;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-cta-building-high-performance-hr-teams {
  background: #ffffff;
  color: #059669;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-cta-building-high-performance-hr-teams:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.disclaimer-section-building-high-performance-hr-teams {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.disclaimer-content-building-high-performance-hr-teams {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 8px;
  border-left: 4px solid #cbd5e1;
}

.disclaimer-title-building-high-performance-hr-teams {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.disclaimer-text-building-high-performance-hr-teams {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

.related-section-building-high-performance-hr-teams {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.related-header-building-high-performance-hr-teams {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-building-high-performance-hr-teams {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.related-subtitle-building-high-performance-hr-teams {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
}

.related-cards-building-high-performance-hr-teams {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-building-high-performance-hr-teams {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.related-card-building-high-performance-hr-teams:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.related-card-image-building-high-performance-hr-teams {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f3f4f6;
}

.related-card-image-building-high-performance-hr-teams img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-building-high-performance-hr-teams {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  flex-grow: 1;
}

.related-card-title-building-high-performance-hr-teams {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
}

.related-card-text-building-high-performance-hr-teams {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-building-high-performance-hr-teams {
  font-size: 0.875rem;
  font-weight: 600;
  color: #059669;
  transition: color 0.2s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.related-card-building-high-performance-hr-teams:hover .related-card-link-building-high-performance-hr-teams {
  color: #047857;
}

@media (max-width: 768px) {
  .related-card-building-high-performance-hr-teams {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .hero-section-building-high-performance-hr-teams {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .intro-section-building-high-performance-hr-teams,
  .content-section-one-building-high-performance-hr-teams,
  .content-section-two-building-high-performance-hr-teams,
  .content-section-three-building-high-performance-hr-teams,
  .process-section-building-high-performance-hr-teams,
  .features-section-building-high-performance-hr-teams,
  .conclusion-section-building-high-performance-hr-teams,
  .disclaimer-section-building-high-performance-hr-teams,
  .related-section-building-high-performance-hr-teams {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .section-header-building-high-performance-hr-teams {
    margin-bottom: 2rem;
  }

  .article-meta-building-high-performance-hr-teams {
    gap: 0.75rem;
  }

  .meta-badge-building-high-performance-hr-teams {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
  }
}

/* Post Page 3 Styles */
/* Main wrapper */
.main-people-management-best-practices {
  width: 100%;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */

.hero-section-people-management-best-practices {
  width: 100%;
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

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

.breadcrumb-link-people-management-best-practices {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-people-management-best-practices:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumb-separator-people-management-best-practices {
  color: #9ca3af;
}

.breadcrumb-current-people-management-best-practices {
  color: #4b5563;
  font-weight: 500;
}

.hero-content-people-management-best-practices {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.hero-text-wrapper-people-management-best-practices {
  flex: 1 1 300px;
  min-width: 0;
}

.hero-title-people-management-best-practices {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.15;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-people-management-best-practices {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-meta-people-management-best-practices {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-people-management-best-practices {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.meta-badge-people-management-best-practices i {
  font-size: 0.875rem;
}

.hero-image-people-management-best-practices {
  flex: 1 1 300px;
  min-width: 0;
}

.hero-featured-image-people-management-best-practices {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.hero-stats-people-management-best-practices {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  justify-content: center;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.stat-item-people-management-best-practices {
  text-align: center;
}

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

.stat-label-people-management-best-practices {
  display: block;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b5563;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-content-people-management-best-practices {
    flex-direction: column;
  }

  .hero-text-wrapper-people-management-best-practices,
  .hero-image-people-management-best-practices {
    flex: 1 1 100%;
  }

  .hero-stats-people-management-best-practices {
    gap: 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   INTRODUCTION SECTION
   ═══════════════════════════════════════════════════════════ */

.intro-section-people-management-best-practices {
  width: 100%;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-content-people-management-best-practices {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-people-management-best-practices {
  flex: 1 1 300px;
  min-width: 0;
}

.intro-title-people-management-best-practices {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.intro-paragraph-people-management-best-practices {
  font-size: clamp(0.9375rem, 1vw + 0.25rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-people-management-best-practices {
  flex: 1 1 300px;
  min-width: 0;
}

.intro-featured-image-people-management-best-practices {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-people-management-best-practices {
    flex-direction: column;
  }

  .intro-text-people-management-best-practices,
  .intro-image-people-management-best-practices {
    flex: 1 1 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   FUNDAMENTALS SECTION
   ═══════════════════════════════════════════════════════════ */

.fundamentals-section-people-management-best-practices {
  width: 100%;
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.fundamentals-header-people-management-best-practices {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-people-management-best-practices {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.fundamentals-title-people-management-best-practices {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.fundamentals-steps-people-management-best-practices {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fundamentals-step-people-management-best-practices {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

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

.fundamentals-step-content-people-management-best-practices {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fundamentals-step-title-people-management-best-practices {
  font-size: clamp(1.125rem, 2vw + 0.25rem, 1.375rem);
  font-weight: 600;
  color: #111827;
}

.fundamentals-step-text-people-management-best-practices {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #4b5563;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .fundamentals-step-people-management-best-practices {
    flex-direction: column;
    align-items: flex-start;
  }

  .fundamentals-step-number-people-management-best-practices {
    min-width: 50px;
  }
}

/* ═══════════════════════════════════════════════════════════
   PRACTICES SECTION
   ═══════════════════════════════════════════════════════════ */

.practices-section-people-management-best-practices {
  width: 100%;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.practices-content-people-management-best-practices {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practices-text-people-management-best-practices {
  flex: 1 1 300px;
  min-width: 0;
}

.practices-title-people-management-best-practices {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.practices-paragraph-people-management-best-practices {
  font-size: clamp(0.9375rem, 1vw + 0.25rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.practices-quote-people-management-best-practices {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #059669;
  background: #f9fafb;
  margin: 2rem 0;
  border-radius: 8px;
}

.quote-text-people-management-best-practices {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: #111827;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.quote-author-people-management-best-practices {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #4b5563;
  font-style: normal;
  display: block;
}

.practices-image-people-management-best-practices {
  flex: 1 1 300px;
  min-width: 0;
}

.practices-featured-image-people-management-best-practices {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .practices-content-people-management-best-practices {
    flex-direction: column;
  }

  .practices-text-people-management-best-practices,
  .practices-image-people-management-best-practices {
    flex: 1 1 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   STRATEGIES SECTION
   ═══════════════════════════════════════════════════════════ */

.strategies-section-people-management-best-practices {
  width: 100%;
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.strategies-header-people-management-best-practices {
  text-align: center;
  margin-bottom: 3rem;
}

.strategies-title-people-management-best-practices {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.strategies-cards-people-management-best-practices {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.strategies-card-people-management-best-practices {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.strategies-card-people-management-best-practices:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #059669;
}

.strategies-card-icon-people-management-best-practices {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 12px;
  color: #059669;
  font-size: 1.75rem;
}

.strategies-card-title-people-management-best-practices {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.strategies-card-text-people-management-best-practices {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #4b5563;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .strategies-card-people-management-best-practices {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   CONCLUSION SECTION
   ═══════════════════════════════════════════════════════════ */

.conclusion-section-people-management-best-practices {
  width: 100%;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-content-people-management-best-practices {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.conclusion-text-people-management-best-practices {
  flex: 1 1 300px;
  min-width: 0;
}

.conclusion-title-people-management-best-practices {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.conclusion-paragraph-people-management-best-practices {
  font-size: clamp(0.9375rem, 1vw + 0.25rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-people-management-best-practices {
  margin-top: 2rem;
}

.cta-button-people-management-best-practices {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.9375rem, 1vw, 1rem);
  font-weight: 600;
  background: #059669;
  color: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-button-people-management-best-practices:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

.conclusion-image-people-management-best-practices {
  flex: 1 1 300px;
  min-width: 0;
}

.conclusion-featured-image-people-management-best-practices {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .conclusion-content-people-management-best-practices {
    flex-direction: column;
  }

  .conclusion-text-people-management-best-practices,
  .conclusion-image-people-management-best-practices {
    flex: 1 1 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   DISCLAIMER SECTION
   ═══════════════════════════════════════════════════════════ */

.disclaimer-section-people-management-best-practices {
  width: 100%;
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

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

.disclaimer-content-people-management-best-practices {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-people-management-best-practices {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.disclaimer-text-people-management-best-practices {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #4b5563;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   RELATED POSTS SECTION
   ═══════════════════════════════════════════════════════════ */

.related-section-people-management-best-practices {
  width: 100%;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

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

.related-header-people-management-best-practices {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-people-management-best-practices {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.related-subtitle-people-management-best-practices {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #4b5563;
}

.related-cards-people-management-best-practices {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-people-management-best-practices {
  flex: 1 1 300px;
  max-width: 380px;
  display: block;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-people-management-best-practices:hover {
  background: #f3f4f6;
  border-color: #059669;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.related-card-content-people-management-best-practices {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-people-management-best-practices {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.related-card-text-people-management-best-practices {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #4b5563;
  line-height: 1.6;
}

.related-card-link-people-management-best-practices {
  display: inline-block;
  color: #059669;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}

.related-card-people-management-best-practices:hover .related-card-link-people-management-best-practices {
  color: #047857;
}

@media (max-width: 768px) {
  .related-card-people-management-best-practices {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* Post Page 4 Styles */
.main-business-skills-training-framework {
  width: 100%;
}

/* HERO SECTION */
.hero-section-business-skills-training-framework {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-wrapper-business-skills-training-framework {
  flex: 1 1 350px;
  max-width: 50%;
}

.hero-title-business-skills-training-framework {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.15;
  margin-bottom: 1rem;
}

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

.article-meta-business-skills-training-framework {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-business-skills-training-framework {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #d1fae5;
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-business-skills-training-framework i {
  color: #059669;
}

.hero-image-wrapper-business-skills-training-framework {
  flex: 1 1 350px;
  max-width: 50%;
}

.hero-image-business-skills-training-framework {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.hero-stats-business-skills-training-framework {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.stat-item-business-skills-training-framework {
  flex: 1 1 150px;
  text-align: center;
}

.stat-number-business-skills-training-framework {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-business-skills-training-framework {
  display: block;
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.breadcrumbs-business-skills-training-framework {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-business-skills-training-framework {
  color: #059669;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-business-skills-training-framework:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumb-separator-business-skills-training-framework {
  color: #cbd5e1;
  margin: 0 0.25rem;
}

.breadcrumb-current-business-skills-training-framework {
  color: #64748b;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-content-business-skills-training-framework {
    flex-direction: column;
  }
  
  .hero-text-wrapper-business-skills-training-framework,
  .hero-image-wrapper-business-skills-training-framework {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-stats-business-skills-training-framework {
    gap: 1.5rem;
  }
  
  .stat-item-business-skills-training-framework {
    flex: 1 1 120px;
  }
}

/* INTRODUCTION SECTION */
.introduction-section-business-skills-training-framework {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.introduction-text-business-skills-training-framework {
  flex: 1 1 350px;
  max-width: 50%;
}

.introduction-title-business-skills-training-framework {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.introduction-description-business-skills-training-framework {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.introduction-text-business-skills-training-framework {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

.introduction-image-business-skills-training-framework {
  flex: 1 1 350px;
  max-width: 50%;
}

.introduction-image-asset-business-skills-training-framework {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

@media (max-width: 768px) {
  .introduction-content-business-skills-training-framework {
    flex-direction: column;
  }
  
  .introduction-text-business-skills-training-framework,
  .introduction-image-business-skills-training-framework {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* FRAMEWORK COMPONENTS SECTION */
.framework-components-section-business-skills-training-framework {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.framework-header-business-skills-training-framework {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-business-skills-training-framework {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: #d1fae5;
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.framework-title-business-skills-training-framework {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.framework-cards-business-skills-training-framework {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.framework-card-business-skills-training-framework {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.framework-card-business-skills-training-framework:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.framework-card-icon-business-skills-training-framework {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d1fae5;
  border-radius: 12px;
  color: #059669;
  font-size: 1.5rem;
}

.framework-card-title-business-skills-training-framework {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.framework-card-text-business-skills-training-framework {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .framework-card-business-skills-training-framework {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* IMPLEMENTATION SECTION */
.implementation-section-business-skills-training-framework {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-wrapper-business-skills-training-framework {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.implementation-text-business-skills-training-framework {
  flex: 1 1 350px;
  max-width: 50%;
}

.implementation-title-business-skills-training-framework {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.implementation-description-business-skills-training-framework {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.implementation-steps-business-skills-training-framework {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.implementation-step-business-skills-training-framework {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.implementation-step-number-business-skills-training-framework {
  font-size: 2.5rem;
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.implementation-step-content-business-skills-training-framework {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.implementation-step-title-business-skills-training-framework {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.implementation-step-text-business-skills-training-framework {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.implementation-image-business-skills-training-framework {
  flex: 1 1 350px;
  max-width: 50%;
}

.implementation-image-asset-business-skills-training-framework {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

@media (max-width: 768px) {
  .implementation-wrapper-business-skills-training-framework {
    flex-direction: column;
  }
  
  .implementation-text-business-skills-training-framework,
  .implementation-image-business-skills-training-framework {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* BENEFITS SECTION */
.benefits-section-business-skills-training-framework {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.benefits-wrapper-business-skills-training-framework {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.benefits-text-business-skills-training-framework {
  flex: 1 1 350px;
  max-width: 50%;
}

.benefits-header-business-skills-training-framework {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-title-business-skills-training-framework {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.benefits-intro-business-skills-training-framework {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.featured-quote-business-skills-training-framework {
  padding: 2rem 2.5rem;
  border-left: 4px solid #059669;
  background: #ffffff;
  margin: 2rem 0;
  border-radius: 4px;
}

.quote-text-business-skills-training-framework {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-style: italic;
  color: #1e293b;
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

.benefits-list-business-skills-training-framework {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item-business-skills-training-framework {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefit-item-title-business-skills-training-framework {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
}

.benefit-item-text-business-skills-training-framework {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.benefits-image-business-skills-training-framework {
  flex: 1 1 350px;
  max-width: 50%;
}

.benefits-image-asset-business-skills-training-framework {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

@media (max-width: 768px) {
  .benefits-wrapper-business-skills-training-framework {
    flex-direction: column;
  }
  
  .benefits-text-business-skills-training-framework,
  .benefits-image-business-skills-training-framework {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* BEST PRACTICES SECTION */
.best-practices-section-business-skills-training-framework {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.best-practices-header-business-skills-training-framework {
  text-align: center;
  margin-bottom: 3rem;
}

.best-practices-title-business-skills-training-framework {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.best-practices-subtitle-business-skills-training-framework {
  font-size: 1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.best-practices-cards-business-skills-training-framework {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.best-practice-card-business-skills-training-framework {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
}

.best-practice-card-business-skills-training-framework:hover {
  border-color: #059669;
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.1);
}

.best-practice-card-number-business-skills-training-framework {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #d1fae5;
  color: #059669;
  border-radius: 8px;
  font-size: 1.25rem;
  font-weight: 700;
}

.best-practice-card-title-business-skills-training-framework {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.best-practice-card-text-business-skills-training-framework {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .best-practice-card-business-skills-training-framework {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* CONCLUSION SECTION */
.conclusion-section-business-skills-training-framework {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-business-skills-training-framework {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.conclusion-text-business-skills-training-framework {
  flex: 1 1 350px;
  max-width: 50%;
}

.conclusion-title-business-skills-training-framework {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-description-business-skills-training-framework {
  font-size: 1rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.conclusion-text-business-skills-training-framework {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-box-business-skills-training-framework {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
}

.cta-box-title-business-skills-training-framework {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.cta-box-text-business-skills-training-framework {
  font-size: 0.9375rem;
  color: #ecfdf5;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cta-box-btn-business-skills-training-framework {
  display: inline-block;
  background: #ffffff;
  color: #059669;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.cta-box-btn-business-skills-training-framework:hover {
  background: #ecfdf5;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.conclusion-image-business-skills-training-framework {
  flex: 1 1 350px;
  max-width: 50%;
}

.conclusion-image-asset-business-skills-training-framework {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

@media (max-width: 768px) {
  .conclusion-content-business-skills-training-framework {
    flex-direction: column;
  }
  
  .conclusion-text-business-skills-training-framework,
  .conclusion-image-business-skills-training-framework {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* DISCLAIMER SECTION */
.disclaimer-section-business-skills-training-framework {
  background: #f3f4f6;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-business-skills-training-framework {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.disclaimer-title-business-skills-training-framework {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.disclaimer-text-business-skills-training-framework {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* RELATED POSTS SECTION */
.related-posts-section-business-skills-training-framework {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-business-skills-training-framework {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-business-skills-training-framework {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-business-skills-training-framework {
  font-size: 1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.related-cards-business-skills-training-framework {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-business-skills-training-framework {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.related-card-business-skills-training-framework:hover {
  border-color: #059669;
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.1);
  transform: translateY(-4px);
}

.related-card-image-business-skills-training-framework {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
}

.related-card-image-asset-business-skills-training-framework {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-business-skills-training-framework {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-business-skills-training-framework {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.related-card-text-business-skills-training-framework {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-business-skills-training-framework {
  font-size: 0.9375rem;
  color: #059669;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.related-card-link-business-skills-training-framework:hover {
  color: #047857;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-card-business-skills-training-framework {
    flex: 1 1 100%;
    max-width: none;
  }
  
  .related-card-image-business-skills-training-framework {
    height: 200px;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-stats-business-skills-training-framework {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .stat-item-business-skills-training-framework {
    flex: 1 1 100%;
  }
}

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

/* Post Page 5 Styles */
.main-strategic-hr-consulting-approaches {
  width: 100%;
}

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

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

.hero-section-strategic-hr-consulting-approaches {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

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

.hero-text-block-strategic-hr-consulting-approaches {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-strategic-hr-consulting-approaches {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-strategic-hr-consulting-approaches {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.15;
  color: #111827;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-strategic-hr-consulting-approaches {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.article-meta-strategic-hr-consulting-approaches {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.meta-badge-strategic-hr-consulting-approaches {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #4b5563;
}

.meta-badge-strategic-hr-consulting-approaches i {
  color: #059669;
}

.hero-image-strategic-hr-consulting-approaches {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.breadcrumbs-strategic-hr-consulting-approaches {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-strategic-hr-consulting-approaches {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-strategic-hr-consulting-approaches:hover {
  color: #047857;
}

.breadcrumb-separator-strategic-hr-consulting-approaches {
  color: #9ca3af;
  margin: 0 0.25rem;
}

.breadcrumb-current-strategic-hr-consulting-approaches {
  color: #4b5563;
}

@media (max-width: 768px) {
  .hero-content-strategic-hr-consulting-approaches {
    flex-direction: column;
  }

  .hero-text-block-strategic-hr-consulting-approaches,
  .hero-image-block-strategic-hr-consulting-approaches {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.introduction-section-strategic-hr-consulting-approaches {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.introduction-wrapper-strategic-hr-consulting-approaches {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.introduction-text-strategic-hr-consulting-approaches {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-strategic-hr-consulting-approaches {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-strategic-hr-consulting-approaches {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  color: #111827;
  margin-bottom: 1.5rem;
}

.introduction-content-strategic-hr-consulting-approaches {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1rem;
}

.introduction-image-element-strategic-hr-consulting-approaches {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .introduction-wrapper-strategic-hr-consulting-approaches {
    flex-direction: column;
  }

  .introduction-text-strategic-hr-consulting-approaches,
  .introduction-image-strategic-hr-consulting-approaches {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-one-section-strategic-hr-consulting-approaches {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.content-one-wrapper-strategic-hr-consulting-approaches {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.content-one-text-strategic-hr-consulting-approaches {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-image-strategic-hr-consulting-approaches {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-title-strategic-hr-consulting-approaches {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  color: #111827;
  margin-bottom: 1.5rem;
}

.content-one-description-strategic-hr-consulting-approaches {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.content-one-list-strategic-hr-consulting-approaches {
  list-style: none;
  margin: 1.5rem 0;
}

.content-one-list-item-strategic-hr-consulting-approaches {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #4b5563;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.content-one-list-item-strategic-hr-consulting-approaches:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
}

.content-one-image-element-strategic-hr-consulting-approaches {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .content-one-wrapper-strategic-hr-consulting-approaches {
    flex-direction: column;
  }

  .content-one-text-strategic-hr-consulting-approaches,
  .content-one-image-strategic-hr-consulting-approaches {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-two-section-strategic-hr-consulting-approaches {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.content-two-wrapper-strategic-hr-consulting-approaches {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.content-two-text-strategic-hr-consulting-approaches {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-image-strategic-hr-consulting-approaches {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-title-strategic-hr-consulting-approaches {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  color: #111827;
  margin-bottom: 1.5rem;
}

.content-two-description-strategic-hr-consulting-approaches {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.content-two-image-element-strategic-hr-consulting-approaches {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.featured-quote-strategic-hr-consulting-approaches {
  padding: 2rem 2.5rem;
  border-left: 4px solid #059669;
  background: #f3f4f6;
  margin: 2rem 0;
  border-radius: 8px;
}

.quote-text-strategic-hr-consulting-approaches {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.6;
  color: #111827;
  margin-bottom: 1rem;
  font-style: italic;
}

.quote-author-strategic-hr-consulting-approaches {
  font-size: 0.875rem;
  color: #4b5563;
  font-style: normal;
}

@media (max-width: 768px) {
  .content-two-wrapper-strategic-hr-consulting-approaches {
    flex-direction: column-reverse;
  }

  .content-two-text-strategic-hr-consulting-approaches,
  .content-two-image-strategic-hr-consulting-approaches {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-three-section-strategic-hr-consulting-approaches {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-header-strategic-hr-consulting-approaches {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-strategic-hr-consulting-approaches {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-header-title-strategic-hr-consulting-approaches {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: #111827;
  margin-bottom: 1rem;
}

.section-header-subtitle-strategic-hr-consulting-approaches {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.approaches-grid-strategic-hr-consulting-approaches {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.approach-card-strategic-hr-consulting-approaches {
  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;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.approach-card-strategic-hr-consulting-approaches:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.approach-icon-strategic-hr-consulting-approaches {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 12px;
  color: #059669;
  font-size: 1.5rem;
}

.approach-title-strategic-hr-consulting-approaches {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
}

.approach-text-strategic-hr-consulting-approaches {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: #4b5563;
}

@media (max-width: 768px) {
  .approach-card-strategic-hr-consulting-approaches {
    flex: 1 1 100%;
    max-width: none;
  }
}

.implementation-section-strategic-hr-consulting-approaches {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.process-steps-strategic-hr-consulting-approaches {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.process-step-strategic-hr-consulting-approaches {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

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

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

.process-step-title-strategic-hr-consulting-approaches {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
}

.process-step-text-strategic-hr-consulting-approaches {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: #4b5563;
}

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

  .process-step-number-strategic-hr-consulting-approaches {
    min-width: auto;
  }
}

.conclusion-section-strategic-hr-consulting-approaches {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.conclusion-wrapper-strategic-hr-consulting-approaches {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.conclusion-text-strategic-hr-consulting-approaches {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-strategic-hr-consulting-approaches {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-strategic-hr-consulting-approaches {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  color: #111827;
  margin-bottom: 1.5rem;
}

.conclusion-content-strategic-hr-consulting-approaches {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.conclusion-image-element-strategic-hr-consulting-approaches {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.cta-box-strategic-hr-consulting-approaches {
  background: linear-gradient(135deg, #059669, #10b981);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

.cta-title-strategic-hr-consulting-approaches {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-text-strategic-hr-consulting-approaches {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.btn-primary-strategic-hr-consulting-approaches {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  background: #ffffff;
  color: #059669;
}

.btn-primary-strategic-hr-consulting-approaches:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .conclusion-wrapper-strategic-hr-consulting-approaches {
    flex-direction: column;
  }

  .conclusion-text-strategic-hr-consulting-approaches,
  .conclusion-image-strategic-hr-consulting-approaches {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-strategic-hr-consulting-approaches {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid #e5e7eb;
}

.disclaimer-content-strategic-hr-consulting-approaches {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-strategic-hr-consulting-approaches {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.disclaimer-text-strategic-hr-consulting-approaches {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
  color: #4b5563;
}

.related-section-strategic-hr-consulting-approaches {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.related-cards-strategic-hr-consulting-approaches {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.related-card-strategic-hr-consulting-approaches {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.related-card-strategic-hr-consulting-approaches:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-card-image-strategic-hr-consulting-approaches {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-content-strategic-hr-consulting-approaches {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-strategic-hr-consulting-approaches {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
}

.related-card-text-strategic-hr-consulting-approaches {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.6;
  color: #4b5563;
  flex-grow: 1;
}

.related-card-link-strategic-hr-consulting-approaches {
  color: #059669;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-strategic-hr-consulting-approaches:hover {
  color: #047857;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-card-strategic-hr-consulting-approaches {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .hero-section-strategic-hr-consulting-approaches,
  .introduction-section-strategic-hr-consulting-approaches,
  .content-one-section-strategic-hr-consulting-approaches,
  .content-two-section-strategic-hr-consulting-approaches,
  .content-three-section-strategic-hr-consulting-approaches,
  .implementation-section-strategic-hr-consulting-approaches,
  .conclusion-section-strategic-hr-consulting-approaches,
  .disclaimer-section-strategic-hr-consulting-approaches,
  .related-section-strategic-hr-consulting-approaches {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }

  .breadcrumbs-strategic-hr-consulting-approaches {
    font-size: 0.75rem;
  }

  .article-meta-strategic-hr-consulting-approaches {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* About Page Styles */
:root {
    --color-bg-primary: #f9fafb;
    --color-bg-secondary: #ffffff;
    --color-bg-tertiary: #f3f4f6;
    --color-bg-card: #ffffff;
    --color-text-primary: #111827;
    --color-text-secondary: #4b5563;
    --color-text-muted: #9ca3af;
    --color-primary: #059669;
    --color-primary-hover: #047857;
    --color-primary-light: #d1fae5;
    --color-secondary: #10b981;
    --color-secondary-light: #a7f3d0;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
  }

  .talent-development-journey-about {
    font-family: var(--font-primary);
    color: var(--color-text-primary);
  }

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

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

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

  .hero-headline-about {
    font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
    font-weight: 800;
    color: var(--color-text-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  .hero-subheading-about {
    font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
    max-width: 700px;
  }

  .hero-visual-about {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: var(--shadow-lg);
  }

  .impact-statistics-about {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: clamp(2rem, 4vw, 3rem);
    padding-top: clamp(2rem, 4vw, 3rem);
    border-top: 2px solid var(--color-bg-tertiary);
  }

  .stat-block-about {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .stat-number-about {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
  }

  .stat-label-about {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    font-weight: 500;
  }

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

  .expertise-content-about {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(3rem, 6vw, 4rem);
    align-items: center;
  }

  .expertise-text-block-about {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .section-tag-about {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
  }

  .expertise-title-about {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.2;
  }

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

  .expertise-image-about {
    flex: 1 1 350px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: var(--shadow-lg);
  }

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

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

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

  .methodology-header-about {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .methodology-headline-about {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .methodology-description-about {
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .process-steps-about {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .process-step-about {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
  }

  .process-step-about:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
  }

  .process-number-about {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    flex-shrink: 0;
    min-width: 50px;
  }

  .process-content-about {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
  }

  .process-title-about {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    font-weight: 600;
    color: var(--color-text-primary);
  }

  .process-text-about {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
  }

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

  .commitment-header-about {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
  }

  .commitment-headline-about {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .commitment-intro-about {
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .values-grid-about {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .value-card-about {
    flex: 1 1 280px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-bg-primary);
    transition: all 0.3s ease;
  }

  .value-card-about:hover {
    background: var(--color-bg-secondary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
  }

  .value-icon-about {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    font-size: 1.75rem;
    flex-shrink: 0;
  }

  .value-title-about {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
  }

  .value-description-about {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
  }

  .featured-insight-about {
    background: var(--color-primary);
    color: #ffffff;
    padding: clamp(2.5rem, 5vw, 4rem);
    border-radius: var(--radius-lg);
    margin: clamp(2rem, 4vw, 3rem) 0;
    border-left: 5px solid var(--color-secondary);
  }

  .insight-quote-about {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-style: italic;
    color: #ffffff;
  }

  .insight-attribution-about {
    font-size: 0.875rem;
    color: var(--color-secondary-light);
    font-weight: 500;
  }

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

  .highlights-header-about {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
  }

  .highlights-headline-about {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .highlights-intro-about {
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .services-showcase-about {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .service-feature-about {
    flex: 1 1 260px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--color-bg-tertiary);
  }

  .service-feature-about:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
  }

  .service-badge-about {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.5rem 1rem;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
  }

  .service-name-about {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
  }

  .service-description-about {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
  }

  .disclaimer-section-about {
    background: var(--color-bg-secondary);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    border-top: 2px solid var(--color-bg-tertiary);
    position: relative;
    overflow: hidden;
  }

  .disclaimer-content-about {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .disclaimer-header-about {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .disclaimer-icon-about {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    flex-shrink: 0;
  }

  .disclaimer-title-about {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
  }

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

  @media (min-width: 768px) {
    .hero-narrative-about {
      padding: clamp(4rem, 10vw, 7rem) 0;
    }

    .expertise-foundation-about {
      padding: clamp(4rem, 10vw, 7rem) 0;
    }

    .methodology-pathway-about {
      padding: clamp(4rem, 10vw, 7rem) 0;
    }

    .commitment-principles-about {
      padding: clamp(4rem, 10vw, 7rem) 0;
    }

    .expertise-highlights-about {
      padding: clamp(4rem, 10vw, 7rem) 0;
    }

    .disclaimer-section-about {
      padding: clamp(3rem, 8vw, 5rem) 0;
    }
  }

  @media (min-width: 1024px) {
    .hero-narrative-about {
      padding: clamp(5rem, 12vw, 8rem) 0;
    }

    .expertise-foundation-about {
      padding: clamp(5rem, 12vw, 8rem) 0;
    }

    .methodology-pathway-about {
      padding: clamp(5rem, 12vw, 8rem) 0;
    }

    .commitment-principles-about {
      padding: clamp(5rem, 12vw, 8rem) 0;
    }

    .expertise-highlights-about {
      padding: clamp(5rem, 12vw, 8rem) 0;
    }
  }

/* Privacy Page Styles */
.legal-hub {
  width: 100%;
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

/* Hero section */
.legal-hub-hero {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.legal-hub-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.legal-hub-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-hub-hero-meta p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Content section */
.legal-hub-content {
  width: 100%;
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.legal-hub-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

/* Section blocks */
.legal-hub-section-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-hub-section-block h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-section-block p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-section-block ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-left: 1.5rem;
}

.legal-hub-section-block li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-section-block strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

/* Contact section */
.legal-hub-contact {
  width: 100%;
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  margin-top: clamp(2rem, 5vw, 3rem);
}

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

.legal-hub-contact-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-hub-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.legal-hub-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-hub-contact-item {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.legal-hub-contact-label {
  font-weight: 600;
  color: var(--color-text-primary);
  display: inline;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .legal-hub-hero {
    padding: 5rem 0;
  }

  .legal-hub-content {
    padding: 5rem 0;
  }

  .legal-hub-contact {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .legal-hub-hero {
    padding: 6rem 0;
  }

  .legal-hub-content {
    padding: 6rem 0;
  }

  .legal-hub-contact {
    padding: 6rem 0;
  }
}

/* Thank You Page Styles */
.thank-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 6rem) 0;
  overflow: hidden;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 600px;
  margin: 0 auto;
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px, 15vw, 120px);
  height: clamp(80px, 15vw, 120px);
  background: var(--color-primary-light);
  border-radius: 50%;
  animation: scaleIn 0.6s ease-out;
}

.thank-icon i {
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--color-primary);
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-section h1 {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.thank-lead {
  color: var(--color-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-family: var(--font-primary);
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  width: 100%;
  text-align: left;
  margin: clamp(1rem, 2vw, 2rem) 0;
}

.thank-subtitle {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  text-align: center;
}

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

.thank-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(1rem, 2vw, 1.5rem);
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-family: var(--font-primary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(32px, 6vw, 48px);
  height: clamp(32px, 6vw, 48px);
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.step-icon i {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
}

.step-text {
  display: block;
  padding-top: clamp(0.25rem, 1vw, 0.5rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  line-height: 1.5;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

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

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

/* Tablet breakpoint */
@media (min-width: 768px) {
  .thank-section {
    padding: clamp(4rem, 8vw, 8rem) 0;
  }

  .thank-content {
    gap: clamp(2rem, 4vw, 3rem);
  }

  .thank-list {
    gap: clamp(1.25rem, 2.5vw, 2rem);
  }

  .thank-list li {
    text-align: left;
  }

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

/* Desktop breakpoint */
@media (min-width: 1024px) {
  .thank-section {
    padding: 6rem 0;
  }

  .thank-content {
    gap: 3rem;
  }

  .thank-icon {
    width: 120px;
    height: 120px;
  }

  .thank-icon i {
    font-size: 4rem;
  }

  .thank-list {
    gap: 2rem;
  }

  .btn:hover {
    box-shadow: var(--shadow-lg);
  }
}

/* Large desktop breakpoint */
@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
  }

  .thank-content {
    gap: 3.5rem;
  }
}

/* 404 Page Styles */
.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: clamp(2rem, 8vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.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);
  max-width: 600px;
  margin: 0 auto;
}

/* Error Visual Section */
.error-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.error-code-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -2px;
  position: relative;
  z-index: 2;
  margin: 0;
}

.error-icon {
  position: absolute;
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--color-primary-light);
  opacity: 0.6;
  animation: float 3s ease-in-out infinite;
  z-index: 1;
  right: -15%;
  top: -10%;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Typography */
.error-title {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-description {
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Suggestions Section */
.error-suggestions {
  width: 100%;
  margin: clamp(1rem, 3vw, 2rem) 0;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.error-subtitle {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.suggestions-list li {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.75rem, 2vw, 1rem);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.suggestions-list i {
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-top: 2px;
}

/* Button Styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  cursor: pointer;
  border: 2px solid transparent;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.btn-large {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1.75rem, 4vw, 2.5rem);
}

/* Footer Text */
.error-footer {
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .error-section {
    padding: 4rem 0;
    min-height: 100vh;
  }

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

  .error-visual {
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  }

  .error-suggestions {
    padding: clamp(2rem, 3vw, 2.5rem);
  }

  .suggestions-list {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: 6rem 0;
  }

  .error-code {
    letter-spacing: -3px;
  }

  .error-content {
    gap: 3rem;
  }

  .error-suggestions {
    padding: 2.5rem;
  }

  .btn-large:hover {
    transform: translateY(-3px);
  }
}

@media (min-width: 1440px) {
  .error-section {
    padding: 8rem 0;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .error-icon {
    animation: none;
  }

  .btn {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .error-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  }

  .error-code {
    color: var(--color-primary);
  }

  .error-title {
    color: #ffffff;
  }

  .error-description {
    color: #d1d5db;
  }

  .error-suggestions {
    background: #2d2d2d;
    border-left-color: var(--color-primary);
  }

  .error-subtitle {
    color: #ffffff;
  }

  .suggestions-list li {
    color: #d1d5db;
  }

  .error-footer {
    color: #9ca3af;
  }
}