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

:root {
  /* HYBRID COLOR STRATEGY - Dark/Light Alternating Pattern */
  /* Selected Palette: D5 Dark Emerald + L3 Soft Gray Hybrid */
  
  /* Dark section backgrounds */
  --color-dark-primary: #022c22;
  --color-dark-secondary: #064e3b;
  --color-dark-tertiary: #065f46;
  
  /* Light section backgrounds */
  --color-light-primary: #f9fafb;
  --color-light-secondary: #f3f4f6;
  --color-light-tertiary: #e5e7eb;
  
  /* Card backgrounds */
  --color-bg-card-dark: rgba(16, 185, 129, 0.1);
  --color-bg-card-light: #ffffff;
  
  /* Text colors for dark sections */
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #a7f3d0;
  --color-text-dark-muted: #86efac;
  
  /* Text colors for light sections */
  --color-text-light-primary: #111827;
  --color-text-light-secondary: #4b5563;
  --color-text-light-muted: #9ca3af;
  
  /* Accent colors */
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-secondary: #34d399;
  --color-accent-dark: #6ee7b7;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', 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.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

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

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

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

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

/* Base Section Styles */
.section-padding-default {
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}

/* Dark Sections - Emerald Theme */
.dark-section {
  background: var(--color-dark-primary);
}

.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section h5,
.dark-section h6 {
  color: var(--color-text-dark-primary);
}

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

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

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

.dark-section a:not(.btn) {
  color: var(--color-accent-dark);
}

.dark-section a:not(.btn):hover {
  color: var(--color-secondary);
}

/* Light Sections - Soft Gray Theme */
.light-section {
  background: var(--color-light-primary);
}

.light-section h1,
.light-section h2,
.light-section h3,
.light-section h4,
.light-section h5,
.light-section h6 {
  color: var(--color-text-light-primary);
}

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

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

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

.light-section a:not(.btn) {
  color: var(--color-primary);
}

.light-section a:not(.btn):hover {
  color: var(--color-primary-hover);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
  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-outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

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

.dark-section .btn-outline {
  border-color: var(--color-accent-dark);
  color: var(--color-accent-dark);
}

.dark-section .btn-outline:hover {
  background: var(--color-accent-dark);
  color: var(--color-dark-primary);
}

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

.dark-section .card {
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.dark-section .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
}

.light-section .card {
  background: var(--color-bg-card-light);
  border: 1px solid var(--color-light-tertiary);
  box-shadow: var(--shadow-sm);
}

.light-section .card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

/* 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(250px, 1fr));
}

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

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

/* Flex Utilities */
.flex {
  display: flex;
}

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

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

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

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

.gap-1 { gap: var(--space-sm); }
.gap-2 { gap: var(--space-md); }
.gap-3 { gap: var(--space-lg); }
.gap-4 { gap: var(--space-xl); }

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: 1rem;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid;
  transition: all 0.3s ease;
}

.light-section input,
.light-section textarea,
.light-section select {
  background: #ffffff;
  border-color: var(--color-light-tertiary);
  color: var(--color-text-light-primary);
}

.light-section input:focus,
.light-section textarea:focus,
.light-section select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.dark-section input,
.dark-section textarea,
.dark-section select {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--color-text-dark-primary);
}

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

.dark-section input:focus,
.dark-section textarea:focus,
.dark-section select:focus {
  outline: none;
  border-color: var(--color-accent-dark);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  background: rgba(255, 255, 255, 0.12);
}

/* Icons */
.icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.icon-lg {
  width: 3rem;
  height: 3rem;
  font-size: 2rem;
}

.dark-section .icon {
  color: var(--color-accent-dark);
}

.light-section .icon {
  color: var(--color-primary);
}

/* Lists */
ul, ol {
  list-style-position: inside;
}

ul li, ol li {
  margin-bottom: var(--space-sm);
}

/* Responsive Utilities */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

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

@media (min-width: 1024px) {
  .hide-desktop {
    display: none !important;
  }
}

/* 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);
  }
}

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

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

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

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

/* Decorative Elements */
.decoration-accent {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}

.dark-section .decoration-accent {
  background: var(--color-accent-dark);
}

.light-section .decoration-accent {
  background: var(--color-primary);
}

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

/* Smooth Transitions */
* {
  transition-property: color, background, border-color, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

/* Skip animations on reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
:root {
  --color-dark-primary: #022c22;
  --color-dark-secondary: #064e3b;
  --color-dark-tertiary: #065f46;
  --color-light-primary: #f9fafb;
  --color-light-secondary: #f3f4f6;
  --color-light-tertiary: #e5e7eb;
  --color-bg-card-dark: rgba(16, 185, 129, 0.1);
  --color-bg-card-light: #ffffff;
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #a7f3d0;
  --color-text-dark-muted: #86efac;
  --color-text-light-primary: #111827;
  --color-text-light-secondary: #4b5563;
  --color-text-light-muted: #9ca3af;
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-secondary: #34d399;
  --color-accent-dark: #6ee7b7;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --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;
}

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

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

html {
  scroll-behavior: smooth;
}

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

.header-talent-bridge {
  background: var(--color-dark-primary);
  position: static;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.header-talent-bridge-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.header-talent-bridge-brand {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  letter-spacing: -0.5px;
  transition: color 300ms ease;
}

.header-talent-bridge-logo:hover .header-talent-bridge-brand {
  color: var(--color-secondary);
}

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

.header-talent-bridge-nav-link {
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding-bottom: 0.25rem;
}

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

.header-talent-bridge-nav-link:hover {
  color: var(--color-text-dark-primary);
}

.header-talent-bridge-nav-link:hover::after {
  width: 100%;
}

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

.header-talent-bridge-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

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

.header-talent-bridge-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--color-text-dark-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 300ms ease;
  flex-shrink: 0;
}

.header-talent-bridge-mobile-toggle:hover {
  color: var(--color-secondary);
}

.header-talent-bridge-mobile-toggle:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

.header-talent-bridge-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-dark-secondary);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  overflow-y: auto;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.2);
}

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

.header-talent-bridge-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(167, 243, 208, 0.1);
}

.header-talent-bridge-mobile-title {
  color: var(--color-text-dark-primary);
  font-size: 1.125rem;
  font-weight: 600;
}

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

.header-talent-bridge-mobile-close:hover {
  color: var(--color-secondary);
}

.header-talent-bridge-mobile-close:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

.header-talent-bridge-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.header-talent-bridge-mobile-link {
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.header-talent-bridge-mobile-link:hover {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-text-dark-primary);
  padding-left: 1.25rem;
}

.header-talent-bridge-mobile-link:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: -2px;
}

.header-talent-bridge-mobile-cta {
  width: 100%;
  padding: 1rem;
  background: var(--color-primary);
  color: #000000;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  margin-top: auto;
}

.header-talent-bridge-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

.header-talent-bridge-mobile-cta:active {
  transform: translateY(0);
  transition-duration: 150ms;
}

@media (min-width: 768px) {
  .header-talent-bridge-container {
    padding: clamp(1rem, 2vw, 1.25rem) clamp(1.5rem, 4vw, 2.5rem);
    gap: 2rem;
  }

  .header-talent-bridge-desktop-nav {
    display: flex;
  }

  .header-talent-bridge-cta-button {
    display: inline-flex;
  }

  .header-talent-bridge-mobile-toggle {
    display: none;
  }

  .header-talent-bridge-mobile-menu {
    display: none;
  }
}

@media (min-width: 1024px) {
  .header-talent-bridge-container {
    padding: 1rem 3rem;
  }

  .header-talent-bridge-nav-link {
    font-size: 1rem;
  }

  .header-talent-bridge-cta-button {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}

@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 Consulting Hub - Dark Emerald Theme with Premium Styling */

.hr-consulting-hub {
  width: 100%;
}

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

/* Hero Decorations */
.hero-deco-glow-index {
  position: absolute;
  top: 10%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-floating-accent-1-index {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(52, 211, 153, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

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

.hero-corner-orb-index {
  position: absolute;
  bottom: 5%;
  right: 8%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-line-element-index {
  position: absolute;
  top: 50%;
  left: 15%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

.hero-subtitle-index {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #a7f3d0;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.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: #10b981;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.hero-stat-label-index {
  font-size: clamp(0.75rem, 1vw + 0.25rem, 0.9375rem);
  color: #86efac;
  font-weight: 500;
}

.hero-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 8px;
  text-decoration: none;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn-primary-index {
  background: #10b981;
  color: #022c22;
}

.btn-primary-index:hover {
  background: #059669;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.25);
}

.btn-outline-index {
  background: transparent;
  border: 2px solid #34d399;
  color: #34d399;
}

.btn-outline-index:hover {
  background: #34d399;
  color: #022c22;
  transform: translateY(-3px);
}

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

.about-deco-shape-1-index {
  position: absolute;
  top: 10%;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.about-deco-glow-index {
  position: absolute;
  bottom: 15%;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.about-deco-accent-index {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 50% 40% 60% 40% / 40% 50% 40% 60%;
  z-index: 2;
  pointer-events: none;
}

.about-deco-line-index {
  position: absolute;
  bottom: 25%;
  left: 10%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.4), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.about-text-block-index {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
}

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

.about-features-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.about-feature-item-index {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #0f172a;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 500;
}

.about-feature-item-index i {
  color: #10b981;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about-image-block-index {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

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

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

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

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

.services-deco-mesh-index {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.12) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.services-deco-orb-1-index {
  position: absolute;
  bottom: 10%;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.services-deco-orb-2-index {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.services-deco-shape-index {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 180px;
  height: 200px;
  background: rgba(52, 211, 153, 0.04);
  border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
  z-index: 2;
  pointer-events: none;
}

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

.services-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(52, 211, 153, 0.15);
  color: #6ee7b7;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.services-subtitle-index {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  max-width: 650px;
  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);
}

.services-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 12px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.services-card-index:hover {
  transform: translateY(-6px);
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(52, 211, 153, 0.4);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
}

.services-card-icon-index {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(52, 211, 153, 0.2);
  border-radius: 10px;
  color: #6ee7b7;
  font-size: 1.5rem;
}

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

.services-card-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
  flex-grow: 1;
}

.services-card-link-index {
  font-size: 0.9375rem;
  color: #6ee7b7;
  font-weight: 600;
  text-decoration: none;
  transition: color 300ms ease;
  align-self: flex-start;
}

.services-card-link-index:hover {
  color: #ffffff;
}

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

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

.process-deco-accent-index {
  position: absolute;
  top: 10%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.process-deco-glow-index {
  position: absolute;
  bottom: 5%;
  left: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.09) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

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

.process-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.process-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
}

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

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

.process-step-index:hover {
  border-color: #10b981;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.08);
}

.process-step-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
  font-family: 'Playfair Display', serif;
}

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

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

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

/* ========== FEATURED SECTION ========== */
.featured-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #022c22;
  overflow: hidden;
}

.featured-deco-shape-1-index {
  position: absolute;
  top: 15%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(34, 211, 238, 0.08);
  border-radius: 50% 40% 60% 40% / 40% 60% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.featured-deco-shape-2-index {
  position: absolute;
  bottom: 10%;
  right: -80px;
  width: 250px;
  height: 250px;
  background: rgba(52, 211, 153, 0.06);
  border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

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

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

.featured-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(52, 211, 153, 0.15);
  color: #6ee7b7;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.featured-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
}

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

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card-index:hover {
  transform: translateY(-8px);
  border-color: rgba(52, 211, 153, 0.4);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

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

.featured-card-content-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  flex-grow: 1;
}

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

.featured-card-description-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
  flex-grow: 1;
}

.featured-card-link-index {
  font-size: 0.9375rem;
  color: #6ee7b7;
  font-weight: 600;
  text-decoration: none;
  transition: color 300ms ease;
  align-self: flex-start;
}

.featured-card-link-index:hover {
  color: #ffffff;
}

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

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

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

.testimonial-deco-accent-index {
  position: absolute;
  top: 20%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.07);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.testimonial-deco-glow-index {
  position: absolute;
  bottom: 10%;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.testimonial-quote-index {
  flex: 1 1 400px;
  padding: 2.5rem;
  background: #ffffff;
  border-left: 4px solid #10b981;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.testimonial-footer-index {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.testimonial-author-role-index {
  font-size: 0.875rem;
  color: #4b5563;
}

.testimonial-trust-index {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-trust-item-index {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.testimonial-trust-icon-index {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  color: #10b981;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.testimonial-trust-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #0f172a;
  font-weight: 500;
}

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

  .testimonial-quote-index,
  .testimonial-trust-index {
    flex: 1 1 100%;
  }
}

/* ========== CTA SECTION ========== */
.cta-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #064e3b;
  overflow: hidden;
}

.cta-deco-glow-1-index {
  position: absolute;
  top: 10%;
  right: -120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.cta-deco-glow-2-index {
  position: absolute;
  bottom: 5%;
  left: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.cta-deco-shape-index {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(52, 211, 153, 0.05);
  border-radius: 50% 40% 60% 40% / 40% 60% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

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

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

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

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

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

.contact-deco-glow-index {
  position: absolute;
  bottom: 10%;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.09) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.contact-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
}

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

.contact-content-index {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-form-wrapper-index {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.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: #86efac;
}

.contact-input-index,
.contact-textarea-index {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 300ms ease;
}

.contact-input-index::placeholder,
.contact-textarea-index::placeholder {
  color: #86efac;
}

.contact-input-index:focus,
.contact-textarea-index:focus {
  outline: none;
  border-color: #34d399;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  background: rgba(255, 255, 255, 0.12);
}

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

.contact-submit-index {
  width: 100%;
  padding: 1rem;
  background: #10b981;
  color: #022c22;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', sans-serif;
}

.contact-submit-index:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.25);
}

.contact-info-wrapper-index {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-block-index,
.contact-faq-index {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
}

.contact-info-title-index,
.contact-faq-title-index {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.contact-info-steps-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-step-index {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-step-number-index {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(52, 211, 153, 0.2);
  border-radius: 50%;
  color: #6ee7b7;
  font-weight: 600;
  font-size: 0.9375rem;
  flex-shrink: 0;
}

.contact-info-step-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-info-step-title-index {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #a7f3d0;
}

.contact-info-step-text-index {
  font-size: 0.875rem;
  color: #86efac;
  line-height: 1.5;
}

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

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

.contact-faq-answer-index {
  font-size: 0.875rem;
  color: #86efac;
  line-height: 1.5;
}

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

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

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

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

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

.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-radius: 6px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 300ms ease;
  font-family: 'Inter', sans-serif;
  border: none;
}

.cookie-btn-accept-index {
  background: #10b981;
  color: #022c22;
}

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

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

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

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero-buttons-index {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .container {
    padding-inline: clamp(1rem, 4vw, 1.5rem);
  }

  .cookie-banner-index {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

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

  .featured-card-image-index {
    height: 180px;
  }

  .contact-form-wrapper-index,
  .contact-info-wrapper-index {
    padding: 0;
  }
}

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

/* Focus states */
.btn:focus-visible,
.contact-input-index:focus-visible,
.contact-textarea-index:focus-visible,
.cookie-btn-accept-index:focus-visible,
.cookie-btn-decline-index:focus-visible {
  outline: 2px solid #34d399;
  outline-offset: 2px;
}

    /* Footer Component */
.footer {
  background: var(--color-dark-primary);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 6vw, 3rem) 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

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

/* Footer Content Grid */
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
  align-items: flex-start;
}

/* About Section */
.footer-about {
  flex: 1 1 280px;
  min-width: 280px;
}

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

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

/* Navigation Section */
.footer-navigation {
  flex: 0 1 auto;
  min-width: 150px;
}

.footer-nav-title {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin-bottom: clamp(0.875rem, 2vw, 1.25rem);
  font-family: var(--font-primary);
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

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

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

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

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

/* Contact Section */
.footer-contact {
  flex: 0 1 auto;
  min-width: 200px;
}

.footer-contact-title {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin-bottom: clamp(0.875rem, 2vw, 1.25rem);
  font-family: var(--font-primary);
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1.5vw, 0.875rem);
}

.footer-contact-item {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.5;
  color: var(--color-text-dark-secondary);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

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

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

/* Legal Section */
.footer-legal {
  flex: 0 1 auto;
  min-width: 150px;
}

.footer-legal-title {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin-bottom: clamp(0.875rem, 2vw, 1.25rem);
  font-family: var(--font-primary);
}

.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

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

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

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

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

/* Footer Bottom */
.footer-bottom {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(16, 185, 129, 0.15);
  text-align: center;
}

.footer-copyright {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: var(--color-text-dark-secondary);
  margin: 0;
  letter-spacing: 0.3px;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .footer-content {
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

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

/* Responsive - Mobile */
@media (max-width: 768px) {
  .footer {
    padding: clamp(2.5rem, 6vw, 3.5rem) 0 clamp(1.5rem, 4vw, 2.5rem) 0;
  }

  .footer-content {
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2rem);
  }

  .footer-about,
  .footer-navigation,
  .footer-contact,
  .footer-legal {
    flex: 1 1 100%;
  }

  .footer-nav-list,
  .footer-legal-list {
    gap: clamp(0.375rem, 1vw, 0.625rem);
  }

  .footer-contact-details {
    gap: clamp(0.375rem, 1vw, 0.625rem);
  }

  .footer-bottom {
    padding-top: clamp(1rem, 2vw, 1.5rem);
  }
}

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

/* Motion Preference */
@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: HR CONSULTING GHANA ====== */

/* MAIN WRAPPER */
.category-page-hr-consulting-ghana {
  width: 100%;
}

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

/* Decorative Elements */
.hero-deco-glow-1 {
  position: absolute;
  top: 5%;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-deco-glow-2 {
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.12) 0%, transparent 70%);
  filter: blur(70px);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-deco-shape-1 {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 200px;
  height: 250px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-deco-accent-line {
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.hero-tag-hr-consulting {
  display: inline-block;
  padding: 0.375rem 1.25rem;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title-hr-consulting {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-subtitle-hr-consulting {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #a7f3d0;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

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

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

.stat-number-hr-consulting {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #34d399;
  line-height: 1;
}

.stat-label-hr-consulting {
  font-size: 0.875rem;
  color: #86efac;
  font-weight: 500;
}

.hero-cta-group-hr-consulting {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-primary-hr-consulting {
  background: #10b981;
  color: #0a0a0a;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary-hr-consulting:hover {
  background: #059669;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.3);
}

.btn-outline-hr-consulting {
  background: transparent;
  border: 2px solid #34d399;
  color: #34d399;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline-hr-consulting:hover {
  background: #34d399;
  color: #022c22;
  transform: translateY(-3px);
}

/* ====== POSTS SECTION ====== */
.posts-section-hr-consulting {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f9fafb;
}

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

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

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

.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 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  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.07);
  transition: all 0.35s ease;
}

.card-hr-consulting:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-color: #10b981;
}

.card-hr-consulting img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

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

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

.card-meta-hr-consulting {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

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

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

.card-link-hr-consulting {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.card-link-hr-consulting:hover {
  color: #059669;
  transform: translateX(4px);
}

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

.approach-deco-shape-1 {
  position: absolute;
  top: 10%;
  left: -80px;
  width: 280px;
  height: 280px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 45% 55% 35% 65% / 65% 35% 65% 35%;
  z-index: 1;
  pointer-events: none;
}

.approach-deco-glow-1 {
  position: absolute;
  bottom: 5%;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

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

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

.approach-subtitle-hr-consulting {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

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

.approach-step-hr-consulting {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem;
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #10b981;
  transition: all 0.3s ease;
}

.approach-step-hr-consulting:hover {
  background: #f3f4f6;
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.1);
}

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

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

.approach-step-title-hr-consulting {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
}

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

@media (max-width: 768px) {
  .approach-step-hr-consulting {
    padding: 1.25rem;
    gap: 1rem;
  }

  .approach-step-number-hr-consulting {
    min-width: 60px;
  }
}

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

.expertise-deco-shape-1 {
  position: absolute;
  top: -50px;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(16, 185, 129, 0.07);
  border-radius: 35% 65% 45% 55% / 55% 45% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

.expertise-deco-shape-2 {
  position: absolute;
  bottom: -30px;
  left: 3%;
  width: 220px;
  height: 220px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 70% 30% 60% 40% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.expertise-deco-glow-1 {
  position: absolute;
  top: 50%;
  left: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

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

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

.expertise-subtitle-hr-consulting {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

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

.expertise-card-hr-consulting {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.expertise-card-hr-consulting:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.15);
  border-color: #10b981;
}

.expertise-card-icon-hr-consulting {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 1.75rem;
}

.expertise-card-title-hr-consulting {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
}

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

/* ====== RESPONSIVE ADJUSTMENTS ====== */
@media (max-width: 768px) {
  .hero-cta-group-hr-consulting {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-hr-consulting,
  .btn-outline-hr-consulting {
    width: 100%;
    max-width: 300px;
  }

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

  .posts-grid-hr-consulting {
    justify-content: center;
  }

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

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

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

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

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

@media (min-width: 1024px) {
  .card-hr-consulting {
    flex: 1 1 320px;
  }

  .expertise-card-hr-consulting {
    flex: 1 1 300px;
  }
}

/* ====== FOCUS STATES ====== */
.card-link-hr-consulting:focus-visible {
  outline: 2px solid #10b981;
  outline-offset: 3px;
}

.btn-primary-hr-consulting:focus-visible,
.btn-outline-hr-consulting:focus-visible {
  outline: 2px solid #10b981;
  outline-offset: 3px;
}

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

/* Post Page 1 Styles */
.main-building-high-performance-teams {
  width: 100%;
  font-family: var(--font-primary);
  color: var(--color-text-light-primary);
  background: #ffffff;
}

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

.hero-section-building-high-performance-teams {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-building-high-performance-teams .container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

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

.breadcrumb-link-building-high-performance-teams {
  color: #a7f3d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.breadcrumb-separator-building-high-performance-teams {
  color: #86efac;
}

.breadcrumb-current-building-high-performance-teams {
  color: #10b981;
  font-weight: 500;
}

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

.hero-text-block-building-high-performance-teams {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.hero-meta-building-high-performance-teams {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-building-high-performance-teams {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #6ee7b7;
}

.meta-badge-building-high-performance-teams i {
  color: #34d399;
}

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

.hero-image-building-high-performance-teams {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 400px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-stats-building-high-performance-teams {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  justify-content: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-item-building-high-performance-teams {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

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

.stat-label-building-high-performance-teams {
  font-size: 0.875rem;
  color: #86efac;
}

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

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

  .hero-stats-building-high-performance-teams {
    flex-direction: column;
    gap: 1.5rem;
  }
}

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

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

.intro-text-building-high-performance-teams {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.intro-description-building-high-performance-teams {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
}

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

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

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

@media (max-width: 768px) {
  .intro-wrapper-building-high-performance-teams {
    flex-direction: column;
  }

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

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

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

.section-tag-building-high-performance-teams {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

.principles-wrapper-building-high-performance-teams {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.principles-text-building-high-performance-teams {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.principle-step-building-high-performance-teams {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #f3f4f6;
  border-radius: 12px;
}

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

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

.principle-title-building-high-performance-teams {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.principle-text-building-high-performance-teams {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

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

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

@media (max-width: 768px) {
  .principles-wrapper-building-high-performance-teams {
    flex-direction: column;
  }

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

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

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

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

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

.strategy-text-building-high-performance-teams {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strategy-subtitle-building-high-performance-teams {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.strategy-paragraph-building-high-performance-teams {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
}

.strategy-highlight-building-high-performance-teams {
  padding: 1.5rem;
  background: #ffffff;
  border-left: 4px solid #10b981;
  border-radius: 8px;
}

.highlight-text-building-high-performance-teams {
  font-size: 0.9375rem;
  color: #111827;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .strategy-wrapper-building-high-performance-teams {
    flex-direction: column;
  }

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

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

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

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

.features-card-building-high-performance-teams:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-color: #10b981;
}

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

.features-card-title-building-high-performance-teams {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.features-card-text-building-high-performance-teams {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

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

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

.conclusion-content-building-high-performance-teams {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.featured-quote-building-high-performance-teams {
  padding: 2rem 2.5rem;
  border-left: 4px solid #10b981;
  background: #ffffff;
  border-radius: 8px;
  margin: 1rem 0;
}

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

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

.cta-section-building-high-performance-teams {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

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

.cta-description-building-high-performance-teams {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-button-building-high-performance-teams {
  display: inline-block;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  color: #10b981;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-building-high-performance-teams:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

.related-card-building-high-performance-teams {
  flex: 1 1 300px;
  max-width: 400px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.related-card-content-building-high-performance-teams {
  padding: 1.5rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.related-card-building-high-performance-teams:hover .related-card-content-building-high-performance-teams {
  background: #f3f4f6;
  border-color: #10b981;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.related-card-title-building-high-performance-teams {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.related-card-description-building-high-performance-teams {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-building-high-performance-teams {
  font-size: 0.875rem;
  color: #10b981;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.related-card-building-high-performance-teams:hover .related-card-link-building-high-performance-teams {
  color: #059669;
  transform: translateX(4px);
}

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

.disclaimer-section-building-high-performance-teams {
  background: #f3f4f6;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-building-high-performance-teams {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem;
  background: #ffffff;
  border-left: 4px solid #10b981;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-title-building-high-performance-teams {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-title-building-high-performance-teams i {
  color: #10b981;
  font-size: 1.25rem;
}

.disclaimer-text-building-high-performance-teams {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .main-building-high-performance-teams .container {
    padding: 0 1rem;
  }

  .hero-section-building-high-performance-teams .container {
    gap: 2rem;
  }
}

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

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

.hero-section-effective-recruitment-strategies .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.breadcrumbs-effective-recruitment-strategies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-effective-recruitment-strategies {
  color: #0d9488;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-effective-recruitment-strategies:hover {
  color: #059669;
  text-decoration: underline;
}

.breadcrumb-separator-effective-recruitment-strategies {
  color: #94a3b8;
}

.breadcrumb-current-effective-recruitment-strategies {
  color: #475569;
  font-weight: 500;
}

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

.hero-text-wrapper-effective-recruitment-strategies {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-effective-recruitment-strategies {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-effective-recruitment-strategies {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
}

.article-meta-effective-recruitment-strategies {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.meta-badge-effective-recruitment-strategies {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

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

.hero-stats-effective-recruitment-strategies {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2rem;
}

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

.stat-number-effective-recruitment-strategies {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0d9488;
  display: block;
  line-height: 1;
}

.stat-label-effective-recruitment-strategies {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #64748b;
  font-weight: 500;
}

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

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

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

  .hero-text-wrapper-effective-recruitment-strategies {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-wrapper-effective-recruitment-strategies {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-effective-recruitment-strategies {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Intro Section */
.intro-section-effective-recruitment-strategies {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-section-effective-recruitment-strategies .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

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

.intro-text-block-effective-recruitment-strategies {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intro-title-effective-recruitment-strategies {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.intro-text-effective-recruitment-strategies {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

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

.intro-image-effective-recruitment-strategies {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .intro-content-effective-recruitment-strategies {
    flex-direction: column;
    gap: 2rem;
  }

  .intro-text-block-effective-recruitment-strategies {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-wrapper-effective-recruitment-strategies {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Process Section */
.process-section-effective-recruitment-strategies {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-section-effective-recruitment-strategies .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

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

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

.process-title-effective-recruitment-strategies {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.process-subtitle-effective-recruitment-strategies {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.process-step-effective-recruitment-strategies {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #0d9488;
}

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

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

.process-step-title-effective-recruitment-strategies {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
}

.process-step-text-effective-recruitment-strategies {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

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

  .process-step-number-effective-recruitment-strategies {
    font-size: 2rem;
  }
}

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

.strategies-section-effective-recruitment-strategies .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

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

.strategies-text-block-effective-recruitment-strategies {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.strategies-title-effective-recruitment-strategies {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.strategies-text-effective-recruitment-strategies {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

.strategies-image-wrapper-effective-recruitment-strategies {
  flex: 1 1 50%;
  max-width: 50%;
}

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

@media (max-width: 768px) {
  .strategies-wrapper-effective-recruitment-strategies {
    flex-direction: column;
    gap: 2rem;
  }

  .strategies-text-block-effective-recruitment-strategies {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .strategies-image-wrapper-effective-recruitment-strategies {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Features Section */
.features-section-effective-recruitment-strategies {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-section-effective-recruitment-strategies .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

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

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

.features-title-effective-recruitment-strategies {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.features-subtitle-effective-recruitment-strategies {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-cards-effective-recruitment-strategies {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

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

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

.features-card-icon-effective-recruitment-strategies {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 10px;
  color: #0d9488;
  font-size: 1.5rem;
}

.features-card-title-effective-recruitment-strategies {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
}

.features-card-text-effective-recruitment-strategies {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features-card-effective-recruitment-strategies {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* Quote Section */
.quote-section-effective-recruitment-strategies {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.quote-section-effective-recruitment-strategies .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.featured-quote-effective-recruitment-strategies {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #0d9488;
  background: #ffffff;
  margin: 0;
  border-radius: 8px;
}

.quote-text-effective-recruitment-strategies {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-cite-effective-recruitment-strategies {
  font-size: 0.875rem;
  color: #4b5563;
  font-style: normal;
  font-weight: 500;
}

/* Implementation Section */
.implementation-section-effective-recruitment-strategies {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-section-effective-recruitment-strategies .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

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

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

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

.implementation-text-block-effective-recruitment-strategies {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.implementation-title-effective-recruitment-strategies {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.implementation-text-effective-recruitment-strategies {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .implementation-wrapper-effective-recruitment-strategies {
    flex-direction: column;
    gap: 2rem;
  }

  .implementation-image-wrapper-effective-recruitment-strategies {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .implementation-text-block-effective-recruitment-strategies {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Conclusion Section */
.conclusion-section-effective-recruitment-strategies {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-section-effective-recruitment-strategies .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.conclusion-content-effective-recruitment-strategies {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
}

.conclusion-title-effective-recruitment-strategies {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.conclusion-text-effective-recruitment-strategies {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

.conclusion-cta-effective-recruitment-strategies {
  background: #f3f4f6;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-heading-effective-recruitment-strategies {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
}

.cta-text-effective-recruitment-strategies {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

.btn-primary-effective-recruitment-strategies {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  background: #0d9488;
  color: #ffffff;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
  border: none;
  cursor: pointer;
}

.btn-primary-effective-recruitment-strategies:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13, 148, 136, 0.3);
}

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

.related-section-effective-recruitment-strategies .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

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

.related-title-effective-recruitment-strategies {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.related-subtitle-effective-recruitment-strategies {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

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

.related-card-effective-recruitment-strategies {
  flex: 1 1 300px;
  max-width: 400px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.related-card-content-effective-recruitment-strategies {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.related-card-effective-recruitment-strategies:hover .related-card-content-effective-recruitment-strategies {
  border-color: #0d9488;
  background: #f3f4f6;
}

.related-card-title-effective-recruitment-strategies {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.related-card-text-effective-recruitment-strategies {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #4b5563;
  line-height: 1.6;
}

.related-card-link-effective-recruitment-strategies {
  color: #0d9488;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  transition: color 0.2s ease;
}

.related-card-effective-recruitment-strategies:hover .related-card-link-effective-recruitment-strategies {
  color: #059669;
}

@media (max-width: 768px) {
  .related-card-effective-recruitment-strategies {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* Disclaimer Section */
.disclaimer-section-effective-recruitment-strategies {
  background: #f3f4f6;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-section-effective-recruitment-strategies .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.disclaimer-content-effective-recruitment-strategies {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
  max-width: 800px;
}

.disclaimer-title-effective-recruitment-strategies {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.disclaimer-text-effective-recruitment-strategies {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #4b5563;
  line-height: 1.7;
}

/* Responsive */
@media (min-width: 768px) {
  .hero-section-effective-recruitment-strategies {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .intro-section-effective-recruitment-strategies {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .process-section-effective-recruitment-strategies {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .strategies-section-effective-recruitment-strategies {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .features-section-effective-recruitment-strategies {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .quote-section-effective-recruitment-strategies {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .implementation-section-effective-recruitment-strategies {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .conclusion-section-effective-recruitment-strategies {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .related-section-effective-recruitment-strategies {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

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

  .stat-number-effective-recruitment-strategies {
    font-size: 1.5rem;
  }

  .process-step-number-effective-recruitment-strategies {
    font-size: 1.75rem;
    min-width: 50px;
  }
}

/* Post Page 3 Styles */
.main-compensation-benefits-strategies {
  width: 100%;
  font-family: var(--font-primary);
  line-height: 1.6;
}

.hero-section-compensation-benefits-strategies {
  background: #022c22;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-section-compensation-benefits-strategies .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.breadcrumbs-compensation-benefits-strategies {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.breadcrumb-link-compensation-benefits-strategies {
  color: #a7f3d0;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: color 0.3s ease;
  text-decoration: none;
}

.breadcrumb-link-compensation-benefits-strategies:hover {
  color: #6ee7b7;
}

.breadcrumb-separator-compensation-benefits-strategies {
  color: #86efac;
  opacity: 0.6;
}

.breadcrumb-current-compensation-benefits-strategies {
  color: #86efac;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
}

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

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

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

.hero-description-compensation-benefits-strategies {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.hero-meta-compensation-benefits-strategies {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.meta-badge-compensation-benefits-strategies {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #86efac;
  border-radius: 20px;
  font-size: 0.875rem;
}

.meta-badge-compensation-benefits-strategies i {
  color: #34d399;
}

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

.hero-image-compensation-benefits-strategies {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

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

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

.stat-number-compensation-benefits-strategies {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #34d399;
  line-height: 1;
}

.stat-label-compensation-benefits-strategies {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #a7f3d0;
  max-width: 150px;
  line-height: 1.4;
}

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

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

  .hero-stats-compensation-benefits-strategies {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.intro-section-compensation-benefits-strategies {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.intro-section-compensation-benefits-strategies .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.intro-text-compensation-benefits-strategies {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-compensation-benefits-strategies {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.intro-description-compensation-benefits-strategies {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.intro-text-compensation-benefits-strategies {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

.intro-image-compensation-benefits-strategies {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-compensation-benefits-strategies img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

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

  .intro-text-compensation-benefits-strategies,
  .intro-image-compensation-benefits-strategies {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.framework-section-compensation-benefits-strategies {
  background: #064e3b;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.framework-section-compensation-benefits-strategies .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section-header-compensation-benefits-strategies {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-tag-compensation-benefits-strategies {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(52, 211, 153, 0.15);
  color: #a7f3d0;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title-compensation-benefits-strategies {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle-compensation-benefits-strategies {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.steps-container-compensation-benefits-strategies {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-compensation-benefits-strategies {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(16, 185, 129, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.step-number-compensation-benefits-strategies {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #34d399;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-compensation-benefits-strategies {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.step-text-compensation-benefits-strategies {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .step-item-compensation-benefits-strategies {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number-compensation-benefits-strategies {
    font-size: 1.75rem;
  }
}

.components-section-compensation-benefits-strategies {
  background: #f3f4f6;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.components-section-compensation-benefits-strategies .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.components-header-compensation-benefits-strategies {
  margin-bottom: 2rem;
}

.components-title-compensation-benefits-strategies {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.components-content-compensation-benefits-strategies {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.components-text-compensation-benefits-strategies {
  flex: 1 1 50%;
  max-width: 50%;
}

.components-subtitle-compensation-benefits-strategies {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.components-description-compensation-benefits-strategies {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.component-list-compensation-benefits-strategies {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.list-item-compensation-benefits-strategies {
  padding: 0;
}

.list-title-compensation-benefits-strategies {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.list-text-compensation-benefits-strategies {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.components-image-compensation-benefits-strategies {
  flex: 1 1 50%;
  max-width: 50%;
}

.components-image-compensation-benefits-strategies img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

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

  .components-text-compensation-benefits-strategies,
  .components-image-compensation-benefits-strategies {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.implementation-section-compensation-benefits-strategies {
  background: #022c22;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.implementation-section-compensation-benefits-strategies .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.implementation-image-compensation-benefits-strategies {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-compensation-benefits-strategies img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.implementation-text-compensation-benefits-strategies {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-compensation-benefits-strategies {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.implementation-description-compensation-benefits-strategies {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.implementation-text-compensation-benefits-strategies {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.featured-quote-compensation-benefits-strategies {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #34d399;
  background: rgba(16, 185, 129, 0.1);
  margin: 2rem 0;
  border-radius: var(--radius-md);
}

.quote-text-compensation-benefits-strategies {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-style: italic;
}

.quote-author-compensation-benefits-strategies {
  font-size: 0.875rem;
  color: #86efac;
  font-style: normal;
  opacity: 0.8;
}

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

  .implementation-image-compensation-benefits-strategies,
  .implementation-text-compensation-benefits-strategies {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.metrics-section-compensation-benefits-strategies {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.metrics-section-compensation-benefits-strategies .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.metrics-grid-compensation-benefits-strategies {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.metric-card-compensation-benefits-strategies {
  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);
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card-compensation-benefits-strategies:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.metric-icon-compensation-benefits-strategies {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ecfdf5;
  color: #10b981;
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

.metric-title-compensation-benefits-strategies {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
}

.metric-text-compensation-benefits-strategies {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .metric-card-compensation-benefits-strategies {
    flex: 1 1 100%;
    max-width: none;
  }
}

.conclusion-section-compensation-benefits-strategies {
  background: #065f46;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-section-compensation-benefits-strategies .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.conclusion-text-compensation-benefits-strategies {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-compensation-benefits-strategies {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.conclusion-description-compensation-benefits-strategies {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.conclusion-text-compensation-benefits-strategies {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.cta-link-compensation-benefits-strategies {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #10b981;
  color: #ffffff;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.cta-link-compensation-benefits-strategies:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.conclusion-image-compensation-benefits-strategies {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-compensation-benefits-strategies img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

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

  .conclusion-text-compensation-benefits-strategies,
  .conclusion-image-compensation-benefits-strategies {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-compensation-benefits-strategies {
  background: #f3f4f6;
  padding: clamp(2rem, 4vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-section-compensation-benefits-strategies .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.disclaimer-content-compensation-benefits-strategies {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-md);
  border: 1px solid #e5e7eb;
}

.disclaimer-title-compensation-benefits-strategies {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}

.disclaimer-text-compensation-benefits-strategies {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

.related-section-compensation-benefits-strategies {
  background: #022c22;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.related-section-compensation-benefits-strategies .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.related-header-compensation-benefits-strategies {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.related-title-compensation-benefits-strategies {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.related-subtitle-compensation-benefits-strategies {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
}

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

.related-card-compensation-benefits-strategies {
  flex: 1 1 300px;
  max-width: 400px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-content-compensation-benefits-strategies {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: var(--radius-lg);
  height: 100%;
  transition: all 0.3s ease;
}

.related-card-compensation-benefits-strategies:hover .related-card-content-compensation-benefits-strategies {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(52, 211, 153, 0.4);
  transform: translateY(-4px);
}

.related-card-title-compensation-benefits-strategies {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.related-card-text-compensation-benefits-strategies {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-compensation-benefits-strategies {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #34d399;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-link-compensation-benefits-strategies:hover {
  color: #6ee7b7;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .related-card-compensation-benefits-strategies {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .hero-stats-compensation-benefits-strategies {
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .hero-section-compensation-benefits-strategies {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .intro-section-compensation-benefits-strategies {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .framework-section-compensation-benefits-strategies {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .components-section-compensation-benefits-strategies {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .implementation-section-compensation-benefits-strategies {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .metrics-section-compensation-benefits-strategies {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .conclusion-section-compensation-benefits-strategies {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .related-section-compensation-benefits-strategies {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

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

/* ==================== HERO SECTION ==================== */
.hero-section-performance-management-systems {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.hero-text-block-performance-management-systems {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-performance-management-systems {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #a7f3d0;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.5;
}

.article-meta-performance-management-systems {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.meta-badge-performance-management-systems {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #a7f3d0;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-performance-management-systems i {
  color: #34d399;
}

.hero-stats-performance-management-systems {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-item-performance-management-systems {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

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

.stat-label-performance-management-systems {
  font-size: 0.875rem;
  color: #a7f3d0;
  font-weight: 500;
}

.hero-image-block-performance-management-systems {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-performance-management-systems {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

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

  .hero-text-block-performance-management-systems,
  .hero-image-block-performance-management-systems {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-performance-management-systems {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ==================== BREADCRUMBS ==================== */
.breadcrumbs-performance-management-systems {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: 0.875rem;
}

.breadcrumb-link-performance-management-systems {
  color: #86efac;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-performance-management-systems:hover {
  color: #34d399;
  text-decoration: underline;
}

.breadcrumb-separator-performance-management-systems {
  color: #6ee7b7;
  margin: 0 0.25rem;
}

.breadcrumb-current-performance-management-systems {
  color: #a7f3d0;
}

/* ==================== INTRO SECTION ==================== */
.intro-section-performance-management-systems {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-block-performance-management-systems {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-description-performance-management-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.intro-text-performance-management-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

.intro-image-block-performance-management-systems {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-performance-management-systems {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

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

  .intro-text-block-performance-management-systems,
  .intro-image-block-performance-management-systems {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ==================== CORE PRINCIPLES SECTION ==================== */
.core-principles-section-performance-management-systems {
  background: #064e3b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.section-header-performance-management-systems {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag-performance-management-systems {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title-performance-management-systems {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.principles-wrapper-performance-management-systems {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.principle-step-performance-management-systems {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.principle-step-performance-management-systems:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
}

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

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

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

.step-description-performance-management-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
}

/* ==================== IMPLEMENTATION SECTION ==================== */
.implementation-section-performance-management-systems {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.implementation-text-performance-management-systems {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-performance-management-systems {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.implementation-list-performance-management-systems {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.list-item-performance-management-systems {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.list-item-performance-management-systems:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.list-item-title-performance-management-systems {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.list-item-text-performance-management-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.implementation-image-performance-management-systems {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-performance-management-systems {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .implementation-wrapper-performance-management-systems {
    flex-direction: column;
  }

  .implementation-text-performance-management-systems,
  .implementation-image-performance-management-systems {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ==================== BEST PRACTICES SECTION ==================== */
.best-practices-section-performance-management-systems {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practices-cards-performance-management-systems {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.practice-card-performance-management-systems {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.practice-card-performance-management-systems:hover {
  transform: translateY(-4px);
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.15);
}

.practice-card-icon-performance-management-systems {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(52, 211, 153, 0.2);
  color: #34d399;
  border-radius: 10px;
  font-size: 1.5rem;
}

.practice-card-title-performance-management-systems {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.practice-card-text-performance-management-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .practice-card-performance-management-systems {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ==================== QUOTE SECTION ==================== */
.quote-section-performance-management-systems {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-performance-management-systems {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #10b981;
  background: #ffffff;
  border-radius: 8px;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.quote-cite-performance-management-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

/* ==================== CHALLENGES SECTION ==================== */
.challenges-section-performance-management-systems {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.challenges-image-performance-management-systems {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-image-performance-management-systems {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.challenges-text-performance-management-systems {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-title-performance-management-systems {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.challenge-block-performance-management-systems {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid #e5e7eb;
}

.challenge-block-performance-management-systems:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.challenge-heading-performance-management-systems {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.challenge-text-performance-management-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .challenges-wrapper-performance-management-systems {
    flex-direction: column-reverse;
  }

  .challenges-image-performance-management-systems,
  .challenges-text-performance-management-systems {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ==================== IMPACT SECTION ==================== */
.impact-section-performance-management-systems {
  background: #065f46;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.impact-grid-performance-management-systems {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.impact-item-performance-management-systems {
  flex: 1 1 280px;
  max-width: 350px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.impact-item-performance-management-systems:hover {
  background: rgba(16, 185, 129, 0.18);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-4px);
}

.impact-number-performance-management-systems {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #34d399;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.impact-label-performance-management-systems {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.impact-description-performance-management-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .impact-item-performance-management-systems {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ==================== CONCLUSION SECTION ==================== */
.conclusion-section-performance-management-systems {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-performance-management-systems {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-performance-management-systems {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.conclusion-text-performance-management-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.cta-box-performance-management-systems {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: clamp(2.5rem, 4vw, 3.5rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

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

.cta-text-performance-management-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.btn-primary-performance-management-systems {
  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: #ffffff;
  color: #10b981;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
}

.btn-primary-performance-management-systems:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: #f0f0f0;
}

/* ==================== DISCLAIMER SECTION ==================== */
.disclaimer-section-performance-management-systems {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-box-performance-management-systems {
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-performance-management-systems {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.disclaimer-text-performance-management-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

/* ==================== RELATED SECTION ==================== */
.related-section-performance-management-systems {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-title-performance-management-systems {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.related-subtitle-performance-management-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-cards-performance-management-systems {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-performance-management-systems {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.related-card-performance-management-systems:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.related-card-image-performance-management-systems {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-image-performance-management-systems img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-performance-management-systems {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  flex-grow: 1;
}

.related-card-title-performance-management-systems {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}

.related-card-description-performance-management-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-performance-management-systems {
  display: inline-flex;
  align-items: center;
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.2s ease;
  width: fit-content;
}

.related-card-link-performance-management-systems:hover {
  color: #059669;
  transform: translateX(4px);
}

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

/* ==================== RESPONSIVE BREAKPOINTS ==================== */
@media (min-width: 768px) {
  .hero-section-performance-management-systems {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .intro-section-performance-management-systems,
  .core-principles-section-performance-management-systems,
  .implementation-section-performance-management-systems,
  .best-practices-section-performance-management-systems,
  .challenges-section-performance-management-systems,
  .impact-section-performance-management-systems,
  .conclusion-section-performance-management-systems,
  .related-section-performance-management-systems {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .article-meta-performance-management-systems {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .practice-card-performance-management-systems {
    flex: 1 1 calc(33.333% - 1.5rem);
  }

  .impact-item-performance-management-systems {
    flex: 1 1 calc(50% - 1rem);
  }

  .related-card-performance-management-systems {
    flex: 1 1 calc(33.333% - 1.5rem);
  }
}

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

.main-business-skills-training section {
  width: 100%;
  overflow: hidden;
}

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

.hero-section-business-skills-training {
  background: #022c22;
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  position: relative;
}

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

.breadcrumb-link-business-skills-training {
  color: #a7f3d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-business-skills-training:hover {
  color: #6ee7b7;
}

.breadcrumb-separator-business-skills-training {
  color: #6ee7b7;
}

.breadcrumb-current-business-skills-training {
  color: #10b981;
}

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

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

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

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

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

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

.meta-badge-business-skills-training {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #6ee7b7;
}

.meta-badge-business-skills-training i {
  color: #10b981;
}

.hero-stats-business-skills-training {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item-business-skills-training {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-business-skills-training {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.stat-label-business-skills-training {
  font-size: 0.875rem;
  color: #a7f3d0;
}

.hero-image-business-skills-training {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

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

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

  .hero-stats-business-skills-training {
    gap: 1.5rem;
  }
}

.introduction-section-business-skills-training {
  background: #f9fafb;
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

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

.intro-text-business-skills-training {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-business-skills-training {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-paragraph-business-skills-training {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-img-business-skills-training {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .intro-content-business-skills-training {
    flex-direction: column;
  }

  .intro-text-business-skills-training,
  .intro-image-business-skills-training {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.core-skills-section-business-skills-training {
  background: #111827;
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

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

.skills-tag-business-skills-training {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

.skills-grid-business-skills-training {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.skill-card-business-skills-training {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card-business-skills-training:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
}

.skill-icon-business-skills-training {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  color: #10b981;
  font-size: 1.75rem;
}

.skill-card-title-business-skills-training {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

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

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

.learning-framework-section-business-skills-training {
  background: #f9fafb;
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

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

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

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

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

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

.process-step-business-skills-training {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  align-items: flex-start;
}

.step-number-business-skills-training {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

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

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

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

.framework-img-business-skills-training {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .framework-content-business-skills-training {
    flex-direction: column;
  }

  .framework-text-business-skills-training,
  .framework-image-business-skills-training {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .process-step-business-skills-training {
    gap: 1rem;
  }
}

.implementation-section-business-skills-training {
  background: #022c22;
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

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

.impl-image-business-skills-training {
  flex: 1 1 50%;
  max-width: 50%;
}

.impl-text-business-skills-training {
  flex: 1 1 50%;
  max-width: 50%;
}

.impl-img-business-skills-training {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

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

.impl-paragraph-business-skills-training {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.impl-list-business-skills-training {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.impl-list-item-business-skills-training {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #a7f3d0;
  padding-left: 1.5rem;
  position: relative;
}

.impl-list-item-business-skills-training:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.featured-quote-business-skills-training {
  padding: 2rem 2.5rem;
  border-left: 4px solid #10b981;
  background: rgba(16, 185, 129, 0.1);
  margin-top: 2rem;
}

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

.quote-author-business-skills-training {
  font-size: 0.875rem;
  color: #a7f3d0;
  font-style: normal;
}

@media (max-width: 768px) {
  .impl-content-business-skills-training {
    flex-direction: column;
  }

  .impl-image-business-skills-training,
  .impl-text-business-skills-training {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.outcomes-section-business-skills-training {
  background: #f9fafb;
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

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

.outcomes-tag-business-skills-training {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

.outcomes-grid-business-skills-training {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.outcome-card-business-skills-training {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.outcome-card-business-skills-training:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-color: #10b981;
}

.outcome-icon-business-skills-training {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0fdf4;
  border-radius: 12px;
  color: #10b981;
  font-size: 1.75rem;
}

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

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

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

.cta-section-business-skills-training {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
  text-align: center;
}

.cta-content-business-skills-training {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

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

.cta-text-business-skills-training {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.8;
}

.cta-button-business-skills-training {
  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: #10b981;
  color: #022c22;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.cta-button-business-skills-training:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.disclaimer-section-business-skills-training {
  background: #f3f4f6;
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.disclaimer-content-business-skills-training {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #10b981;
  border-radius: 8px;
}

.disclaimer-title-business-skills-training {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.disclaimer-text-business-skills-training {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #4b5563;
}

.related-section-business-skills-training {
  background: #111827;
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

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

.related-title-business-skills-training {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.related-subtitle-business-skills-training {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
}

.related-cards-business-skills-training {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.related-card-business-skills-training {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-business-skills-training:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
}

.related-card-content-business-skills-training {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
}

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

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

.related-card-link-business-skills-training {
  font-size: 0.875rem;
  font-weight: 600;
  color: #10b981;
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}

.related-card-business-skills-training:hover .related-card-link-business-skills-training {
  color: #6ee7b7;
}

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

@media (min-width: 768px) {
  .hero-stats-business-skills-training {
    gap: 3rem;
  }

  .process-step-business-skills-training {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-section-business-skills-training {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .introduction-section-business-skills-training {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .core-skills-section-business-skills-training {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .learning-framework-section-business-skills-training {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .implementation-section-business-skills-training {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .outcomes-section-business-skills-training {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .related-section-business-skills-training {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

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

/* About Page Styles */
:root {
  --color-dark-primary: #022c22;
  --color-dark-secondary: #064e3b;
  --color-dark-tertiary: #065f46;
  --color-light-primary: #f9fafb;
  --color-light-secondary: #f3f4f6;
  --color-light-tertiary: #e5e7eb;
  --color-bg-card-dark: rgba(16, 185, 129, 0.1);
  --color-bg-card-light: #ffffff;
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #a7f3d0;
  --color-text-dark-muted: #86efac;
  --color-text-light-primary: #111827;
  --color-text-light-secondary: #4b5563;
  --color-text-light-muted: #9ca3af;
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-secondary: #34d399;
  --color-accent-dark: #6ee7b7;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.hr-consulting-journey-about {
  width: 100%;
}

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

.hero-emergence-about .container {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

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

.hero-emergence-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.15;
  word-break: break-word;
}

.hero-emergence-subtitle-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-dark-secondary);
  max-width: 700px;
  line-height: 1.5;
}

.hero-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-item-about {
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-about {
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
  font-weight: 500;
}

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

@media (max-width: 768px) {
  .hero-stats-about {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.foundation-narrative-about {
  background: var(--color-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.foundation-narrative-about .container {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.foundation-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
}

.foundation-intro-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  width: fit-content;
}

.foundation-heading-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
}

.foundation-paragraph-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

.foundation-highlight-about {
  color: var(--color-primary);
  font-weight: 600;
}

.foundation-image-about {
  width: 100%;
  height: auto;
  max-width: 700px;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1.5rem, 3vw, 2rem) auto;
}

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

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

.expertise-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.expertise-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-accent-dark);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0 auto;
}

.expertise-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
}

.expertise-subtitle-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
}

.pillars-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.pillar-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-dark-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
}

.pillar-card-about:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.15);
}

.pillar-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.pillar-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  line-height: 1.3;
}

.pillar-description-about {
  font-size: 0.9375rem;
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

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

  .pillar-card-about {
    flex: 1 1 100%;
    max-width: none;
  }
}

.transformation-journey-about {
  background: var(--color-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.transformation-journey-about .container {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.journey-intro-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.journey-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0 auto;
}

.journey-heading-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
}

.journey-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

.milestones-container-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1rem, 3vw, 2rem);
}

.milestone-block-about {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-light-primary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.milestone-number-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.milestone-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.milestone-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.milestone-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

.journey-visual-about {
  width: 100%;
  height: auto;
  max-width: 800px;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1.5rem, 3vw, 2rem) auto;
}

@media (max-width: 768px) {
  .milestone-block-about {
    flex-direction: column;
    gap: 1rem;
  }
}

.commitment-statement-about {
  background: var(--color-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.commitment-statement-about .container {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.commitment-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-accent-dark);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.commitment-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
}

.commitment-block-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.commitment-paragraph-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
}

.commitment-emphasis-about {
  color: var(--color-primary);
  font-weight: 600;
}

.values-display-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.5rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.value-tag-about {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-accent-dark);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.value-icon-about {
  font-size: 1rem;
}

.disclaimer-section-about {
  background: var(--color-light-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-light-tertiary);
}

.disclaimer-section-about .container {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-header-about {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.disclaimer-icon-about {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-title-about {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.disclaimer-text-about {
  font-size: 0.875rem;
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  padding-left: 3rem;
}

.disclaimer-highlight-about {
  color: var(--color-primary);
  font-weight: 500;
}

@media (max-width: 768px) {
  .disclaimer-header-about {
    flex-direction: row;
    align-items: center;
  }

  .disclaimer-text-about {
    padding-left: 0;
    margin-top: 0.75rem;
  }
}

@media (min-width: 768px) {
  .hero-emergence-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .foundation-narrative-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .expertise-pillars-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .transformation-journey-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .commitment-statement-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .pillars-grid-about {
    gap: 2rem;
  }

  .pillar-card-about {
    flex: 1 1 320px;
  }
}

/* Privacy Page Styles */
/* Universal legal documentation page class */
.legal-docs {
  width: 100%;
  font-family: var(--font-primary);
  background: var(--color-light-primary);
  color: var(--color-text-light-primary);
}

/* Base typography with responsive sizing */
.legal-docs h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-light-primary);
  margin-bottom: 0.5rem;
}

.legal-docs h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-light-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-docs p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
  margin-bottom: 1rem;
}

.legal-docs li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
  margin-bottom: 0.75rem;
  margin-left: 1.5rem;
}

.legal-docs strong {
  color: var(--color-text-light-primary);
  font-weight: 600;
}

/* Section styling */
.legal-docs-section {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.legal-docs-section:first-child {
  padding-top: clamp(2rem, 6vw, 4rem);
}

/* Container - max width with responsive padding */
.legal-docs-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

/* Content wrapper */
.legal-docs-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Header section with meta information */
.legal-docs-header {
  margin-bottom: 2rem;
}

.legal-docs-updated {
  font-size: 0.875rem;
  color: var(--color-text-light-muted);
  margin-top: 0.5rem;
}

/* Section content wrapper */
.legal-docs-section-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* List styling */
.legal-docs ul,
.legal-docs ol {
  margin-bottom: 1rem;
}

.legal-docs li {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Contact section styling */
.legal-docs-contact {
  background: var(--color-light-secondary);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}

.legal-docs-contact h3 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  margin-bottom: 1.5rem;
}

.legal-docs-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.legal-docs-contact-item:last-child {
  margin-bottom: 0;
}

.legal-docs-contact-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.legal-docs-contact-value {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .legal-docs-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .legal-docs-section:first-child {
    padding-top: clamp(3rem, 8vw, 5rem);
  }

  .legal-docs h1 {
    margin-bottom: 1rem;
  }

  .legal-docs h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .legal-docs-section-content {
    gap: 1.5rem;
  }

  .legal-docs-contact {
    padding: clamp(2.5rem, 5vw, 4rem);
  }
}

@media (min-width: 1024px) {
  .legal-docs-section {
    padding: 6rem 0;
  }

  .legal-docs-section:first-child {
    padding-top: 5rem;
  }

  .legal-docs h2 {
    margin-top: 3rem;
  }

  .legal-docs-section-content {
    gap: 1.75rem;
  }
}

/* Text overflow prevention */
.legal-docs h1,
.legal-docs h2,
.legal-docs h3 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Accessibility and readability */
.legal-docs a {
  color: var(--color-primary);
  text-decoration: none;
  word-break: break-word;
}

.legal-docs a:hover {
  text-decoration: underline;
}

/* Thank You Page Styles */
.thank-page {
  width: 100%;
}

.thank-section {
  background: linear-gradient(135deg, var(--color-dark-primary) 0%, var(--color-dark-secondary) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section .container {
  width: 100%;
  max-width: 1440px;
  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, 4vw, 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);
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid var(--color-primary);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon i {
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--color-primary);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-dark-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.thank-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--color-text-dark-secondary);
  font-weight: 600;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.thank-description {
  font-size: clamp(0.875rem, 1.5vw, 1.0625rem);
  color: var(--color-text-dark-muted);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

.thank-next-steps {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  width: 100%;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.thank-next-steps h3 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-text-dark-secondary);
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.25rem);
}

.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 3vw, 1.5rem);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-dark-muted);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(32px, 8vw, 40px);
  width: clamp(32px, 8vw, 40px);
  height: clamp(32px, 8vw, 40px);
  background: var(--color-primary);
  color: var(--color-dark-primary);
  border-radius: 50%;
  font-weight: 700;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  flex-shrink: 0;
}

.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, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

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

.btn-primary:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* Tablet breakpoint */
@media (min-width: 768px) {
  .thank-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    min-height: auto;
  }

  .thank-content {
    gap: clamp(2rem, 5vw, 3rem);
  }

  .thank-next-steps {
    padding: clamp(2rem, 5vw, 3rem);
  }

  .steps-list li {
    font-size: 1rem;
  }
}

/* Desktop breakpoint */
@media (min-width: 1024px) {
  .thank-section {
    padding: 6rem 0;
  }

  .thank-content {
    gap: 3rem;
  }

  .thank-next-steps {
    padding: 3rem;
  }

  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.4);
  }
}

/* Large desktop breakpoint */
@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
  }

  .thank-content {
    gap: 3.5rem;
  }
}

/* 404 Page Styles */
/* =====================================================
   ERROR PAGE - 404 COMPONENT
   ===================================================== */

.main.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-dark-primary) 0%, var(--color-dark-secondary) 100%);
  padding: clamp(2rem, 6vw, 6rem) 0;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  position: relative;
  z-index: 3;
}

/* =====================================================
   DECORATIVE ELEMENTS
   ===================================================== */

.error-decoration {
  position: absolute;
  opacity: 0.08;
  z-index: 1;
  border-radius: 50%;
}

.error-decoration-1 {
  width: clamp(200px, 50vw, 600px);
  height: clamp(200px, 50vw, 600px);
  background: var(--color-secondary);
  top: -20%;
  right: -15%;
  animation: float 6s ease-in-out infinite;
}

.error-decoration-2 {
  width: clamp(150px, 35vw, 450px);
  height: clamp(150px, 35vw, 450px);
  background: var(--color-accent-dark);
  bottom: -15%;
  left: -10%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

/* =====================================================
   ERROR CODE & ICON
   ===================================================== */

.error-code-wrapper {
  position: relative;
  margin-top: clamp(1rem, 3vw, 2rem);
}

.error-code {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  color: var(--color-text-dark-primary);
  line-height: 1;
  margin: 0;
  letter-spacing: -2px;
  font-family: var(--font-heading);
  animation: slideDown 0.8s ease-out;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.error-icon {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--color-secondary);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translateY(-50%) scale(1.1);
  }
}

/* =====================================================
   HEADINGS & TEXT
   ===================================================== */

.error-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin: 0;
  line-height: 1.2;
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

.error-description {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  margin: 0;
  line-height: 1.6;
  max-width: 500px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* =====================================================
   SUGGESTIONS
   ===================================================== */

.error-suggestions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  flex-wrap: wrap;
  width: 100%;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.suggestion-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 2vw, 1.25rem);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.75rem, 1vw + 0.25rem, 0.95rem);
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.suggestion-item i {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-secondary);
}

.suggestion-item:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.5px;
  border: none;
  font-family: var(--font-primary);
  text-transform: uppercase;
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
}

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

/* =====================================================
   SECONDARY TEXT
   ===================================================== */

.error-secondary {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-dark-muted);
  margin: 0;
  line-height: 1.5;
}

/* =====================================================
   MOBILE RESPONSIVE
   ===================================================== */

@media (max-width: 600px) {
  .error-icon {
    position: static;
    margin-top: 1rem;
    transform: none;
    animation: none;
  }
  
  .error-suggestions {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .suggestion-item {
    width: 100%;
    flex-direction: row;
    justify-content: center;
  }
}

/* =====================================================
   TABLET RESPONSIVE
   ===================================================== */

@media (min-width: 768px) {
  .error-section {
    padding: 4rem 0;
  }
  
  .error-icon {
    right: -40px;
  }
  
  .error-suggestions {
    gap: 2rem;
  }
}

/* =====================================================
   DESKTOP RESPONSIVE
   ===================================================== */

@media (min-width: 1024px) {
  .error-section {
    padding: 6rem 0;
  }
  
  .error-icon {
    right: -50px;
  }
  
  .btn:hover {
    transform: translateY(-4px);
  }
}

@media (min-width: 1440px) {
  .error-code {
    text-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  }
}

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

.error-code,
.error-title,
.error-description,
.error-secondary,
.suggestion-item,
.btn {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

.error-icon {
  pointer-events: none;
}