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

:root {
  /* HYBRID COLOR STRATEGY - PALETTE D4: CHARCOAL + CYAN */
  
  /* Dark section backgrounds */
  --color-bg-dark-primary: #111827;
  --color-bg-dark-secondary: #1f2937;
  --color-bg-dark-tertiary: #374151;
  
  /* Light section backgrounds */
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  
  /* Card backgrounds */
  --color-bg-card-dark: rgba(6, 182, 212, 0.08);
  --color-bg-card-light: #ffffff;
  
  /* Text colors for dark sections */
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #9ca3af;
  --color-text-dark-muted: #6b7280;
  
  /* Text colors for light sections */
  --color-text-light-primary: #111827;
  --color-text-light-secondary: #4b5563;
  --color-text-light-muted: #9ca3af;
  
  /* Accent colors */
  --color-primary: #06b6d4;
  --color-primary-hover: #22d3ee;
  --color-secondary: #0891b2;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  /* 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);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  letter-spacing: -0.3px;
}

/* ============================================
   CONTAINER & SECTION STRUCTURE
   ============================================ */

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

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

/* ============================================
   TYPOGRAPHY SYSTEM - RESPONSIVE SCALE
   ============================================ */

h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 700;
  line-height: 1.25;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h4 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
}

p {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

li {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

a {
  text-decoration: none;
  transition: all var(--transition-base);
}

/* ============================================
   BUTTON STYLES
   ============================================ */

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

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(6, 182, 212, 0.3);
}

.btn-outline {
  border-color: currentColor;
  background: transparent;
}

.btn-outline.dark-text {
  color: var(--color-text-dark-primary);
  border-color: var(--color-primary);
}

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

.btn-outline.light-text {
  color: var(--color-text-light-primary);
  border-color: var(--color-primary);
}

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

/* ============================================
   FORM ELEMENTS
   ============================================ */

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

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

/* Dark section inputs */
.dark-section input,
.dark-section textarea,
.dark-section select {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--color-text-dark-primary);
}

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

/* Light section inputs */
.light-section input,
.light-section textarea,
.light-section select {
  background: var(--color-bg-light-primary);
  border-color: var(--color-bg-light-tertiary);
  color: var(--color-text-light-primary);
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */

.dark-section {
  background: var(--color-bg-dark-primary);
}

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

.flex-container {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
}

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

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

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

/* ============================================
   ICON STYLES
   ============================================ */

i[class*="fa-"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-lg {
  font-size: clamp(2rem, 5vw, 3rem);
}

.icon-md {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.icon-sm {
  font-size: 1.25rem;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 767px) {
  .flex-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hide-mobile {
    display: none;
  }
  
  section {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }
}

@media (min-width: 768px) {
  section {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
  }
  
  .show-tablet-only {
    display: block;
  }
}

@media (min-width: 1024px) {
  section {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1440px) {
  section {
    padding: 6rem 0;
  }
}

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

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

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .no-print {
    display: none !important;
  }
}
/* ============================================
     HEADER SKILL FORGE - MOBILE FIRST RESPONSIVE
     ============================================ */

  .header-skill-forge {
    position: relative;
    background: var(--color-bg-dark-primary);
    border-bottom: 1px solid var(--color-bg-dark-secondary);
    z-index: 100;
  }

  /* Desktop Container */
  .header-skill-forge-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    height: clamp(60px, 10vw, 80px);
    gap: 2rem;
  }

  /* Brand/Logo Section */
  .header-skill-forge-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
  }

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

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

  /* Desktop Navigation */
  .header-skill-forge-desktop-nav {
    display: none;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
    flex: 1;
    justify-content: center;
  }

  .header-skill-forge-nav-link {
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 500;
    color: #9ca3af;
    text-decoration: none;
    transition: color var(--transition-fast);
    position: relative;
  }

  .header-skill-forge-nav-link:hover {
    color: var(--color-primary);
  }

  .header-skill-forge-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-base);
  }

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

  /* CTA Button - Desktop */
  .header-skill-forge-cta-button {
    display: none;
    padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1rem, 2vw, 1.5rem);
    background: var(--color-primary);
    color: #0f172a;
    border: none;
    border-radius: var(--radius-md);
    font-size: clamp(0.875rem, 1vw, 0.95rem);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    font-family: var(--font-primary);
  }

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

  .header-skill-forge-cta-button:active {
    transform: translateY(0);
  }

  .header-skill-forge-cta-button:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
  }

  /* Mobile Toggle Button */
  .header-skill-forge-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin: -0.5rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
  }

  .header-skill-forge-hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
    transition: all var(--transition-base);
  }

  .header-skill-forge-mobile-toggle:hover .header-skill-forge-hamburger-line {
    background: var(--color-primary-hover);
  }

  /* Mobile Menu - Hidden by default */
  .header-skill-forge-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-dark-primary);
    border-right: 1px solid var(--color-bg-dark-secondary);
    padding-top: clamp(60px, 10vw, 80px);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all var(--transition-base);
    z-index: 99;
    overflow-y: auto;
  }

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

  /* Mobile Menu Header */
  .header-skill-forge-mobile-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem clamp(1rem, 4vw, 2rem);
    border-bottom: 1px solid var(--color-bg-dark-secondary);
  }

  .header-skill-forge-mobile-close {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    margin: -0.5rem;
    transition: color var(--transition-fast);
  }

  .header-skill-forge-mobile-close:hover {
    color: var(--color-primary-hover);
  }

  .header-skill-forge-mobile-close:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }

  /* Mobile Navigation Links */
  .header-skill-forge-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }

  .header-skill-forge-mobile-link {
    padding: 1rem clamp(1rem, 4vw, 2rem);
    color: #9ca3af;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--color-bg-dark-secondary);
    transition: all var(--transition-fast);
  }

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

  .header-skill-forge-mobile-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
  }

  /* Mobile CTA Button */
  .header-skill-forge-mobile-cta {
    display: block;
    margin: 1.5rem clamp(1rem, 4vw, 2rem);
    padding: 1rem;
    background: var(--color-primary);
    color: #0f172a;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: var(--font-primary);
  }

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

  .header-skill-forge-mobile-cta:active {
    transform: translateY(0);
  }

  .header-skill-forge-mobile-cta:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
  }

  /* ============================================
     TABLET - 768px+
     ============================================ */

  @media (min-width: 768px) {
    .header-skill-forge-container {
      padding: 0 clamp(1.5rem, 5vw, 2.5rem);
    }

    .header-skill-forge-mobile-toggle {
      display: none;
    }

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

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

    .header-skill-forge-mobile-menu {
      display: none !important;
    }

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

    .header-skill-forge-nav-link {
      font-size: 0.95rem;
    }
  }

  /* ============================================
     DESKTOP - 1024px+
     ============================================ */

  @media (min-width: 1024px) {
    .header-skill-forge-container {
      height: 80px;
      gap: 3rem;
    }

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

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

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

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

  /* ============================================
     ACCESSIBILITY & MOTION
     ============================================ */

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

    .header-skill-forge-nav-link:hover::after {
      animation: none;
    }
  }

    .edu-portal {
  width: 100%;
}

/* ============================================
   HERO SECTION - DARK THEME
   ============================================ */

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

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

.hero-gradient-mesh {
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 60%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

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

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

.hero-corner-orb {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 100px;
  height: 100px;
  background: rgba(34, 211, 238, 0.1);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.hero-side-shape {
  position: absolute;
  bottom: -50px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.03);
  border-radius: 20px;
  transform: rotate(45deg);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

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

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

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

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

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

.hero-stat-label {
  font-size: 0.875rem;
  color: #9ca3af;
}

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

.hero-buttons .btn-primary {
  background: #06b6d4;
  color: #000000;
}

.hero-buttons .btn-primary:hover {
  background: #22d3ee;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(6, 182, 212, 0.4);
}

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

.hero-buttons .btn-secondary:hover {
  border-color: #06b6d4;
  color: #06b6d4;
}

/* ============================================
   COURSES SECTION - LIGHT THEME
   ============================================ */

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

.courses-shape-left {
  position: absolute;
  top: 5%;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 40% 60% 50% 50% / 50% 50% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

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

.courses-accent-right {
  position: absolute;
  bottom: 10%;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.courses-floating-panel {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 150px;
  height: 120px;
  background: rgba(59, 130, 246, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  z-index: 2;
  pointer-events: none;
  transform: rotate(-8deg);
}

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

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

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

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

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

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

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

.courses-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

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

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

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

.courses-card-link {
  color: #3b82f6;
  font-weight: 500;
  text-decoration: none;
  transition: color 300ms ease;
}

.courses-card-link:hover {
  color: #06b6d4;
}

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

.courses-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: transparent;
  color: #3b82f6;
  border: 2px solid #3b82f6;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 300ms ease;
}

.courses-view-all:hover {
  background: #3b82f6;
  color: #ffffff;
  transform: translateY(-2px);
}

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

/* ============================================
   BENEFITS SECTION - DARK THEME
   ============================================ */

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

.benefits-mesh-top {
  position: absolute;
  top: -150px;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 60%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.benefits-glow-left {
  position: absolute;
  top: 30%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.benefits-shape-right {
  position: absolute;
  bottom: 20%;
  right: -80px;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
}

.benefits-accent-bottom {
  position: absolute;
  bottom: -100px;
  right: 20%;
  width: 200px;
  height: 200px;
  background: rgba(34, 211, 238, 0.04);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

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

.benefits-content {
  flex: 1 1 400px;
}

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

.benefits-intro {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #cbd5e1;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

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

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

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

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

.benefits-item-text {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.benefits-image-wrapper {
  flex: 1 1 400px;
  min-width: 300px;
}

.benefits-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

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

/* ============================================
   PATHWAY SECTION - LIGHT THEME
   ============================================ */

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

.pathway-glow-1 {
  position: absolute;
  top: 10%;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.pathway-glow-2 {
  position: absolute;
  bottom: 15%;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.pathway-shape-accent {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 40% 60% 60% 40% / 60% 40% 40% 60%;
  z-index: 2;
  pointer-events: none;
}

.pathway-floating-element {
  position: absolute;
  bottom: 25%;
  right: 5%;
  width: 120px;
  height: 120px;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 10px;
  z-index: 2;
  pointer-events: none;
  transform: rotate(12deg);
}

.pathway-line-decoration {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.3) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

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

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

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

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

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

.pathway-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 300ms ease;
}

.pathway-step:hover {
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

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

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

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

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

@media (max-width: 768px) {
  .pathway-step {
    flex-direction: column;
  }
  
  .pathway-step-number {
    min-width: auto;
  }
}

/* ============================================
   STATISTICS SECTION - DARK THEME
   ============================================ */

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

.stats-mesh-background {
  position: absolute;
  top: -200px;
  right: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 60%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.stats-glow-accent {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.stats-shape-2 {
  position: absolute;
  bottom: 20%;
  right: 8%;
  width: 150px;
  height: 150px;
  background: rgba(34, 211, 238, 0.05);
  border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%;
  z-index: 2;
  pointer-events: none;
}

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

.stats-text {
  text-align: center;
  margin-bottom: 4rem;
}

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

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

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  justify-content: center;
}

.stats-card {
  flex: 1 1 220px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(6, 182, 212, 0.1);
  border-radius: 12px;
  transition: all 300ms ease;
}

.stats-card:hover {
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateY(-4px);
}

.stats-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

.stats-label {
  font-size: 0.9375rem;
  color: #cbd5e1;
  font-weight: 500;
}

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

/* ============================================
   TESTIMONIALS SECTION - LIGHT THEME
   ============================================ */

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

.testimonials-glow-1 {
  position: absolute;
  top: -100px;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.testimonials-shape-left {
  position: absolute;
  top: 30%;
  left: 3%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
}

.testimonials-shape-right {
  position: absolute;
  bottom: 25%;
  right: 2%;
  width: 180px;
  height: 180px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 40% 60% 60% 40% / 40% 60% 40% 60%;
  z-index: 2;
  pointer-events: none;
}

.testimonials-accent-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: rgba(6, 182, 212, 0.04);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

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

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

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

.testimonials-featured {
  position: relative;
  z-index: 10;
  padding: 2.5rem;
  border-left: 4px solid #06b6d4;
  background: #f8fafc;
  margin-bottom: 3rem;
  border-radius: 8px;
}

.testimonials-quote {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #0f172a;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

.testimonials-grid {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.testimonials-card {
  flex: 1 1 300px;
  max-width: 400px;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 300ms ease;
}

.testimonials-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.testimonials-card-text {
  font-size: 0.9375rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonials-card-author {
  font-size: 0.875rem;
  color: #0f172a;
  font-weight: 600;
}

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

/* ============================================
   FAQ SECTION - DARK THEME
   ============================================ */

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

.faq-glow-top {
  position: absolute;
  top: -150px;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 60%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.faq-shape-bottom {
  position: absolute;
  bottom: -80px;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.faq-accent-left {
  position: absolute;
  top: 20%;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 40% 60% 50% 50% / 50% 50% 40% 60%;
  z-index: 2;
  pointer-events: none;
}

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

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

.faq-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
}

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

.faq-list {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(6, 182, 212, 0.1);
  border-radius: 10px;
  transition: all 300ms ease;
}

.faq-item:hover {
  background: rgba(6, 182, 212, 0.05);
  border-color: rgba(6, 182, 212, 0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  color: #ffffff;
  font-size: 1rem;
  user-select: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 300ms ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  margin-top: 1rem;
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.faq-info {
  flex: 1 1 400px;
  min-width: 300px;
}

.faq-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .faq-split {
    flex-direction: column;
  }
  
  .faq-list,
  .faq-info {
    flex: 1 1 100%;
  }
}

/* ============================================
   CONTACT SECTION - LIGHT THEME
   ============================================ */

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

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

.contact-glow-accent-2 {
  position: absolute;
  bottom: 10%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-shape-left {
  position: absolute;
  top: 20%;
  left: 3%;
  width: 180px;
  height: 180px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
}

.contact-shape-right {
  position: absolute;
  bottom: 15%;
  right: 3%;
  width: 160px;
  height: 160px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 40% 60% 50% 50% / 50% 50% 40% 60%;
  z-index: 2;
  pointer-events: none;
}

.contact-floating-element {
  position: absolute;
  top: 40%;
  right: 8%;
  width: 100px;
  height: 100px;
  background: rgba(6, 182, 212, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: 10px;
  z-index: 2;
  pointer-events: none;
  transform: rotate(-12deg);
}

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

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

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

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

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

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

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

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

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

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.contact-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: #3b82f6;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 300ms ease;
  margin-top: 1rem;
}

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

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

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

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.contact-info-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.contact-info-text {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-split {
    flex-direction: column;
  }
  
  .contact-form,
  .contact-info {
    flex: 1 1 100%;
  }
}

/* ============================================
   CTA SECTION - DARK THEME
   ============================================ */

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

.cta-mesh-top {
  position: absolute;
  top: -100px;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12) 0%, transparent 60%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

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

.cta-box {
  position: relative;
  z-index: 10;
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(34, 211, 238, 0.1) 100%);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 20px;
}

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

.cta-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  background: #06b6d4;
  color: #000000;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover {
  background: #22d3ee;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(6, 182, 212, 0.4);
}

/* ============================================
   COOKIE BANNER
   ============================================ */

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

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

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

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

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

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

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

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

.cookie-btn-decline:hover {
  border-color: #06b6d4;
  color: #06b6d4;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
  .container {
    padding: 0 clamp(1rem, 4vw, 1.5rem);
  }
  
  .btn {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1;
    min-width: 100px;
  }
}

/* ============================================
   ACCESSIBILITY & FOCUS STATES
   ============================================ */

.btn:focus-visible,
.contact-submit:focus-visible,
.cookie-btn-accept:focus-visible,
.cookie-btn-decline:focus-visible,
.contact-input:focus-visible,
.contact-textarea:focus-visible {
  outline: 2px solid #06b6d4;
  outline-offset: 2px;
}

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

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

.footer .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
  position: relative;
  z-index: 10;
}

.footer-content {
  display: block;
}

.footer-about-section {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  max-width: 480px;
}

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

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

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

.footer-nav-section,
.footer-contact-section,
.footer-legal-section {
  flex: 1 1 250px;
  display: block;
}

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

.footer-nav-links,
.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.footer-nav-link,
.footer-legal-link {
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  transition: all var(--transition-fast);
  display: inline-block;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-nav-link::before,
.footer-legal-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

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

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.footer-contact-item {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  line-height: 1.6;
  color: var(--color-text-dark-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(148, 163, 184, 0.1);
  margin: clamp(1.5rem, 4vw, 2.5rem) 0;
}

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

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

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

.footer-decoration-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
  filter: blur(60px);
  bottom: 10%;
  left: -60px;
  z-index: 1;
  pointer-events: none;
}

.footer-decoration-3 {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(6, 182, 212, 0.03);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  bottom: 20%;
  right: 5%;
  z-index: 1;
  pointer-events: none;
  filter: blur(40px);
}

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

  .footer-about-section {
    margin-bottom: clamp(3rem, 8vw, 5rem);
  }

  .footer-sections-wrapper {
    gap: clamp(3rem, 6vw, 5rem);
  }

  .footer-nav-section,
  .footer-contact-section,
  .footer-legal-section {
    flex: 1 1 280px;
  }

  .footer-divider {
    margin: clamp(2rem, 5vw, 3rem) 0;
  }
}

@media (max-width: 767px) {
  .footer-sections-wrapper {
    flex-direction: column;
    gap: clamp(2rem, 5vw, 2.5rem);
  }

  .footer-nav-section,
  .footer-contact-section,
  .footer-legal-section {
    flex: 1 1 100%;
  }

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

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

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

/* Category Page Styles */
/* ============================================
   COMPONENT WRAPPER - PROFESSIONAL LEARNING CATEGORY
   ============================================ */

.main.category-page-professional-learning {
  width: 100%;
}

/* ============================================
   HERO SECTION - DARK CHARCOAL + CYAN THEME
   ============================================ */

.hero-section-professional-learning {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #111827;
}

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

.hero-deco-glow-2 {
  position: absolute;
  top: 20%;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-shape-1 {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

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

.hero-deco-accent {
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.3), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-content-professional-learning {
  position: relative;
  z-index: 10;
}

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

.hero-description-professional-learning {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 700px;
  margin-bottom: 3rem;
}

.hero-stats-professional-learning {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: 3rem;
}

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

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

.stat-label-professional-learning {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #9ca3af;
}

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

/* ============================================
   POSTS SECTION - LIGHT BACKGROUND
   ============================================ */

.posts-section-professional-learning {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: #f8fafc;
}

/* Posts Decorations */
.posts-deco-gradient {
  position: absolute;
  top: 10%;
  right: 5%;
  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;
}

.posts-deco-blob-1 {
  position: absolute;
  bottom: -50px;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.posts-deco-blob-2 {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 180px;
  height: 180px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

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

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

.posts-title-professional-learning {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.posts-subtitle-professional-learning {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #4b5563;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

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

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

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

.card-image-professional-learning {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.card-title-professional-learning {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.25;
}

.card-description-professional-learning {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.card-meta-professional-learning {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.meta-badge-professional-learning {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.08);
  color: #0891b2;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.meta-badge-professional-learning i {
  font-size: 0.875rem;
}

.card-link-professional-learning {
  display: inline-block;
  margin-top: auto;
  padding: 0.75rem 1.5rem;
  background: #06b6d4;
  color: #000000;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: all 300ms ease-in-out;
  text-decoration: none;
}

.card-link-professional-learning:hover {
  background: #22d3ee;
  transform: translateY(-2px);
}

/* ============================================
   LEARNING PATH SECTION - LIGHT BACKGROUND
   ============================================ */

.learning-path-section-professional-learning {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: #ffffff;
}

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

.learning-path-deco-accent-2 {
  position: absolute;
  bottom: 10%;
  right: -80px;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

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

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

.learning-path-title-professional-learning {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.learning-path-subtitle-professional-learning {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.learning-path-step-professional-learning {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
}

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

.learning-path-step-content-professional-learning {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.learning-path-step-title-professional-learning {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
}

.learning-path-step-text-professional-learning {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #64748b;
}

@media (max-width: 768px) {
  .learning-path-step-professional-learning {
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .learning-path-step-number-professional-learning {
    font-size: 2rem;
    min-width: 50px;
  }
}

/* ============================================
   BENEFITS SECTION - LIGHT BACKGROUND
   ============================================ */

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

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

.benefits-deco-orb-1 {
  position: absolute;
  top: 30%;
  left: -80px;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.07);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.benefits-deco-orb-2 {
  position: absolute;
  bottom: 20%;
  right: -60px;
  width: 180px;
  height: 180px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

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

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

.benefits-title-professional-learning {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
}

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

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

.benefits-card-professional-learning:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(6, 182, 212, 0.3);
}

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

.benefits-card-title-professional-learning {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
}

.benefits-card-text-professional-learning {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

/* ============================================
   QUOTE SECTION - DARK BACKGROUND
   ============================================ */

.quote-section-professional-learning {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: #111827;
}

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

.quote-deco-line-2 {
  position: absolute;
  bottom: 25%;
  right: 15%;
  width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
}

.featured-quote-professional-learning {
  position: relative;
  z-index: 10;
  max-width: 750px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  border-left: 4px solid #06b6d4;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 8px;
}

.quote-text-professional-learning {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.quote-author-professional-learning {
  font-size: 0.9375rem;
  color: #9ca3af;
  font-style: normal;
}

/* ============================================
   CTA SECTION - DARK BACKGROUND
   ============================================ */

.cta-section-professional-learning {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: #0f172a;
}

.cta-deco-glow-large {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.cta-deco-shape-1 {
  position: absolute;
  bottom: 10%;
  left: -80px;
  width: 220px;
  height: 220px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

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

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

.cta-title-professional-learning {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-description-professional-learning {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-button-professional-learning {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(2rem, 4vw, 2.75rem);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
  .hero-buttons-professional-learning {
    flex-direction: column;
    gap: 0.75rem;
  }

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

  .card-professional-learning {
    flex: 1 1 100%;
    max-width: none;
  }

  .benefits-card-professional-learning {
    flex: 1 1 100%;
    max-width: none;
  }

  .featured-quote-professional-learning {
    padding: 2rem 1.5rem;
  }

  .quote-text-professional-learning {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .hero-section-professional-learning,
  .posts-section-professional-learning,
  .learning-path-section-professional-learning,
  .benefits-section-professional-learning,
  .quote-section-professional-learning,
  .cta-section-professional-learning {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-professional-learning,
  .posts-section-professional-learning,
  .learning-path-section-professional-learning,
  .benefits-section-professional-learning,
  .quote-section-professional-learning,
  .cta-section-professional-learning {
    padding: 6rem 0;
  }

  .learning-path-step-professional-learning {
    gap: 2.5rem;
    padding: 2.25rem;
  }
}

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

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

/* ============================================
   FOCUS STATES
   ============================================ */

.card-link-professional-learning:focus-visible,
.btn:focus-visible {
  outline: 2px solid #06b6d4;
  outline-offset: 3px;
}

a:focus-visible {
  outline: 2px solid #06b6d4;
  outline-offset: 2px;
}

/* Post Page 1 Styles */
.main-web-application-development {
  width: 100%;
  background: #ffffff;
}

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

section {
  width: 100%;
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

a {
  text-decoration: none;
  transition: all 250ms ease-in-out;
}

.hero-section-web-application-development {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.meta-badge-web-application-development {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #e0f2fe;
}

.meta-badge-web-application-development i {
  color: #06b6d4;
}

.hero-stats-web-application-development {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-top: 2rem;
}

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

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

.stat-label-web-application-development {
  font-size: 0.875rem;
  color: #9ca3af;
}

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

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

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

  .hero-text-block-web-application-development,
  .hero-image-block-web-application-development {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-web-application-development {
    gap: 1.5rem;
  }
}

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

.breadcrumbs-web-application-development a {
  color: #06b6d4;
}

.breadcrumbs-web-application-development a:hover {
  color: #22d3ee;
  text-decoration: underline;
}

.breadcrumbs-web-application-development span {
  color: #6b7280;
}

.intro-section-web-application-development {
  background: #ffffff;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

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

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

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

.intro-description-web-application-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

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

.intro-image-element-web-application-development {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-wrapper-web-application-development {
    flex-direction: column;
  }

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

.learning-path-section-web-application-development {
  background: #f8fafc;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-header-web-application-development {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

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

.section-subtitle-web-application-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.step-item-web-application-development {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
  transition: all 250ms ease-in-out;
}

.step-item-web-application-development:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

.step-number-web-application-development {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.step-content-web-application-development {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-web-application-development {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.step-description-web-application-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: #64748b;
}

@media (max-width: 768px) {
  .step-item-web-application-development {
    gap: 1.5rem;
    padding: 1.5rem;
  }

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

.intro-section-web-application-development {
  background: #ffffff;
}

.key-skills-section-web-application-development {
  background: #ffffff;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.skills-wrapper-web-application-development {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.skills-text-web-application-development {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.skills-description-web-application-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 2rem;
}

.skills-list-web-application-development {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skill-item-web-application-development {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #334155;
}

.skill-item-web-application-development i {
  color: #06b6d4;
  flex-shrink: 0;
  margin-top: 0.25rem;
  font-size: 1.25rem;
}

.skills-image-web-application-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.skills-image-element-web-application-development {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .skills-wrapper-web-application-development {
    flex-direction: column;
  }

  .skills-text-web-application-development,
  .skills-image-web-application-development {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.featured-quote-section-web-application-development {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

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

.quote-author-web-application-development {
  font-size: 0.9375rem;
  color: #cbd5e1;
  font-style: normal;
  display: block;
}

.tools-section-web-application-development {
  background: #f8fafc;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.tools-grid-web-application-development {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.tool-card-web-application-development {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 250ms ease-in-out;
}

.tool-card-web-application-development:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #06b6d4;
}

.tool-icon-web-application-development {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 12px;
  color: #06b6d4;
  font-size: 2rem;
}

.tool-name-web-application-development {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.tool-description-web-application-development {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: #64748b;
}

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

.project-section-web-application-development {
  background: #ffffff;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.project-wrapper-web-application-development {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.project-image-web-application-development {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.project-image-element-web-application-development {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.project-text-web-application-development {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.project-description-web-application-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.project-list-web-application-development {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-item-web-application-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #334155;
  line-height: 1.6;
}

.project-item-title-web-application-development {
  color: #0f172a;
  display: block;
  margin-bottom: 0.25rem;
}

.project-item-text-web-application-development {
  color: #64748b;
}

@media (max-width: 768px) {
  .project-wrapper-web-application-development {
    flex-direction: column;
  }

  .project-image-web-application-development,
  .project-text-web-application-development {
    flex: 1 1 100%;
    max-width: 100%;
    order: initial;
  }
}

.cta-section-web-application-development {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.cta-box-web-application-development {
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 16px;
  text-align: center;
  background: rgba(6, 182, 212, 0.1);
  border: 2px solid #06b6d4;
  max-width: 900px;
  margin: 0 auto;
}

.cta-title-web-application-development {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-description-web-application-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button-web-application-development {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  font-weight: 600;
  background: #06b6d4;
  color: #000000;
  border-radius: 8px;
  transition: all 250ms ease-in-out;
  border: 2px solid transparent;
}

.cta-button-web-application-development:hover {
  background: #22d3ee;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.disclaimer-section-web-application-development {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.disclaimer-box-web-application-development {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-web-application-development {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-web-application-development {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: #4b5563;
}

.related-posts-section-web-application-development {
  background: #ffffff;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

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

.related-card-web-application-development {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 250ms ease-in-out;
}

.related-card-web-application-development:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

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

.related-card-title-web-application-development {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-description-web-application-development {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: #64748b;
}

.related-card-link-web-application-development {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #06b6d4;
  padding-top: 0.5rem;
  border-top: 1px solid #e2e8f0;
  padding-top: 1rem;
}

.related-card-link-web-application-development:hover {
  color: #22d3ee;
}

.related-card-link-web-application-development::after {
  content: '→';
  transition: transform 250ms ease-in-out;
}

.related-card-link-web-application-development:hover::after {
  transform: translateX(4px);
}

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

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

@media (min-width: 1024px) {
  section {
    padding: 6rem 0;
  }
}

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

/* Post Page 2 Styles */
/* ============================================
   MAIN COMPONENT WRAPPER
   ============================================ */

.main-digital-marketing-strategy {
  width: 100%;
  display: block;
}

/* ============================================
   HERO SECTION - DARK THEME
   ============================================ */

.hero-section-digital-marketing-strategy {
  background: #111827;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.hero-text-block-digital-marketing-strategy {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

.hero-description-digital-marketing-strategy {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.hero-meta-digital-marketing-strategy {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

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

.meta-badge-digital-marketing-strategy i {
  font-size: 0.875rem;
}

.hero-cta-digital-marketing-strategy {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.btn-primary-digital-marketing-strategy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #06b6d4;
  color: #000000;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  transition: all 0.25s ease-in-out;
  text-decoration: none;
}

.btn-primary-digital-marketing-strategy:hover {
  background: #22d3ee;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(6, 182, 212, 0.3);
}

.btn-secondary-digital-marketing-strategy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: transparent;
  border: 2px solid #06b6d4;
  color: #06b6d4;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  transition: all 0.25s ease-in-out;
  text-decoration: none;
}

.btn-secondary-digital-marketing-strategy:hover {
  background: #06b6d4;
  color: #000000;
  transform: translateY(-2px);
}

.hero-image-block-digital-marketing-strategy {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-digital-marketing-strategy {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.hero-stats-digital-marketing-strategy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 4vw, 3rem);
}

.stat-item-digital-marketing-strategy {
  flex: 0 1 auto;
  text-align: center;
}

.stat-number-digital-marketing-strategy {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-digital-marketing-strategy {
  display: block;
  font-size: 0.875rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   INTRO SECTION - LIGHT THEME
   ============================================ */

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

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

.intro-text-block-digital-marketing-strategy {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.intro-title-digital-marketing-strategy {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.intro-description-digital-marketing-strategy {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.intro-image-block-digital-marketing-strategy {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-image-digital-marketing-strategy {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

/* ============================================
   FOUNDATIONS SECTION - DARK THEME
   ============================================ */

.foundations-section-digital-marketing-strategy {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.section-header-digital-marketing-strategy {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.foundations-title-digital-marketing-strategy {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle-digital-marketing-strategy {
  color: #94a3b8;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.foundations-steps-digital-marketing-strategy {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.foundations-step-digital-marketing-strategy {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(6, 182, 212, 0.08);
  border-radius: 12px;
  transition: all 0.25s ease-in-out;
}

.foundations-step-digital-marketing-strategy:hover {
  background: rgba(6, 182, 212, 0.12);
  transform: translateX(8px);
}

.foundations-step-number-digital-marketing-strategy {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.foundations-step-content-digital-marketing-strategy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.foundations-step-title-digital-marketing-strategy {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
}

.foundations-step-text-digital-marketing-strategy {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

/* ============================================
   TOOLS SECTION - LIGHT THEME
   ============================================ */

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

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

.tools-text-block-digital-marketing-strategy {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.tools-title-digital-marketing-strategy {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.tools-description-digital-marketing-strategy {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.tools-list-digital-marketing-strategy {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tools-list-item-digital-marketing-strategy {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}

.tools-item-icon-digital-marketing-strategy {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 8px;
  font-size: 1.25rem;
}

.tools-item-text-digital-marketing-strategy {
  color: #334155;
  font-size: 0.9375rem;
  line-height: 1.6;
  padding-top: 0.5rem;
}

.tools-image-block-digital-marketing-strategy {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tools-image-digital-marketing-strategy {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

/* ============================================
   STRATEGY SECTION - DARK THEME
   ============================================ */

.strategy-section-digital-marketing-strategy {
  background: #1f2937;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategy-content-digital-marketing-strategy {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.strategy-text-block-digital-marketing-strategy {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

.strategy-description-digital-marketing-strategy {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.strategy-quote-digital-marketing-strategy {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #06b6d4;
  background: rgba(6, 182, 212, 0.08);
  margin: clamp(1rem, 2vw, 1.5rem) 0;
  border-radius: 4px;
}

.quote-text-digital-marketing-strategy {
  color: #f1f5f9;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.quote-author-digital-marketing-strategy {
  color: #94a3b8;
  font-size: 0.875rem;
  font-style: normal;
  display: block;
}

.strategy-image-block-digital-marketing-strategy {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.strategy-image-digital-marketing-strategy {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

/* ============================================
   FEATURES SECTION - LIGHT THEME
   ============================================ */

.features-section-digital-marketing-strategy {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.features-cards-digital-marketing-strategy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.features-card-digital-marketing-strategy {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease-in-out;
}

.features-card-digital-marketing-strategy:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.features-card-title-digital-marketing-strategy {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
}

.features-card-text-digital-marketing-strategy {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ============================================
   CONCLUSION SECTION - DARK THEME
   ============================================ */

.conclusion-section-digital-marketing-strategy {
  background: #111827;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-digital-marketing-strategy {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.conclusion-title-digital-marketing-strategy {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.conclusion-description-digital-marketing-strategy {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.conclusion-cta-digital-marketing-strategy {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

/* ============================================
   DISCLAIMER SECTION
   ============================================ */

.disclaimer-section-digital-marketing-strategy {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.disclaimer-content-digital-marketing-strategy {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-digital-marketing-strategy {
  color: #0f172a;
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-digital-marketing-strategy {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.disclaimer-text-digital-marketing-strategy:last-child {
  margin-bottom: 0;
}

/* ============================================
   RELATED SECTION
   ============================================ */

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

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

.related-cards-digital-marketing-strategy {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-digital-marketing-strategy {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease-in-out;
  background: #ffffff;
}

.related-card-digital-marketing-strategy:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-card-image-digital-marketing-strategy {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-card-img-digital-marketing-strategy {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-digital-marketing-strategy:hover .related-card-img-digital-marketing-strategy {
  transform: scale(1.05);
}

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

.related-card-title-digital-marketing-strategy {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-description-digital-marketing-strategy {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
  flex-grow: 1;
}

.btn-outline-digital-marketing-strategy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 2.5vw, 1.5rem);
  background: transparent;
  border: 2px solid #06b6d4;
  color: #06b6d4;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  transition: all 0.25s ease-in-out;
  text-decoration: none;
}

.btn-outline-digital-marketing-strategy:hover {
  background: #06b6d4;
  color: #000000;
  transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */

@media (max-width: 767px) {
  .hero-content-digital-marketing-strategy {
    flex-direction: column;
  }

  .hero-text-block-digital-marketing-strategy,
  .hero-image-block-digital-marketing-strategy {
    flex: 1 1 100%;
  }

  .hero-cta-digital-marketing-strategy {
    flex-direction: column;
  }

  .btn-primary-digital-marketing-strategy,
  .btn-secondary-digital-marketing-strategy {
    width: 100%;
  }

  .intro-content-digital-marketing-strategy {
    flex-direction: column;
  }

  .intro-text-block-digital-marketing-strategy,
  .intro-image-block-digital-marketing-strategy {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tools-content-digital-marketing-strategy {
    flex-direction: column;
  }

  .tools-text-block-digital-marketing-strategy,
  .tools-image-block-digital-marketing-strategy {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .strategy-content-digital-marketing-strategy {
    flex-direction: column;
  }

  .strategy-text-block-digital-marketing-strategy,
  .strategy-image-block-digital-marketing-strategy {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .features-card-digital-marketing-strategy {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-card-digital-marketing-strategy {
    flex: 1 1 100%;
    max-width: none;
  }

  .conclusion-cta-digital-marketing-strategy {
    flex-direction: column;
  }

  .btn-primary-digital-marketing-strategy,
  .btn-secondary-digital-marketing-strategy,
  .btn-outline-digital-marketing-strategy {
    width: 100%;
  }

  .hero-stats-digital-marketing-strategy {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .stat-item-digital-marketing-strategy {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 768px) {
  .meta-badge-digital-marketing-strategy {
    font-size: 0.9375rem;
  }

  .tools-list-item-digital-marketing-strategy {
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-stats-digital-marketing-strategy {
    gap: 4rem;
  }

  .stat-item-digital-marketing-strategy {
    flex: 0 1 auto;
  }
}

/* ============================================
   ACCESSIBILITY & PRINT
   ============================================ */

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

@media print {
  .hero-cta-digital-marketing-strategy,
  .conclusion-cta-digital-marketing-strategy {
    display: none;
  }
}

/* Post Page 3 Styles */
/* Main wrapper */
.main-project-management-methods {
  width: 100%;
  background: #ffffff;
}

/* ============================================
   HERO SECTION - DARK THEME
   ============================================ */

.hero-section-project-management-methods {
  background: #111827;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

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

.hero-title-project-management-methods {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.hero-meta-project-management-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.meta-badge-project-management-methods i {
  font-size: 1rem;
}

.hero-stats-project-management-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2rem;
}

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

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

.stat-label-project-management-methods {
  font-size: 0.875rem;
  color: #9ca3af;
}

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

.hero-image-project-management-methods {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

/* ============================================
   INTRODUCTION SECTION - LIGHT THEME
   ============================================ */

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

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

.introduction-text-project-management-methods {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-project-management-methods {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.introduction-description-project-management-methods {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: #374151;
  margin-bottom: 1rem;
}

.introduction-image-project-management-methods {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-img-project-management-methods {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

/* ============================================
   METHODOLOGIES SECTION - DARK THEME
   ============================================ */

.methodologies-section-project-management-methods {
  background: #1f2937;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.methodologies-header-project-management-methods {
  text-align: center;
  margin-bottom: 3rem;
}

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

.methodologies-title-project-management-methods {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.methodologies-subtitle-project-management-methods {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto;
}

.methodologies-steps-project-management-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.methodology-step-project-management-methods {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.5rem;
  background: rgba(6, 182, 212, 0.08);
  border-radius: var(--radius-lg);
  border-left: 4px solid #06b6d4;
}

.step-number-project-management-methods {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

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

.step-title-project-management-methods {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #ffffff;
}

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

/* ============================================
   TOOLS SECTION - LIGHT THEME
   ============================================ */

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

.tools-content-project-management-methods {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.tools-text-project-management-methods {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-title-project-management-methods {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.tools-description-project-management-methods {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: #374151;
  margin-bottom: 2rem;
}

.tools-list-project-management-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tool-item-project-management-methods {
  padding: 1rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  border-left: 4px solid #06b6d4;
}

.tool-name-project-management-methods {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.tool-info-project-management-methods {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.tools-image-project-management-methods {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-img-project-management-methods {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

/* ============================================
   KEY ELEMENTS SECTION - DARK THEME
   ============================================ */

.key-elements-section-project-management-methods {
  background: #111827;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.elements-header-project-management-methods {
  text-align: center;
  margin-bottom: 3rem;
}

.elements-title-project-management-methods {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.elements-cards-project-management-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.element-card-project-management-methods {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(6, 182, 212, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(6, 182, 212, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.element-card-project-management-methods:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(6, 182, 212, 0.15);
}

.card-icon-project-management-methods {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(6, 182, 212, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06b6d4;
  font-size: 1.5rem;
}

.card-title-project-management-methods {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.card-text-project-management-methods {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #cbd5e1;
}

/* ============================================
   BEST PRACTICES SECTION - LIGHT THEME
   ============================================ */

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

.practices-content-project-management-methods {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.practices-image-project-management-methods {
  flex: 1 1 50%;
  max-width: 50%;
}

.practices-img-project-management-methods {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

.practices-text-project-management-methods {
  flex: 1 1 50%;
  max-width: 50%;
}

.practices-title-project-management-methods {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.quote-block-project-management-methods {
  padding: 2rem 2.5rem;
  border-left: 4px solid #06b6d4;
  background: #f8fafc;
  margin: 1.5rem 0;
  border-radius: var(--radius-md);
}

.quote-text-project-management-methods {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.7;
  color: #0f172a;
  font-style: italic;
  margin-bottom: 1rem;
}

.quote-author-project-management-methods {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.practices-description-project-management-methods {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: #374151;
  margin-bottom: 1.5rem;
}

.practices-list-project-management-methods {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.practice-item-project-management-methods {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: #374151;
  padding-left: 1.5rem;
  position: relative;
}

.practice-item-project-management-methods:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: bold;
}

/* ============================================
   CONCLUSION SECTION - DARK THEME
   ============================================ */

.conclusion-section-project-management-methods {
  background: #1f2937;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-project-management-methods {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-project-management-methods {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-project-management-methods {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.conclusion-cta-project-management-methods {
  margin-top: 2rem;
}

.cta-button-project-management-methods {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #06b6d4;
  color: #0f172a;
  font-weight: 600;
  border-radius: var(--radius-lg);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button-project-management-methods:hover {
  background: #22d3ee;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(6, 182, 212, 0.3);
}

/* ============================================
   DISCLAIMER SECTION - LIGHT THEME
   ============================================ */

.disclaimer-section-project-management-methods {
  background: #f1f5f9;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-project-management-methods {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-md);
}

.disclaimer-title-project-management-methods {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-project-management-methods {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #374151;
}

/* ============================================
   RELATED SECTION - DARK THEME
   ============================================ */

.related-section-project-management-methods {
  background: #111827;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-project-management-methods {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-project-management-methods {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.related-subtitle-project-management-methods {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  color: #9ca3af;
}

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

.related-card-project-management-methods {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-project-management-methods:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(6, 182, 212, 0.2);
}

.related-card-image-project-management-methods {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

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

.related-card-title-project-management-methods {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.related-card-description-project-management-methods {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.related-card-link-project-management-methods {
  color: #06b6d4;
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.related-card-link-project-management-methods:hover {
  color: #22d3ee;
  text-decoration: underline;
}

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

@media (max-width: 768px) {
  .hero-content-project-management-methods,
  .introduction-content-project-management-methods,
  .tools-content-project-management-methods,
  .practices-content-project-management-methods {
    flex-direction: column;
  }

  .hero-text-block-project-management-methods,
  .hero-image-block-project-management-methods,
  .introduction-text-project-management-methods,
  .introduction-image-project-management-methods,
  .tools-text-project-management-methods,
  .tools-image-project-management-methods,
  .practices-image-project-management-methods,
  .practices-text-project-management-methods {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

  .methodology-step-project-management-methods {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-project-management-methods {
    min-width: auto;
  }

  .elements-cards-project-management-methods {
    gap: 1rem;
  }

  .element-card-project-management-methods {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-cards-project-management-methods {
    gap: 1.5rem;
  }

  .related-card-project-management-methods {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-stats-project-management-methods {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-item-project-management-methods {
    align-items: flex-start;
  }

  .hero-meta-project-management-methods {
    flex-direction: column;
    gap: 0.75rem;
  }

  .methodologies-steps-project-management-methods {
    gap: 1rem;
  }

  .methodology-step-project-management-methods {
    padding: 1rem;
  }

  .tools-list-project-management-methods {
    gap: 1rem;
  }

  .practices-list-project-management-methods {
    gap: 0.75rem;
  }
}

/* Post Page 4 Styles */
/* Main wrapper */
.main-data-analysis-decision-making {
  width: 100%;
}

/* ============================================
   HERO SECTION - DARK WITH CYAN ACCENTS
   ============================================ */

.hero-section-data-analysis-decision-making {
  background: #111827;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-section-data-analysis-decision-making .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.breadcrumbs-data-analysis-decision-making {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.breadcrumbs-data-analysis-decision-making a {
  color: #06b6d4;
  text-decoration: none;
}

.breadcrumbs-data-analysis-decision-making a:hover {
  color: #22d3ee;
  text-decoration: underline;
}

.breadcrumbs-data-analysis-decision-making span {
  color: #6b7280;
}

.hero-content-data-analysis-decision-making {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-data-analysis-decision-making {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-data-analysis-decision-making {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meta-badge-data-analysis-decision-making {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #cbd5e1;
}

.meta-badge-data-analysis-decision-making i {
  color: #06b6d4;
}

.hero-stats-data-analysis-decision-making {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2rem;
}

.stat-item-data-analysis-decision-making {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-data-analysis-decision-making {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #06b6d4;
  display: block;
  line-height: 1;
}

.stat-label-data-analysis-decision-making {
  font-size: 0.875rem;
  color: #9ca3af;
}

.hero-image-wrapper-data-analysis-decision-making {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-data-analysis-decision-making {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-content-data-analysis-decision-making {
    flex-direction: column;
  }

  .hero-text-wrapper-data-analysis-decision-making,
  .hero-image-wrapper-data-analysis-decision-making {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-data-analysis-decision-making {
    gap: 1.5rem;
  }
}

/* ============================================
   INTRO SECTION - LIGHT
   ============================================ */

.intro-section-data-analysis-decision-making {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-section-data-analysis-decision-making .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.intro-content-data-analysis-decision-making {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-block-data-analysis-decision-making {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-data-analysis-decision-making {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-data-analysis-decision-making {
  color: #4b5563;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-block-data-analysis-decision-making {
  flex: 1 1 50%;
  max-width: 50%;
}

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

@media (max-width: 768px) {
  .intro-content-data-analysis-decision-making {
    flex-direction: column;
  }

  .intro-text-block-data-analysis-decision-making,
  .intro-image-block-data-analysis-decision-making {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ============================================
   METHODOLOGY SECTION - DARK WITH STEPS
   ============================================ */

.methodology-section-data-analysis-decision-making {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.methodology-section-data-analysis-decision-making .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.methodology-header-data-analysis-decision-making {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-data-analysis-decision-making {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.methodology-title-data-analysis-decision-making {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.methodology-subtitle-data-analysis-decision-making {
  color: #9ca3af;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.methodology-steps-data-analysis-decision-making {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-data-analysis-decision-making {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
}

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

.step-content-data-analysis-decision-making {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-data-analysis-decision-making {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
}

.step-text-data-analysis-decision-making {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .step-item-data-analysis-decision-making {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-data-analysis-decision-making {
    min-width: auto;
  }
}

/* ============================================
   TOOLS SECTION - LIGHT
   ============================================ */

.tools-section-data-analysis-decision-making {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-section-data-analysis-decision-making .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.tools-wrapper-data-analysis-decision-making {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.tools-text-block-data-analysis-decision-making {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-title-data-analysis-decision-making {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.tools-description-data-analysis-decision-making {
  color: #4b5563;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tools-list-data-analysis-decision-making {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tool-item-data-analysis-decision-making {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.tool-icon-data-analysis-decision-making {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 10px;
  color: #06b6d4;
  font-size: 1.25rem;
}

.tool-details-data-analysis-decision-making {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tool-name-data-analysis-decision-making {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.tool-info-data-analysis-decision-making {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
}

.tools-image-block-data-analysis-decision-making {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-image-block-data-analysis-decision-making img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .tools-wrapper-data-analysis-decision-making {
    flex-direction: column;
  }

  .tools-text-block-data-analysis-decision-making,
  .tools-image-block-data-analysis-decision-making {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ============================================
   INSIGHTS SECTION - DARK WITH CARDS
   ============================================ */

.insights-section-data-analysis-decision-making {
  background: #111827;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.insights-section-data-analysis-decision-making .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.insights-header-data-analysis-decision-making {
  text-align: center;
  margin-bottom: 3rem;
}

.insights-title-data-analysis-decision-making {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.insights-cards-data-analysis-decision-making {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.insights-card-data-analysis-decision-making {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(6, 182, 212, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insights-card-data-analysis-decision-making:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
}

.insights-card-icon-data-analysis-decision-making {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.2);
  border-radius: 10px;
  color: #06b6d4;
  font-size: 1.5rem;
}

.insights-card-title-data-analysis-decision-making {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.insights-card-text-data-analysis-decision-making {
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .insights-card-data-analysis-decision-making {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ============================================
   PRACTICE SECTION - LIGHT
   ============================================ */

.practice-section-data-analysis-decision-making {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-section-data-analysis-decision-making .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.practice-wrapper-data-analysis-decision-making {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.practice-image-block-data-analysis-decision-making {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-image-block-data-analysis-decision-making img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.practice-text-block-data-analysis-decision-making {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-data-analysis-decision-making {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.practice-description-data-analysis-decision-making {
  color: #4b5563;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.featured-quote-data-analysis-decision-making {
  padding: 2rem 2.5rem;
  border-left: 4px solid #06b6d4;
  background: #f8fafc;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

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

.quote-author-data-analysis-decision-making {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

@media (max-width: 768px) {
  .practice-wrapper-data-analysis-decision-making {
    flex-direction: column;
  }

  .practice-image-block-data-analysis-decision-making,
  .practice-text-block-data-analysis-decision-making {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ============================================
   OUTCOMES SECTION - DARK
   ============================================ */

.outcomes-section-data-analysis-decision-making {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.outcomes-section-data-analysis-decision-making .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.outcomes-header-data-analysis-decision-making {
  text-align: center;
  margin-bottom: 3rem;
}

.outcomes-title-data-analysis-decision-making {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.outcomes-list-data-analysis-decision-making {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.outcome-item-data-analysis-decision-making {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
}

.outcome-icon-data-analysis-decision-making {
  font-size: 1.75rem;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 30px;
  text-align: center;
}

.outcome-text-data-analysis-decision-making {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.outcome-name-data-analysis-decision-making {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.outcome-detail-data-analysis-decision-making {
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================
   CTA SECTION - DARK WITH GRADIENT
   ============================================ */

.cta-section-data-analysis-decision-making {
  background: #111827;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-section-data-analysis-decision-making .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.cta-box-data-analysis-decision-making {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
}

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

.cta-description-data-analysis-decision-making {
  color: #f0f9fa;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button-data-analysis-decision-making {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #06b6d4;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-data-analysis-decision-making:hover {
  background: #f0f9fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* ============================================
   RELATED SECTION - LIGHT
   ============================================ */

.related-section-data-analysis-decision-making {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-section-data-analysis-decision-making .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.related-header-data-analysis-decision-making {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-data-analysis-decision-making {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.related-subtitle-data-analysis-decision-making {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
}

.related-cards-data-analysis-decision-making {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

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

.related-card-data-analysis-decision-making:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.related-card-image-data-analysis-decision-making {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.related-card-content-data-analysis-decision-making {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

.related-card-title-data-analysis-decision-making {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-data-analysis-decision-making {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.7;
  flex-grow: 1;
}

.related-card-meta-data-analysis-decision-making {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.related-meta-item-data-analysis-decision-making {
  font-size: 0.875rem;
  color: #64748b;
}

@media (max-width: 768px) {
  .related-card-data-analysis-decision-making {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ============================================
   DISCLAIMER SECTION - DARK
   ============================================ */

.disclaimer-section-data-analysis-decision-making {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-section-data-analysis-decision-making .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.disclaimer-box-data-analysis-decision-making {
  background: rgba(6, 182, 212, 0.08);
  border-left: 4px solid #06b6d4;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-data-analysis-decision-making {
  color: #06b6d4;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.disclaimer-text-data-analysis-decision-making {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

@media (min-width: 768px) {
  .hero-section-data-analysis-decision-making,
  .intro-section-data-analysis-decision-making,
  .methodology-section-data-analysis-decision-making,
  .tools-section-data-analysis-decision-making,
  .insights-section-data-analysis-decision-making,
  .practice-section-data-analysis-decision-making,
  .outcomes-section-data-analysis-decision-making,
  .cta-section-data-analysis-decision-making,
  .related-section-data-analysis-decision-making,
  .disclaimer-section-data-analysis-decision-making {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-data-analysis-decision-making,
  .intro-section-data-analysis-decision-making,
  .methodology-section-data-analysis-decision-making,
  .tools-section-data-analysis-decision-making,
  .insights-section-data-analysis-decision-making,
  .practice-section-data-analysis-decision-making,
  .outcomes-section-data-analysis-decision-making,
  .cta-section-data-analysis-decision-making,
  .related-section-data-analysis-decision-making,
  .disclaimer-section-data-analysis-decision-making {
    padding: 6rem 0;
  }
}

/* ============================================
   ACCESSIBILITY & ANIMATIONS
   ============================================ */

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

/* Post Page 5 Styles */
/* COMPONENT WRAPPER */
.main-leadership-team-development {
  width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section-leadership-team-development {
  background: #111827;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .hero-section-leadership-team-development {
    padding: clamp(3.5rem, 8vw, 5rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-leadership-team-development {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }
}

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

.breadcrumbs-leadership-team-development a {
  color: #06b6d4;
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-leadership-team-development a:hover {
  color: #22d3ee;
  text-decoration: underline;
}

.breadcrumbs-leadership-team-development span {
  color: #6b7280;
}

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

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

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

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

.hero-subtitle-leadership-team-development {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

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

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

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

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

.stat-label-leadership-team-development {
  font-size: 0.875rem;
  color: #9ca3af;
}

.hero-image-leadership-team-development {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .hero-content-leadership-team-development {
    flex-direction: column;
    gap: 2rem;
  }

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

  .hero-stats-leadership-team-development {
    gap: 1.5rem;
  }
}

/* ============================================
   INTRO SECTION
   ============================================ */

.intro-section-leadership-team-development {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .intro-section-leadership-team-development {
    padding: clamp(3.5rem, 8vw, 5rem) 0;
  }
}

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

.intro-text-block-leadership-team-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-block-leadership-team-development {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-paragraph-leadership-team-development {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-leadership-team-development {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .intro-content-leadership-team-development {
    flex-direction: column;
    gap: 2rem;
  }

  .intro-text-block-leadership-team-development,
  .intro-image-block-leadership-team-development {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ============================================
   CONTENT SECTION ONE
   ============================================ */

.content-section-one-leadership-team-development {
  background: #1f2937;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .content-section-one-leadership-team-development {
    padding: clamp(3.5rem, 8vw, 5rem) 0;
  }
}

.section-header-leadership-team-development {
  text-align: center;
  margin-bottom: 3rem;
}

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

.section-title-leadership-team-development {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle-leadership-team-development {
  color: #9ca3af;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.content-text-one-leadership-team-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-leadership-team-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-subtitle-one-leadership-team-development {
  color: #f3f4f6;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.content-text-paragraph-leadership-team-development {
  color: #d1d5db;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-image-leadership-team-development {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .content-wrapper-one-leadership-team-development {
    flex-direction: column;
    gap: 2rem;
  }

  .content-text-one-leadership-team-development,
  .content-image-one-leadership-team-development {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process-section-leadership-team-development {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .process-section-leadership-team-development {
    padding: clamp(3.5rem, 8vw, 5rem) 0;
  }
}

.process-steps-leadership-team-development {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.process-step-leadership-team-development {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
}

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

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

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

.process-step-text-leadership-team-development {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-step-leadership-team-development {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .process-step-number-leadership-team-development {
    font-size: 2rem;
  }
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section-leadership-team-development {
  background: #111827;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .features-section-leadership-team-development {
    padding: clamp(3.5rem, 8vw, 5rem) 0;
  }
}

.features-cards-leadership-team-development {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2.5rem;
}

.features-card-leadership-team-development {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(6, 182, 212, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-card-leadership-team-development:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(6, 182, 212, 0.15);
}

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

.features-card-title-leadership-team-development {
  color: #f3f4f6;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
}

.features-card-text-leadership-team-development {
  color: #d1d5db;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features-card-leadership-team-development {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ============================================
   QUOTE SECTION
   ============================================ */

.quote-section-leadership-team-development {
  background: #1f2937;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.quote-text-leadership-team-development {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #f3f4f6;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.quote-author-leadership-team-development {
  font-size: 0.875rem;
  color: #9ca3af;
  font-style: normal;
  font-weight: 500;
}

/* ============================================
   CONTENT SECTION TWO
   ============================================ */

.content-section-two-leadership-team-development {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .content-section-two-leadership-team-development {
    padding: clamp(3.5rem, 8vw, 5rem) 0;
  }
}

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

.content-image-two-leadership-team-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-text-two-leadership-team-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-subtitle-two-leadership-team-development {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .content-wrapper-two-leadership-team-development {
    flex-direction: column;
    gap: 2rem;
  }

  .content-image-two-leadership-team-development,
  .content-text-two-leadership-team-development {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ============================================
   HIGHLIGHT SECTION
   ============================================ */

.highlight-section-leadership-team-development {
  background: #111827;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .highlight-section-leadership-team-development {
    padding: clamp(3.5rem, 8vw, 5rem) 0;
  }
}

.highlight-box-leadership-team-development {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  padding: clamp(2rem, 4vw, 3rem);
}

.highlight-title-leadership-team-development {
  color: #06b6d4;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.highlight-list-leadership-team-development {
  list-style: none;
}

.highlight-item-leadership-team-development {
  color: #d1d5db;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.highlight-item-leadership-team-development:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: 800;
}

/* ============================================
   CONCLUSION SECTION
   ============================================ */

.conclusion-section-leadership-team-development {
  background: #1f2937;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .conclusion-section-leadership-team-development {
    padding: clamp(3.5rem, 8vw, 5rem) 0;
  }
}

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

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

.conclusion-text-leadership-team-development {
  color: #d1d5db;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta-section-leadership-team-development {
  margin-top: 2.5rem;
}

.cta-button-leadership-team-development {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  background: #06b6d4;
  color: #0f172a;
  border-radius: 8px;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
}

.cta-button-leadership-team-development:hover {
  background: #22d3ee;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(6, 182, 212, 0.3);
}

/* ============================================
   DISCLAIMER SECTION
   ============================================ */

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

.disclaimer-box-leadership-team-development {
  background: #f8fafc;
  border-left: 4px solid #64748b;
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-leadership-team-development {
  color: #0f172a;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-leadership-team-development {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
}

/* ============================================
   RELATED SECTION
   ============================================ */

.related-section-leadership-team-development {
  background: #111827;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .related-section-leadership-team-development {
    padding: clamp(3.5rem, 8vw, 5rem) 0;
  }
}

.related-cards-leadership-team-development {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2.5rem;
}

.related-card-leadership-team-development {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: #1f2937;
  border: 1px solid rgba(6, 182, 212, 0.15);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-leadership-team-development:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(6, 182, 212, 0.2);
}

.related-card-image-leadership-team-development {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-content-leadership-team-development {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-leadership-team-development {
  color: #f3f4f6;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-description-leadership-team-development {
  color: #d1d5db;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  flex: 1;
}

.related-card-meta-leadership-team-development {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-meta-item-leadership-team-development {
  color: #9ca3af;
  font-size: 0.8125rem;
  font-weight: 500;
}

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

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

@media (max-width: 768px) {
  .section-header-leadership-team-development {
    margin-bottom: 2rem;
  }

  .section-tag-leadership-team-development {
    padding: 0.25rem 0.75rem;
    font-size: 0.8125rem;
  }
}

/* About Page Styles */
:root {
  --color-bg-dark-primary: #111827;
  --color-bg-dark-secondary: #1f2937;
  --color-bg-dark-tertiary: #374151;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-card-dark: rgba(6, 182, 212, 0.08);
  --color-bg-card-light: #ffffff;
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #9ca3af;
  --color-text-dark-muted: #6b7280;
  --color-text-light-primary: #111827;
  --color-text-light-secondary: #4b5563;
  --color-text-light-muted: #9ca3af;
  --color-primary: #06b6d4;
  --color-primary-hover: #22d3ee;
  --color-secondary: #0891b2;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

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

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

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

.educational-platform-about {
  width: 100%;
}

.hero-section-about {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-about::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-content-about {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: #cbd5e1;
  line-height: 1.5;
  max-width: 700px;
}

.hero-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(6, 182, 212, 0.3);
}

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

.stat-number-about {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-about {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  margin-top: clamp(2rem, 4vw, 3rem);
  display: block;
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.15);
}

@media (max-width: 768px) {
  .hero-stats-about {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.mission-section-about {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.mission-section-about::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
  opacity: 0.08;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.mission-content-about {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.section-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
}

.mission-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
}

.mission-description-about {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  max-width: 700px;
}

.mission-visual-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  margin-top: clamp(1.5rem, 3vw, 2rem);
  display: block;
  box-shadow: var(--shadow-md);
}

.methodology-section-about {
  background: var(--color-bg-dark-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.methodology-section-about::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -15%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  opacity: 0.08;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.methodology-content-about {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.methodology-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.methodology-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.methodology-intro-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.methodology-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.step-item-about {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.step-item-about:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(6, 182, 212, 0.4);
  transform: translateX(8px);
}

.step-number-about {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

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

.step-title-about {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
}

.step-description-about {
  font-size: clamp(0.875rem, 1.2vw, 0.9375rem);
  color: #9ca3af;
  line-height: 1.6;
}

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

  .step-number-about {
    margin-bottom: 0.5rem;
  }
}

.advantages-section-about {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.advantages-section-about::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  opacity: 0.05;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.advantages-content-about {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.advantages-header-about {
  text-align: center;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.advantages-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.advantages-subtitle-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.advantages-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.advantage-card-about {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-primary);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.advantage-card-about:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.advantage-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 1.75rem;
  flex-shrink: 0;
}

.advantage-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #111827;
}

.advantage-text-about {
  font-size: clamp(0.875rem, 1.2vw, 0.9375rem);
  color: #64748b;
  line-height: 1.7;
}

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

.story-section-about {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.story-section-about::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
  opacity: 0.07;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.story-content-about {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.story-intro-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 750px;
}

.story-subtitle-about {
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.story-title-about {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.story-text-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
}

.story-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  margin-top: clamp(1.5rem, 3vw, 2rem);
  display: block;
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.2);
}

.featured-quote-about {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(6, 182, 212, 0.1);
  border-radius: var(--radius-md);
}

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

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

.disclaimer-section-about {
  background: var(--color-bg-dark-tertiary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-about {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
}

.disclaimer-header-about {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.disclaimer-icon-about {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.2);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.disclaimer-title-about {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
}

.disclaimer-text-about {
  font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-left: 0;
}

.disclaimer-text-about p {
  margin-bottom: 0.75rem;
}

.disclaimer-text-about p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .hero-stats-about {
    gap: clamp(2.5rem, 6vw, 4rem);
  }

  .methodology-steps-about {
    gap: clamp(1.25rem, 2.5vw, 2rem);
  }

  .advantages-cards-about {
    gap: clamp(1.5rem, 3.5vw, 2.5rem);
  }
}

@media (min-width: 1024px) {
  .advantage-card-about {
    flex: 1 1 320px;
    max-width: 380px;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

i {
  font-style: normal;
}

/* Privacy Page Styles */
.legal-docs {
  font-family: var(--font-primary);
  background: var(--color-bg-light-primary);
}

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

/* Hero/Title Section */
.legal-docs-hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 6vw, 4rem) 0;
  background: var(--color-bg-light-secondary);
  overflow: hidden;
}

.legal-docs-hero-content h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-hero-content .updated-date {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-muted);
  font-style: italic;
}

/* Main Content Section */
.legal-docs-content {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-light-primary);
  overflow: hidden;
}

.legal-docs-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

/* Section Styling */
.legal-docs-section {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.legal-docs-section h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-section ul {
  margin-left: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-docs-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-light-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-section li::marker {
  color: var(--color-primary);
}

/* Contact Section */
.legal-docs-contact {
  padding: clamp(2.5rem, 6vw, 4rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
  margin-top: clamp(2rem, 5vw, 3rem);
  overflow: hidden;
}

.legal-docs-contact h2 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  line-height: 1.3;
}

.legal-docs-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.legal-docs-contact-label {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 500;
  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);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .legal-docs-hero {
    padding: clamp(4rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4rem) 0;
  }

  .legal-docs-content {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .legal-docs-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 3rem);
    align-items: start;
  }

  .legal-docs-contact h2 {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .legal-docs-hero {
    padding: 6rem 0 4rem 0;
  }

  .legal-docs-content {
    padding: 6rem 0;
  }
}

/* Accessibility */
.legal-docs-section a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.legal-docs-section a:hover {
  color: var(--color-primary-hover);
}

/* Typography consistency */
.legal-docs-section strong {
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.legal-docs-section em {
  font-style: italic;
  color: var(--color-text-light-secondary);
}

/* Thank You Page Styles */
.thank-page {
  width: 100%;
}

.thank-section {
  background: var(--color-bg-dark-primary);
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 600px;
  margin: 0 auto;
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px, 15vw, 120px);
  height: clamp(80px, 15vw, 120px);
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  animation: pulse-icon 2s ease-in-out infinite;
}

.thank-icon i {
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--color-success);
}

@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.thank-section h1 {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-lead {
  color: var(--color-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  line-height: 1.4;
}

.thank-description {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-benefits {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
  width: 100%;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(6, 182, 212, 0.08);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-primary);
}

.benefit-item i {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-primary);
}

.benefit-item p {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.5;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  text-align: center;
}

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

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

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

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    min-height: 100vh;
  }

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

  .thank-benefits {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 100%;
  }

  .benefit-item {
    flex: 0 1 calc(50% - 0.75rem);
    max-width: 280px;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: 6rem 0;
  }

  .thank-content {
    gap: 3rem;
  }

  .benefit-item {
    flex: 0 1 calc(33.333% - 1rem);
  }
}

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

/* 404 Page Styles */
.main.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  background: var(--color-bg-dark-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  position: relative;
}

/* Error Code Styling */
.error-code {
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 900;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -2px;
  margin: 0;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Error Icon */
.error-icon {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--color-primary);
  opacity: 0.8;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Error Title */
.error-title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin: 0;
  letter-spacing: -0.5px;
}

/* Error Messages */
.error-message {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  max-width: 500px;
  margin: 0;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.error-subtext {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-dark-muted);
  max-width: 500px;
  margin: 0;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Button Styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  gap: 0.5rem;
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(6, 182, 212, 0.3);
}

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

/* Decorative Elements */
.error-decoration {
  position: absolute;
  font-size: 1.5rem;
  color: var(--color-primary);
  opacity: 0.1;
  pointer-events: none;
}

.error-decoration-top {
  top: clamp(1rem, 5vw, 3rem);
  left: clamp(1rem, 8vw, 4rem);
  animation: float-decoration 8s ease-in-out infinite;
}

.error-decoration-bottom {
  bottom: clamp(1rem, 5vw, 3rem);
  right: clamp(1rem, 8vw, 4rem);
  animation: float-decoration 10s ease-in-out infinite reverse;
}

@keyframes float-decoration {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-15px) translateX(10px);
  }
  50% {
    transform: translateY(-30px) translateX(0px);
  }
  75% {
    transform: translateY(-15px) translateX(-10px);
  }
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .error-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    min-height: 100vh;
  }

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

  @keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-30px);
    }
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .error-content {
    gap: clamp(2.5rem, 6vw, 4rem);
  }

  .btn-primary:hover {
    box-shadow: 0 12px 24px rgba(6, 182, 212, 0.4);
  }
}

@media (min-width: 1440px) {
  .error-decoration-top {
    top: 3rem;
    left: 4rem;
  }

  .error-decoration-bottom {
    bottom: 3rem;
    right: 4rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .error-code,
  .error-icon,
  .error-decoration-top,
  .error-decoration-bottom,
  .btn-primary {
    animation: none;
    transform: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

/* Dark mode compatibility */
@media (prefers-color-scheme: dark) {
  .error-section {
    background: var(--color-bg-dark-primary);
  }
}