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

:root {
  /* LIGHT THEME PALETTE L3 - SOFT GRAY + GREEN */
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;
  
  /* Text colors */
  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  
  /* Accent colors */
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-secondary: #10b981;
  --color-accent-light: #d1fae5;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

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

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

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.15;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
}

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

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

p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

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

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

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

/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  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);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

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

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

.btn-secondary {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--color-accent-light);
}

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

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

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

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

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

/* Grid layouts */
.grid {
  display: grid;
  gap: clamp(1rem, 3vw, 2.5rem);
}

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

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

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

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

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

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

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

/* Icon styles */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-primary);
}

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

.icon-md {
  font-size: 2rem;
}

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

/* Responsive utilities */
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
}

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

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

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

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

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

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

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

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}

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

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

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

/* Selection styling */
::selection {
  background: var(--color-primary);
  color: #ffffff;
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  body {
    background: #ffffff;
  }
  
  .no-print {
    display: none;
  }
}
/* Font Awesome Icons */
  @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');

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

  /* Header Component */
  .header-learn-portal {
    position: static;
    background: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-accent-light);
    padding: 1rem 0;
    z-index: 1000;
    width: 100%;
  }

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

  /* Logo/Brand Section */
  .header-learn-portal-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
    flex-shrink: 0;
    transition: opacity 300ms ease;
  }

  .header-learn-portal-brand:hover {
    opacity: 0.8;
  }

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

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

  /* Desktop Navigation */
  .header-learn-portal-desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
    flex: 1;
    margin-left: 3rem;
  }

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

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

  .header-learn-portal-nav-link:hover {
    color: var(--color-primary);
  }

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

  /* CTA Button */
  .header-learn-portal-cta-button {
    display: none;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 300ms ease;
    white-space: nowrap;
  }

  .header-learn-portal-cta-button:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

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

  /* Mobile Toggle Button */
  .header-learn-portal-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
  }

  .header-learn-portal-hamburger {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 1px;
    transition: all 300ms ease;
  }

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

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

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

  /* Mobile Menu */
  .header-learn-portal-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-secondary);
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 300ms ease;
    overflow-y: auto;
  }

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

  .header-learn-portal-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-accent-light);
  }

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

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

  .header-learn-portal-mobile-close:hover {
    color: var(--color-primary);
  }

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

  .header-learn-portal-mobile-link {
    padding: 1rem 1.5rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-bottom: 1px solid var(--color-accent-light);
    transition: all 300ms ease;
  }

  .header-learn-portal-mobile-link:hover {
    background: var(--color-bg-tertiary);
    color: var(--color-primary);
    padding-left: 2rem;
  }

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

  .header-learn-portal-mobile-cta:active {
    background: var(--color-primary-hover);
  }

  /* Tablet - Show Desktop Nav */
  @media (min-width: 768px) {
    .header-learn-portal-desktop-nav {
      display: flex;
    }

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

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

    .header-learn-portal-mobile-menu {
      display: none !important;
    }

    .header-learn-portal-logo-text {
      font-size: 1.25rem;
    }

    .header-learn-portal-nav-link {
      font-size: 0.875rem;
    }

    .header-learn-portal-cta-button {
      padding: 0.75rem 1.75rem;
      font-size: 0.875rem;
    }
  }

  /* Desktop - Larger spacing */
  @media (min-width: 1024px) {
    .header-learn-portal {
      padding: 1.25rem 0;
    }

    .header-learn-portal-desktop-nav {
      gap: 2.5rem;
    }

    .header-learn-portal-nav-link {
      font-size: 0.9375rem;
    }

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

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

  /* Focus States */
  .header-learn-portal-nav-link:focus-visible,
  .header-learn-portal-cta-button:focus-visible,
  .header-learn-portal-mobile-link:focus-visible,
  .header-learn-portal-mobile-cta:focus-visible,
  .header-learn-portal-mobile-toggle:focus-visible,
  .header-learn-portal-mobile-close:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }

  /* Reduced Motion */
  @media (prefers-reduced-motion: reduce) {
    .header-learn-portal-nav-link,
    .header-learn-portal-cta-button,
    .header-learn-portal-mobile-link,
    .header-learn-portal-mobile-cta,
    .header-learn-portal-hamburger,
    .header-learn-portal-brand,
    .header-learn-portal-mobile-menu {
      transition: none;
    }
  }

    .learn-hub-index {
  width: 100%;
}

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

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

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

.hero-ambient-glow-index {
  position: absolute;
  top: 10%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(34, 197, 94, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

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

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

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

.hero-line-element-index {
  position: absolute;
  top: 30%;
  left: 20%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

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

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

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

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

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

.hero-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

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

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

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

.btn-secondary:hover {
  background: #d1fae5;
  transform: translateY(-3px);
}

@media (min-width: 768px) {
  .hero-section-index {
    padding: 6rem 0;
  }
  
  .hero-buttons-index {
    gap: 1.5rem;
  }
}

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

.about-organic-form-index {
  position: absolute;
  top: 20%;
  right: -100px;
  width: 300px;
  height: 350px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

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

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

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

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

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

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

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

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

.process-pulse-accent-index {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(5, 150, 105, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.process-glow-corner-index {
  position: absolute;
  bottom: 10%;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(34, 197, 94, 0.06);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

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

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

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

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

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

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

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

.process-step-title-index {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

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

/* FEATURES SECTION */
.features-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
}

.features-mesh-gradient-index {
  position: absolute;
  top: 0;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.features-corner-glow-1-index {
  position: absolute;
  bottom: 20%;
  left: -100px;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.features-corner-glow-2-index {
  position: absolute;
  top: 30%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(34, 197, 94, 0.07);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.features-accent-shape-index {
  position: absolute;
  bottom: 5%;
  left: 10%;
  width: 300px;
  height: 250px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
  z-index: 1;
  pointer-events: none;
}

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

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

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

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

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

.features-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: rgba(5, 150, 105, 0.2);
}

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

.features-card-title-index {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

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

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

/* PROGRAMS SECTION */
.programs-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f3f4f6;
}

.programs-shape-accent-index {
  position: absolute;
  top: 10%;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(34, 197, 94, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.programs-glow-element-index {
  position: absolute;
  bottom: 15%;
  right: -100px;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.07);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.programs-line-decoration-index {
  position: absolute;
  top: 25%;
  right: 20%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

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

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

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

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

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

.programs-card-image-index {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.programs-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.programs-card-title-index {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

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

.programs-card-index .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.programs-cta-index {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}

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

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

.testimonial-floating-card-index {
  position: absolute;
  top: 15%;
  right: -60px;
  width: 200px;
  height: 150px;
  background: rgba(5, 150, 105, 0.04);
  border: 1px solid rgba(5, 150, 105, 0.1);
  border-radius: 12px;
  transform: rotate(12deg);
  z-index: 1;
  pointer-events: none;
}

.testimonial-accent-glow-index {
  position: absolute;
  bottom: 10%;
  left: -80px;
  width: 250px;
  height: 250px;
  background: rgba(34, 197, 94, 0.06);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.testimonial-content-index {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-quote-index {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #059669;
  background: #f9fafb;
  border-radius: 8px;
  margin: 0;
}

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

.testimonial-cite-index {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  display: block;
  font-weight: 500;
}

/* VALUES SECTION */
.values-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f3f4f6;
}

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

.values-shape-2-index {
  position: absolute;
  bottom: 10%;
  left: -80px;
  width: 250px;
  height: 250px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.values-glow-center-index {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

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

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

.values-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
}

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

.values-item-index {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
}

.values-item-number-index {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.values-item-title-index {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

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

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

.contact-gradient-field-index {
  position: absolute;
  top: 0;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.contact-accent-corner-index {
  position: absolute;
  bottom: 5%;
  left: -80px;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.07);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

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

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

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

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

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

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

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

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

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

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

.contact-submit-index {
  width: 100%;
  padding: 1rem 2rem;
  background: #059669;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0.5rem;
}

.contact-submit-index:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.2);
}

.contact-info-block-index {
  flex: 1 1 350px;
  min-width: 300px;
}

.contact-info-title-index {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

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

.contact-faq-question-index {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

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

@media (max-width: 768px) {
  .contact-form-wrapper-index,
  .contact-info-block-index {
    flex: 1 1 100%;
  }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1rem;
  background: #1e293b;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

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

.cookie-banner-text {
  color: #e2e8f0;
  margin: 0;
  font-size: 0.875rem;
  flex: 1;
  min-width: 250px;
  text-align: center;
}

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

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

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

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

.cookie-btn-decline {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(226, 232, 240, 0.3);
}

.cookie-btn-decline:hover {
  border-color: rgba(226, 232, 240, 0.6);
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .hero-section-index {
    padding: 7rem 0;
  }
  
  .about-section-index {
    padding: 5rem 0;
  }
  
  .process-section-index {
    padding: 5rem 0;
  }
  
  .features-section-index {
    padding: 5rem 0;
  }
  
  .programs-section-index {
    padding: 5rem 0;
  }
  
  .testimonial-section-index {
    padding: 5rem 0;
  }
  
  .values-section-index {
    padding: 5rem 0;
  }
  
  .contact-section-index {
    padding: 5rem 0;
  }
  
  .cookie-banner {
    padding: 1.25rem 2rem;
  }
  
  .cookie-banner-text {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .hero-section-index {
    padding: 8rem 0;
  }
  
  .about-section-index,
  .process-section-index,
  .features-section-index,
  .programs-section-index,
  .testimonial-section-index,
  .values-section-index,
  .contact-section-index {
    padding: 6rem 0;
  }
}

/* FOCUS STATES */
.btn:focus-visible {
  outline: 2px solid #059669;
  outline-offset: 3px;
}

input:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 2px solid #059669;
  outline-offset: 2px;
}

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

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

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

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

.footer-about-block {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

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

.footer-nav-block {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-nav-title,
.footer-contact-title,
.footer-legal-title {
  font-size: clamp(1.0625rem, 2vw, 1.125rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  font-family: var(--font-primary);
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-link {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

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

.footer-contact-block {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

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

.footer-contact-label {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: inherit;
}

.footer-contact-value {
  color: var(--color-text-secondary);
  font-size: inherit;
}

.footer-legal-block {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-legal-link {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

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

.footer-divider {
  height: 1px;
  background: var(--color-accent-light);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

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

.footer-copyright {
  font-size: clamp(0.8125rem, 1vw, 0.875rem);
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .footer-content {
    gap: clamp(1.5rem, 4vw, 2rem);
  }

  .footer-about-block,
  .footer-nav-block,
  .footer-contact-block,
  .footer-legal-block {
    flex: 1 1 100%;
    max-width: none;
  }

  .footer-about-block {
    margin-bottom: 0.5rem;
  }

  .footer-nav-list,
  .footer-legal-list {
    gap: 0.625rem;
  }

  .footer-contact-info {
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(1.5rem, 3vw, 2rem) 0;
  }

  .footer-content {
    gap: clamp(1.25rem, 3vw, 1.75rem);
  }

  .footer-about-text {
    font-size: 0.8125rem;
  }

  .footer-nav-title,
  .footer-contact-title,
  .footer-legal-title {
    font-size: 1rem;
  }

  .footer-nav-link,
  .footer-legal-link {
    font-size: 0.8125rem;
  }

  .footer-contact-item {
    font-size: 0.8125rem;
  }

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

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

/* Category Page Styles */
.category-page-online-education {
  width: 100%;
}

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

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

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

.hero-deco-shape-1 {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-deco-shape-2 {
  position: absolute;
  bottom: 5%;
  right: 8%;
  width: 150px;
  height: 150px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-deco-accent-line {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.15), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-content-online-education {
  position: relative;
  z-index: 10;
}

.hero-text-block-online-education {
  max-width: 700px;
}

.hero-title-online-education {
  color: #111827;
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-subtitle-online-education {
  color: #059669;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-description-online-education {
  color: #4b5563;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

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

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

.stat-label-online-education {
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 500;
}

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

.hero-buttons-online-education .btn {
  font-size: clamp(0.875rem, 1vw, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
}

@media (min-width: 768px) {
  .hero-section-online-education {
    padding: 5rem 0;
  }
}

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

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

.posts-deco-shape-1 {
  position: absolute;
  top: 15%;
  left: -120px;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.posts-deco-gradient-field {
  position: absolute;
  bottom: -50px;
  right: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

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

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

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

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

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

.card-online-education {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-online-education:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

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

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

.card-description-online-education {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-online-education {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

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

.meta-badge-online-education i {
  font-size: 0.875rem;
}

.card-link-online-education {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #059669;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.card-link-online-education:hover {
  color: #047857;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .posts-section-online-education {
    padding: 5rem 0;
  }
}

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

/* ==================== LEARNING PATH SECTION ==================== */
.learning-path-section-online-education {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.learning-deco-shape-1 {
  position: absolute;
  top: -80px;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(5, 150, 105, 0.04);
  border-radius: 45% 55% 35% 65% / 55% 45% 65% 35%;
  z-index: 1;
  pointer-events: none;
}

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

.learning-header-online-education {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
  position: relative;
  z-index: 10;
}

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

.learning-title-online-education {
  color: #111827;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}

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

.learning-step-online-education {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: #f3f4f6;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.learning-step-online-education:hover {
  background: #e5e7eb;
  transform: translateX(8px);
}

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

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

.learning-step-title-online-education {
  color: #111827;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
}

.learning-step-text-online-education {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

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

@media (min-width: 768px) {
  .learning-path-section-online-education {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .learning-path-section-online-education {
    padding: 6rem 0;
  }
}

/* ==================== BENEFITS SECTION ==================== */
.benefits-section-online-education {
  position: relative;
  overflow: hidden;
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.benefits-deco-mesh-1 {
  position: absolute;
  top: 10%;
  left: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

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

.benefits-deco-shape-accent {
  position: absolute;
  top: 40%;
  right: 5%;
  width: 180px;
  height: 180px;
  background: rgba(5, 150, 105, 0.03);
  border-radius: 35% 65% 45% 55% / 65% 35% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

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

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

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

.benefits-subtitle-online-education {
  color: #4b5563;
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.benefits-card-online-education {
  flex: 1 1 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefits-card-online-education:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #059669;
}

.benefits-card-icon-online-education {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.12);
  border-radius: 12px;
  color: #059669;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.benefits-card-title-online-education {
  color: #111827;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
}

.benefits-card-text-online-education {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .benefits-section-online-education {
    padding: 5rem 0;
  }
}

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

/* ==================== FEATURED INSIGHT SECTION ==================== */
.featured-insight-online-education {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.insight-deco-line-1 {
  position: absolute;
  top: 20%;
  left: -80px;
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.12), transparent);
  transform: rotate(45deg);
  z-index: 1;
  pointer-events: none;
}

.insight-deco-line-2 {
  position: absolute;
  bottom: 25%;
  right: -60px;
  width: 220px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
  transform: rotate(-35deg);
  z-index: 1;
  pointer-events: none;
}

.featured-quote-online-education {
  position: relative;
  z-index: 10;
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 3.5rem);
  border-left: 4px solid #059669;
  background: #f9fafb;
  margin: 0 auto;
  max-width: 800px;
  border-radius: 8px;
}

.quote-text-online-education {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.8;
  color: #111827;
  font-style: italic;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.quote-author-online-education {
  font-size: 0.9375rem;
  color: #4b5563;
  font-style: normal;
  font-weight: 600;
  display: block;
}

@media (min-width: 768px) {
  .featured-insight-online-education {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .featured-insight-online-education {
    padding: 5rem 0;
  }
}

/* ==================== RESPONSIVE MOBILE ==================== */
@media (max-width: 768px) {
  .hero-buttons-online-education {
    flex-direction: column;
  }

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

  .hero-stats-online-education {
    justify-content: flex-start;
  }

  .posts-grid-online-education {
    flex-direction: column;
    align-items: stretch;
  }

  .card-online-education {
    flex: 1 1 auto;
    max-width: none;
  }

  .benefits-cards-online-education {
    flex-direction: column;
    align-items: stretch;
  }

  .benefits-card-online-education {
    flex: 1 1 auto;
    max-width: none;
  }
}

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

*:focus-visible {
  outline: 2px solid #059669;
  outline-offset: 2px;
}

/* Post Page 1 Styles */
.main-digital-literacy-fundamentals {
  width: 100%;
  background: var(--color-bg-primary);
}

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

.hero-content-digital-literacy-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-block-digital-literacy-fundamentals {
  flex: 1 1 300px;
  min-width: 280px;
}

.hero-image-block-digital-literacy-fundamentals {
  flex: 1 1 300px;
  min-width: 280px;
}

.hero-image-digital-literacy-fundamentals {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.hero-title-digital-literacy-fundamentals {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.15;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: var(--space-lg);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-digital-literacy-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: var(--space-lg);
}

.breadcrumbs-digital-literacy-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: var(--space-xl);
  color: #4b5563;
}

.breadcrumbs-digital-literacy-fundamentals a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-digital-literacy-fundamentals a:hover {
  color: var(--color-primary-hover);
}

.breadcrumbs-digital-literacy-fundamentals span {
  color: #9ca3af;
  margin: 0 0.25rem;
}

.hero-meta-digital-literacy-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: var(--space-xl);
}

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

.meta-badge-digital-literacy-fundamentals i {
  font-size: 0.875rem;
}

.hero-stats-digital-literacy-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid #e5e7eb;
}

.stat-item-digital-literacy-fundamentals {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-digital-literacy-fundamentals {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-digital-literacy-fundamentals {
  font-size: 0.875rem;
  color: #4b5563;
  opacity: 0.9;
}

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

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

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

.intro-wrapper-digital-literacy-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-digital-literacy-fundamentals {
  flex: 1 1 300px;
  min-width: 280px;
}

.intro-image-digital-literacy-fundamentals {
  flex: 1 1 300px;
  min-width: 280px;
}

.intro-img-digital-literacy-fundamentals {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

.intro-title-digital-literacy-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
  margin-bottom: var(--space-lg);
}

.intro-description-digital-literacy-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .intro-wrapper-digital-literacy-fundamentals {
    flex-direction: column;
  }

  .intro-text-digital-literacy-fundamentals,
  .intro-image-digital-literacy-fundamentals {
    flex: 1 1 100%;
  }
}

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

.section-header-digital-literacy-fundamentals {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-tag-digital-literacy-fundamentals {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title-digital-literacy-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: var(--space-md);
}

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

.process-steps-digital-literacy-fundamentals {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.process-step-digital-literacy-fundamentals {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: #f9fafb;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.process-step-digital-literacy-fundamentals:hover {
  background: #f3f4f6;
  transform: translateX(4px);
}

.process-step-number-digital-literacy-fundamentals {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 60px;
}

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

.process-step-title-digital-literacy-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.process-step-text-digital-literacy-fundamentals {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

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

.features-title-digital-literacy-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: var(--space-md);
}

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

.features-card-digital-literacy-fundamentals {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.features-card-digital-literacy-fundamentals:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.features-card-icon-digital-literacy-fundamentals {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(5, 150, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.features-card-title-digital-literacy-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.features-card-text-digital-literacy-fundamentals {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

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

.content-section-one-digital-literacy-fundamentals {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-digital-literacy-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-digital-literacy-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-digital-literacy-fundamentals {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.content-heading-digital-literacy-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: var(--space-lg);
}

.content-paragraph-digital-literacy-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: var(--space-md);
}

.featured-quote-digital-literacy-fundamentals {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: #f9fafb;
  margin: var(--space-xl) 0;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.quote-text-digital-literacy-fundamentals {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #1e293b;
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.quote-cite-digital-literacy-fundamentals {
  font-size: 0.875rem;
  color: #4b5563;
  font-style: normal;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .content-wrapper-digital-literacy-fundamentals {
    flex-direction: column;
  }

  .content-text-digital-literacy-fundamentals,
  .content-image-digital-literacy-fundamentals {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-two-digital-literacy-fundamentals {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-image-two-digital-literacy-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-text-two-digital-literacy-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-two-digital-literacy-fundamentals {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.content-heading-two-digital-literacy-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: var(--space-lg);
}

.content-paragraph-two-digital-literacy-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: var(--space-lg);
}

.tips-list-digital-literacy-fundamentals {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.tip-item-digital-literacy-fundamentals {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
}

.tip-item-digital-literacy-fundamentals i {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.tip-text-digital-literacy-fundamentals {
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-two-digital-literacy-fundamentals {
    flex-direction: column;
  }

  .content-image-two-digital-literacy-fundamentals {
    order: 1;
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-text-two-digital-literacy-fundamentals {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-digital-literacy-fundamentals {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-digital-literacy-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: var(--space-lg);
}

.conclusion-text-digital-literacy-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: var(--space-lg);
}

.cta-box-digital-literacy-fundamentals {
  background: linear-gradient(135deg, var(--color-primary), #10b981);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  margin-top: var(--space-xl);
}

.cta-title-digital-literacy-fundamentals {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-sm);
}

.cta-text-digital-literacy-fundamentals {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.cta-button-digital-literacy-fundamentals {
  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: var(--color-primary);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-digital-literacy-fundamentals:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.section-header-related-digital-literacy-fundamentals {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.related-title-digital-literacy-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: var(--space-md);
}

.related-subtitle-digital-literacy-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
}

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

.related-card-digital-literacy-fundamentals {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.related-card-digital-literacy-fundamentals:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.related-card-image-digital-literacy-fundamentals {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e5e7eb;
}

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

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

.related-card-content-digital-literacy-fundamentals {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-lg);
}

.related-card-title-digital-literacy-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.related-card-description-digital-literacy-fundamentals {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #4b5563;
  flex-grow: 1;
}

.related-card-link-digital-literacy-fundamentals {
  display: inline-block;
  margin-top: var(--space-sm);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-link-digital-literacy-fundamentals:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

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

.disclaimer-section-digital-literacy-fundamentals {
  background: #f9fafb;
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-top: 1px solid #e5e7eb;
  overflow: hidden;
}

.disclaimer-content-digital-literacy-fundamentals {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.disclaimer-title-digital-literacy-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: var(--space-md);
}

.disclaimer-text-digital-literacy-fundamentals {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #4b5563;
}

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

  .intro-section-digital-literacy-fundamentals {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .process-section-digital-literacy-fundamentals {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .features-section-digital-literacy-fundamentals {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .content-section-one-digital-literacy-fundamentals {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .content-section-two-digital-literacy-fundamentals {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .conclusion-section-digital-literacy-fundamentals {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .related-section-digital-literacy-fundamentals {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (max-width: 480px) {
  .hero-stats-digital-literacy-fundamentals {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .process-step-digital-literacy-fundamentals {
    padding: var(--space-md);
    gap: var(--space-md);
  }

  .tips-list-digital-literacy-fundamentals {
    gap: var(--space-sm);
  }
}

/* Post Page 2 Styles */
.main-project-management-leadership {
  width: 100%;
}

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

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION - EDITORIAL MAGAZINE ARCHETYPE
   ═══════════════════════════════════════════════════════════════ */

.hero-section-project-management-leadership {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

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

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

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

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

.meta-badge-project-management-leadership i {
  font-size: 0.875rem;
}

.hero-stats-project-management-leadership {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
}

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

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

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

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

.hero-image-project-management-leadership {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: block;
  object-fit: cover;
}

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

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

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

  .stat-number-project-management-leadership {
    font-size: 1.75rem;
  }
}

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

.breadcrumbs-project-management-leadership a {
  color: #059669;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-project-management-leadership a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-project-management-leadership span {
  color: #cbd5e1;
}

/* ═══════════════════════════════════════════════════════════════
   INTRO SECTION
   ═══════════════════════════════════════════════════════════════ */

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

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

.intro-text-project-management-leadership {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-description-project-management-leadership {
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-project-management-leadership {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-project-management-leadership {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

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

  .intro-text-project-management-leadership,
  .intro-image-project-management-leadership {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PROCESS SECTION - NUMBERED STEPS
   ═══════════════════════════════════════════════════════════════ */

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

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

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

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

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

.process-steps-project-management-leadership {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.process-step-project-management-leadership {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #059669;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  align-items: flex-start;
}

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

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

.process-step-title-project-management-leadership {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

.process-step-text-project-management-leadership {
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

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

  .process-step-number-project-management-leadership {
    font-size: 1.75rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   FEATURES SECTION - CARD GRID
   ═══════════════════════════════════════════════════════════════ */

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

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

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

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

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

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

.features-card-project-management-leadership {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.features-card-project-management-leadership:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: #059669;
}

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

.features-card-title-project-management-leadership {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

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

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

/* ═══════════════════════════════════════════════════════════════
   CONTENT SECTION - TWO COLUMN LAYOUT
   ═══════════════════════════════════════════════════════════════ */

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

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

.content-text-project-management-leadership {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.content-description-project-management-leadership {
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-image-project-management-leadership {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-img-project-management-leadership {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.content-quote-project-management-leadership {
  padding: 2rem 2.5rem;
  border-left: 4px solid #059669;
  background: #ffffff;
  margin: 2rem 0;
  border-radius: 8px;
}

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

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

@media (max-width: 768px) {
  .content-wrapper-project-management-leadership {
    flex-direction: column;
  }

  .content-text-project-management-leadership,
  .content-image-project-management-leadership {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   TOOLS SECTION
   ═══════════════════════════════════════════════════════════════ */

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

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

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

.tools-image-img-project-management-leadership {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

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

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

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

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

.tools-item-project-management-leadership {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 10px;
  border-left: 3px solid #059669;
}

.tools-item-title-project-management-leadership {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #1e293b;
}

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

@media (max-width: 768px) {
  .tools-wrapper-project-management-leadership {
    flex-direction: column;
  }

  .tools-image-project-management-leadership,
  .tools-text-project-management-leadership {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-section-project-management-leadership {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-title-project-management-leadership {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-align: center;
}

.conclusion-text-project-management-leadership {
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.conclusion-cta-project-management-leadership {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
}

.cta-title-project-management-leadership {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-description-project-management-leadership {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #d1fae5;
  margin-bottom: 1.5rem;
}

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

.cta-button-project-management-leadership:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.related-subtitle-project-management-leadership {
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  color: #64748b;
}

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

.related-card-project-management-leadership {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.related-card-project-management-leadership:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: #059669;
}

.related-card-image-project-management-leadership {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}

.related-image-project-management-leadership {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

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

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

.related-card-link-project-management-leadership {
  color: #059669;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.related-card-link-project-management-leadership:hover {
  color: #047857;
  text-decoration: underline;
}

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

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

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

.disclaimer-content-project-management-leadership {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-project-management-leadership {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.disclaimer-text-project-management-leadership {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE TYPOGRAPHY & SPACING
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .hero-stats-project-management-leadership {
    gap: 1.5rem;
  }

  .process-step-project-management-leadership {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .conclusion-cta-project-management-leadership {
    padding: 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ACCESSIBILITY & UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════ */

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

/* Post Page 3 Styles */
.main-data-analysis-foundations {
  width: 100%;
}

.main-data-analysis-foundations section,
[class*="-section-data-analysis-foundations"] {
  width: 100%;
  overflow: hidden;
}

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

.breadcrumbs-data-analysis-foundations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
}

.breadcrumbs-data-analysis-foundations a {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-data-analysis-foundations a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-data-analysis-foundations span {
  color: #cbd5e1;
}

.hero-section-data-analysis-foundations {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

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

.hero-text-wrapper-data-analysis-foundations {
  flex: 1 1 300px;
  min-width: 0;
}

.hero-image-wrapper-data-analysis-foundations {
  flex: 1 1 300px;
  min-width: 0;
}

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

.hero-subtitle-data-analysis-foundations {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.article-meta-data-analysis-foundations {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.meta-badge-data-analysis-foundations i {
  font-size: 0.875rem;
}

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

.stat-item-data-analysis-foundations {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-data-analysis-foundations {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #059669;
  display: block;
}

.stat-label-data-analysis-foundations {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #4b5563;
  opacity: 0.9;
}

.hero-image-data-analysis-foundations {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .hero-content-data-analysis-foundations {
    flex-direction: column;
  }
  
  .hero-text-wrapper-data-analysis-foundations,
  .hero-image-wrapper-data-analysis-foundations {
    flex: 1 1 100%;
  }
}

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

.intro-content-wrapper-data-analysis-foundations {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-block-data-analysis-foundations {
  flex: 1 1 350px;
}

.intro-image-wrapper-data-analysis-foundations {
  flex: 1 1 350px;
}

.intro-title-data-analysis-foundations {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-text-data-analysis-foundations {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-image-data-analysis-foundations {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .intro-content-wrapper-data-analysis-foundations {
    flex-direction: column;
  }
  
  .intro-text-block-data-analysis-foundations,
  .intro-image-wrapper-data-analysis-foundations {
    flex: 1 1 100%;
  }
}

.foundation-section-data-analysis-foundations {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-header-data-analysis-foundations {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

.pillars-grid-data-analysis-foundations {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.pillar-card-data-analysis-foundations {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  align-items: flex-start;
}

.pillar-number-data-analysis-foundations {
  font-size: 2.5rem;
  font-weight: 800;
  color: #059669;
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

.pillar-content-data-analysis-foundations {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pillar-title-data-analysis-foundations {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
}

.pillar-text-data-analysis-foundations {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

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

.methods-section-data-analysis-foundations {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.methods-wrapper-data-analysis-foundations {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.methods-text-block-data-analysis-foundations {
  flex: 1 1 350px;
}

.methods-image-wrapper-data-analysis-foundations {
  flex: 1 1 350px;
}

.methods-title-data-analysis-foundations {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.methods-text-data-analysis-foundations {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.featured-quote-data-analysis-foundations {
  padding: 2rem 2.5rem;
  border-left: 4px solid #059669;
  background: #f0fdf4;
  margin: 2rem 0;
  border-radius: 8px;
}

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

.quote-author-data-analysis-foundations {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #4b5563;
  font-style: normal;
}

.methods-image-data-analysis-foundations {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .methods-wrapper-data-analysis-foundations {
    flex-direction: column;
  }
  
  .methods-text-block-data-analysis-foundations,
  .methods-image-wrapper-data-analysis-foundations {
    flex: 1 1 100%;
  }
}

.tools-section-data-analysis-foundations {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.tools-grid-data-analysis-foundations {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.tool-card-data-analysis-foundations {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card-data-analysis-foundations:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.tool-icon-data-analysis-foundations {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 12px;
  color: #059669;
  font-size: 1.75rem;
}

.tool-name-data-analysis-foundations {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
}

.tool-description-data-analysis-foundations {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

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

.learning-section-data-analysis-foundations {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.learning-wrapper-data-analysis-foundations {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.learning-image-wrapper-data-analysis-foundations {
  flex: 1 1 350px;
}

.learning-text-block-data-analysis-foundations {
  flex: 1 1 350px;
}

.learning-title-data-analysis-foundations {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.learning-text-data-analysis-foundations {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.learning-image-data-analysis-foundations {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cta-box-data-analysis-foundations {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

.cta-title-data-analysis-foundations {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.cta-text-data-analysis-foundations {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #d1fae5;
  margin-bottom: 1.5rem;
}

.btn-data-analysis-foundations {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary-data-analysis-foundations {
  background: #ffffff;
  color: #059669;
}

.btn-primary-data-analysis-foundations:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .learning-wrapper-data-analysis-foundations {
    flex-direction: column-reverse;
  }
  
  .learning-image-wrapper-data-analysis-foundations,
  .learning-text-block-data-analysis-foundations {
    flex: 1 1 100%;
  }
}

.practical-section-data-analysis-foundations {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.applications-grid-data-analysis-foundations {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.app-card-data-analysis-foundations {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.app-card-data-analysis-foundations:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.app-title-data-analysis-foundations {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
}

.app-text-data-analysis-foundations {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

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

.conclusion-section-data-analysis-foundations {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.conclusion-content-data-analysis-foundations {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-data-analysis-foundations {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-data-analysis-foundations {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.key-takeaways-data-analysis-foundations {
  background: #f0fdf4;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #059669;
  margin-top: 2rem;
}

.takeaways-title-data-analysis-foundations {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.takeaways-list-data-analysis-foundations {
  list-style: none;
  padding: 0;
  margin: 0;
}

.takeaway-item-data-analysis-foundations {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.takeaway-item-data-analysis-foundations:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: bold;
}

.disclaimer-section-data-analysis-foundations {
  background: #fef2f2;
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid #fecaca;
}

.disclaimer-content-data-analysis-foundations {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-data-analysis-foundations {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #7f1d1d;
  margin-bottom: 1rem;
}

.disclaimer-text-data-analysis-foundations {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #5f2120;
  line-height: 1.7;
}

.related-section-data-analysis-foundations {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.related-cards-wrapper-data-analysis-foundations {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-data-analysis-foundations {
  flex: 1 1 320px;
  max-width: 400px;
  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: all 0.3s ease;
}

.related-card-data-analysis-foundations:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.related-image-wrapper-data-analysis-foundations {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-data-analysis-foundations {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-data-analysis-foundations:hover .related-image-data-analysis-foundations {
  transform: scale(1.05);
}

.related-content-data-analysis-foundations {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-title-data-analysis-foundations {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.related-text-data-analysis-foundations {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

.related-link-data-analysis-foundations {
  display: inline-block;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  font-weight: 600;
  color: #059669;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.related-link-data-analysis-foundations:hover {
  color: #047857;
  text-decoration: underline;
}

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

@media (min-width: 768px) {
  .hero-stats-data-analysis-foundations {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-content-data-analysis-foundations {
    gap: 4rem;
  }
  
  .intro-content-wrapper-data-analysis-foundations,
  .methods-wrapper-data-analysis-foundations,
  .learning-wrapper-data-analysis-foundations {
    gap: 4rem;
  }
}

/* Post Page 4 Styles */
/* Main component wrapper */
.main-educational-methods-adults {
  width: 100%;
}

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

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

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

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

.hero-subtitle-educational-methods-adults {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.article-meta-educational-methods-adults {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

.meta-badge-educational-methods-adults i {
  font-size: 1rem;
}

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

.hero-image-educational-methods-adults {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.stat-item-educational-methods-adults {
  flex: 0 1 auto;
}

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

.stat-label-educational-methods-adults {
  display: block;
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 500;
  opacity: 0.8;
}

/* Breadcrumbs */
.breadcrumbs-educational-methods-adults {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: 0.9375rem;
}

.breadcrumb-link-educational-methods-adults {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-educational-methods-adults:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumb-separator-educational-methods-adults {
  color: #cbd5e1;
}

.breadcrumb-current-educational-methods-adults {
  color: #4b5563;
  font-weight: 500;
}

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

.intro-wrapper-educational-methods-adults {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-educational-methods-adults {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-description-educational-methods-adults {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.intro-description-educational-methods-adults:last-of-type {
  margin-bottom: 0;
}

.intro-image-educational-methods-adults {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-educational-methods-adults {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Section Header */
.section-header-educational-methods-adults {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

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

/* Methods Section */
.methods-section-educational-methods-adults {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.methods-title-educational-methods-adults {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

.methods-subtitle-educational-methods-adults {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.methods-steps-educational-methods-adults {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.method-step-educational-methods-adults {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  align-items: flex-start;
}

.method-number-educational-methods-adults {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #059669;
  flex-shrink: 0;
  min-width: 60px;
}

.method-content-educational-methods-adults {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.method-title-educational-methods-adults {
  color: #111827;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.method-text-educational-methods-adults {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.6;
}

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

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

.implementation-text-educational-methods-adults {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.implementation-description-educational-methods-adults {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.implementation-description-educational-methods-adults:last-of-type {
  margin-bottom: 0;
}

.implementation-image-educational-methods-adults {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-img-educational-methods-adults {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.features-title-educational-methods-adults {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

.features-cards-educational-methods-adults {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

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

.features-card-educational-methods-adults:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.features-card-icon-educational-methods-adults {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(5, 150, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 1.5rem;
}

.features-card-title-educational-methods-adults {
  color: #111827;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.features-card-text-educational-methods-adults {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Challenges Section */
.challenges-section-educational-methods-adults {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.challenges-wrapper-educational-methods-adults {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.challenges-image-educational-methods-adults {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-img-educational-methods-adults {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.challenges-text-educational-methods-adults {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.challenges-description-educational-methods-adults {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.challenges-description-educational-methods-adults:last-of-type {
  margin-bottom: 0;
}

/* Conclusion Section */
.conclusion-section-educational-methods-adults {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-educational-methods-adults {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-educational-methods-adults {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.conclusion-text-educational-methods-adults {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.featured-quote-educational-methods-adults {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #059669;
  background: #ffffff;
  margin: clamp(2rem, 4vw, 3rem) 0;
  border-radius: 8px;
}

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

.quote-author-educational-methods-adults {
  color: #4b5563;
  font-size: 0.875rem;
  opacity: 0.7;
  font-style: normal;
  display: block;
}

.conclusion-final-text-educational-methods-adults {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

/* CTA Box */
.cta-box-educational-methods-adults {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.cta-title-educational-methods-adults {
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-text-educational-methods-adults {
  color: #e2e8f0;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

.btn-primary-educational-methods-adults:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: #f1f5f9;
}

/* Disclaimer Section */
.disclaimer-section-educational-methods-adults {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid #e5e7eb;
  overflow: hidden;
}

.disclaimer-content-educational-methods-adults {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

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

.disclaimer-text-educational-methods-adults {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* Related Section */
.related-section-educational-methods-adults {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-title-educational-methods-adults {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

.related-cards-educational-methods-adults {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.related-card-educational-methods-adults {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-educational-methods-adults:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.related-card-image-educational-methods-adults {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-educational-methods-adults {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-educational-methods-adults {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-educational-methods-adults {
  color: #111827;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-educational-methods-adults {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-educational-methods-adults {
  color: #059669;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9375rem;
  display: inline-block;
}

.related-card-link-educational-methods-adults:hover {
  color: #047857;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content-educational-methods-adults,
  .intro-wrapper-educational-methods-adults,
  .implementation-wrapper-educational-methods-adults,
  .challenges-wrapper-educational-methods-adults {
    flex-direction: column;
  }

  .hero-text-block-educational-methods-adults,
  .hero-image-block-educational-methods-adults,
  .intro-text-educational-methods-adults,
  .intro-image-educational-methods-adults,
  .implementation-text-educational-methods-adults,
  .implementation-image-educational-methods-adults,
  .challenges-image-educational-methods-adults,
  .challenges-text-educational-methods-adults {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .method-step-educational-methods-adults {
    flex-direction: column;
    align-items: flex-start;
  }

  .method-number-educational-methods-adults {
    min-width: auto;
  }

  .features-card-educational-methods-adults,
  .related-card-educational-methods-adults {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-stats-educational-methods-adults {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .hero-section-educational-methods-adults {
    padding: clamp(4rem, 8vw, 8rem) 0;
  }

  .intro-section-educational-methods-adults,
  .implementation-section-educational-methods-adults,
  .challenges-section-educational-methods-adults {
    padding: clamp(4rem, 8vw, 8rem) 0;
  }

  .features-section-educational-methods-adults,
  .methods-section-educational-methods-adults {
    padding: clamp(4rem, 8vw, 8rem) 0;
  }

  .conclusion-section-educational-methods-adults {
    padding: clamp(4rem, 8vw, 8rem) 0;
  }

  .related-section-educational-methods-adults {
    padding: clamp(4rem, 8vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .features-card-educational-methods-adults {
    flex: 1 1 calc(33.333% - 1.5rem);
    max-width: 100%;
  }

  .related-card-educational-methods-adults {
    flex: 1 1 calc(33.333% - 1.5rem);
    max-width: 100%;
  }
}

/* Post Page 5 Styles */
.main-personal-development-self-improvement {
  width: 100%;
}

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

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

.breadcrumbs-personal-development-self-improvement a {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-personal-development-self-improvement a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-personal-development-self-improvement span {
  color: #9ca3af;
}

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

.hero-text-block-personal-development-self-improvement {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-personal-development-self-improvement {
  color: #111827;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.15;
  font-weight: 700;
}

.hero-subtitle-personal-development-self-improvement {
  color: #4b5563;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
}

.hero-meta-personal-development-self-improvement {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

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

.meta-badge-personal-development-self-improvement i {
  font-size: 0.875rem;
}

.hero-image-block-personal-development-self-improvement {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-stats-personal-development-self-improvement {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.stat-item-personal-development-self-improvement {
  flex: 1 1 150px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.stat-label-personal-development-self-improvement {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.4;
}

.intro-section-personal-development-self-improvement {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-personal-development-self-improvement {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-title-personal-development-self-improvement {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.intro-description-personal-development-self-improvement {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.intro-text-personal-development-self-improvement {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.intro-image-personal-development-self-improvement {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-img-personal-development-self-improvement {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: block;
}

.process-section-personal-development-self-improvement {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-header-personal-development-self-improvement {
  text-align: center;
  margin-bottom: 3rem;
}

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

.process-title-personal-development-self-improvement {
  color: #111827;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.process-subtitle-personal-development-self-improvement {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.process-steps-personal-development-self-improvement {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-personal-development-self-improvement {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.process-step-content-personal-development-self-improvement {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.process-step-title-personal-development-self-improvement {
  color: #111827;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

.process-step-text-personal-development-self-improvement {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.content-section-personal-development-self-improvement {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-personal-development-self-improvement {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-personal-development-self-improvement {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-title-personal-development-self-improvement {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.content-text-body-personal-development-self-improvement {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.content-highlight-personal-development-self-improvement {
  padding: 1.5rem;
  background: #f0fdf4;
  border-left: 4px solid #059669;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.highlight-title-personal-development-self-improvement {
  color: #111827;
  font-size: 1rem;
  font-weight: 600;
}

.highlight-text-personal-development-self-improvement {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.content-image-personal-development-self-improvement {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-img-personal-development-self-improvement {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: block;
}

.features-section-personal-development-self-improvement {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-header-personal-development-self-improvement {
  text-align: center;
  margin-bottom: 3rem;
}

.features-title-personal-development-self-improvement {
  color: #111827;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.features-subtitle-personal-development-self-improvement {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-cards-personal-development-self-improvement {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.features-card-personal-development-self-improvement {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-card-personal-development-self-improvement:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.features-card-icon-personal-development-self-improvement {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(5, 150, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 1.5rem;
}

.features-card-title-personal-development-self-improvement {
  color: #111827;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

.features-card-text-personal-development-self-improvement {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.quote-section-personal-development-self-improvement {
  background: #f0fdf4;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-personal-development-self-improvement {
  padding: 2rem 2.5rem;
  border-left: 4px solid #059669;
  background: #ffffff;
  margin: 0;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.quote-text-personal-development-self-improvement {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 500;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-style: italic;
}

.quote-author-personal-development-self-improvement {
  font-size: 0.875rem;
  color: #4b5563;
  font-style: normal;
}

.practical-section-personal-development-self-improvement {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-wrapper-personal-development-self-improvement {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practical-image-personal-development-self-improvement {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.practical-img-personal-development-self-improvement {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: block;
}

.practical-text-personal-development-self-improvement {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practical-title-personal-development-self-improvement {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.practical-description-personal-development-self-improvement {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.practical-list-personal-development-self-improvement {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.practical-item-personal-development-self-improvement {
  padding: 1rem;
  background: #f9fafb;
  border-radius: 8px;
  border-left: 3px solid #059669;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.practical-item-title-personal-development-self-improvement {
  color: #111827;
  font-size: 1rem;
  font-weight: 600;
}

.practical-item-text-personal-development-self-improvement {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.6;
}

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

.conclusion-content-personal-development-self-improvement {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.conclusion-title-personal-development-self-improvement {
  color: #111827;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.conclusion-text-personal-development-self-improvement {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.conclusion-cta-personal-development-self-improvement {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title-personal-development-self-improvement {
  color: #111827;
  font-size: 1.25rem;
  font-weight: 600;
}

.cta-text-personal-development-self-improvement {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.btn-primary-cta-personal-development-self-improvement {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #059669;
  color: #ffffff;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  margin-top: 0.5rem;
}

.btn-primary-cta-personal-development-self-improvement:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(5, 150, 105, 0.3);
}

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

.disclaimer-box-personal-development-self-improvement {
  padding: 2rem;
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-personal-development-self-improvement {
  color: #111827;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-personal-development-self-improvement {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.related-section-personal-development-self-improvement {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-personal-development-self-improvement {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-personal-development-self-improvement {
  color: #111827;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-personal-development-self-improvement {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

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

.related-card-personal-development-self-improvement {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-personal-development-self-improvement:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.related-card-image-personal-development-self-improvement {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-personal-development-self-improvement {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-personal-development-self-improvement {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-personal-development-self-improvement {
  color: #111827;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-personal-development-self-improvement {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-personal-development-self-improvement {
  color: #059669;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.related-card-link-personal-development-self-improvement:hover {
  color: #047857;
  text-decoration: underline;
}

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

  .hero-text-block-personal-development-self-improvement,
  .hero-image-block-personal-development-self-improvement {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-personal-development-self-improvement {
    flex-direction: column;
    gap: 1.5rem;
  }

  .intro-content-personal-development-self-improvement {
    flex-direction: column;
  }

  .intro-text-personal-development-self-improvement,
  .intro-image-personal-development-self-improvement {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .process-step-personal-development-self-improvement {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .process-step-number-personal-development-self-improvement {
    min-width: auto;
  }

  .content-wrapper-personal-development-self-improvement {
    flex-direction: column;
  }

  .content-text-personal-development-self-improvement,
  .content-image-personal-development-self-improvement {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .features-card-personal-development-self-improvement {
    flex: 1 1 100%;
    max-width: none;
  }

  .practical-wrapper-personal-development-self-improvement {
    flex-direction: column;
  }

  .practical-image-personal-development-self-improvement,
  .practical-text-personal-development-self-improvement {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-personal-development-self-improvement {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* About Page Styles */
.educational-platform-about {
  width: 100%;
}

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

/* ========== HERO SECTION ========== */
.hero-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-content-about {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.hero-title-about {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-about {
  font-size: clamp(1.125rem, 2.5vw + 0.5rem, 1.5rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  line-height: 1.6;
}

.hero-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  justify-content: center;
  margin-top: 2rem;
}

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

.stat-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  display: block;
  line-height: 1;
}

.stat-label-about {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-top: 0.5rem;
}

.hero-image-about {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: 2rem;
}

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

  .hero-stats-about {
    gap: 4rem;
  }
}

/* ========== FOUNDATION SECTION ========== */
.foundation-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.foundation-content-about {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.foundation-header-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
}

.section-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  width: fit-content;
}

.foundation-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.foundation-description-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.foundation-blocks-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 1rem;
}

.block-item-about {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.block-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.block-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.foundation-image-about {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: 1.5rem;
}

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

  .block-item-about {
    flex: 1 1 320px;
    max-width: 400px;
  }
}

/* ========== METHODOLOGY SECTION ========== */
.methodology-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.methodology-content-about {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.methodology-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.methodology-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.methodology-subtitle-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.steps-container-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.step-item-about {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(5, 150, 105, 0.1);
}

.step-number-about {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

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

.step-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.step-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

  .step-item-about {
    gap: 2rem;
  }
}

/* ========== PRINCIPLES SECTION ========== */
.principles-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.principles-content-about {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.principles-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.principles-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.principles-intro-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.principles-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.principle-card-about {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(5, 150, 105, 0.15);
}

.principle-icon-about {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.principle-name-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.principle-detail-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.principles-image-about {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: 2rem;
}

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

  .principle-card-about {
    flex: 1 1 320px;
  }
}

/* ========== COMMITMENT SECTION ========== */
.commitment-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.commitment-content-about {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.commitment-header-about {
  text-align: center;
}

.commitment-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.commitment-intro-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.commitment-quote-about {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  margin: 1.5rem 0;
}

.quote-text-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.quote-author-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  font-style: normal;
}

.commitment-text-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.commitment-image-about {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: 1.5rem;
}

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

/* ========== DISCLAIMER SECTION ========== */
.disclaimer-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  border-top: 1px solid rgba(5, 150, 105, 0.1);
  position: relative;
  overflow: hidden;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 850px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.disclaimer-icon-about {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.disclaimer-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .disclaimer-section-about {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 768px) {
  .hero-stats-about {
    flex-direction: column;
    gap: 2rem;
  }

  .step-item-about {
    flex-direction: column;
  }

  .step-number-about {
    font-size: 2.25rem;
  }

  .principle-card-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .block-item-about {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .hero-section-about {
    padding: 8rem 0;
  }

  .methodology-section-about {
    padding: 8rem 0;
  }

  .principles-section-about {
    padding: 8rem 0;
  }

  .commitment-section-about {
    padding: 8rem 0;
  }

  .foundation-section-about {
    padding: 8rem 0;
  }

  .disclaimer-section-about {
    padding: 6rem 0;
  }
}

/* Privacy Page Styles */
/* Universal legal documentation page class */
.docs-center {
  width: 100%;
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

/* Container width management */
.docs-center .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

/* Hero/Header section */
.docs-center-hero {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  border-bottom: 1px solid var(--color-bg-tertiary);
  overflow: hidden;
}

.docs-center-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.docs-center-hero h1 {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.docs-center-hero-meta {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
  font-style: italic;
}

/* Main content section */
.docs-center-content {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.docs-center-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

/* Section styling */
.docs-center-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.docs-center-section h2 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
}

.docs-center-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
}

.docs-center-section ul {
  margin-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.docs-center-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
}

.docs-center-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

/* Contact section styling */
.docs-center-contact {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-tertiary);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.docs-center-contact h3 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.docs-center-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.docs-center-contact-item:last-child {
  margin-bottom: 0;
}

.docs-center-contact-label {
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.9375rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.docs-center-contact-value {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .docs-center-hero {
    padding: 4rem 0;
  }

  .docs-center-content {
    padding: 5rem 0;
  }

  .docs-center-hero-content {
    gap: 1.5rem;
  }

  .docs-center-content-wrapper {
    gap: 3rem;
  }

  .docs-center-section {
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .docs-center-hero {
    padding: 5rem 0;
  }

  .docs-center-content {
    padding: 6rem 0;
  }

  .docs-center-hero-content {
    gap: 2rem;
  }

  .docs-center-content-wrapper {
    gap: 4rem;
  }

  .docs-center-section {
    gap: 1.5rem;
  }
}

/* Thank You Page Styles */
.thank-page {
  width: 100%;
}

.thank-section {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 10vh, 8rem) 0;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.thank-icon {
  width: clamp(4rem, 12vw, 6rem);
  height: clamp(4rem, 12vw, 6rem);
  background: var(--color-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: icon-scale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon i {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--color-primary);
}

@keyframes icon-scale {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-section h1 {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-lead {
  color: var(--color-primary);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1.5vw, 1.0625rem);
  line-height: 1.7;
  max-width: 500px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-benefits {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
  max-width: 400px;
}

.benefit-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(0.75rem, 2vw, 1.25rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  animation: slide-up 0.5s ease-out backwards;
}

.benefit-item:nth-child(1) {
  animation-delay: 0.1s;
}

.benefit-item:nth-child(2) {
  animation-delay: 0.2s;
}

.benefit-item:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes slide-up {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.benefit-item i {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-primary);
  flex-shrink: 0;
}

.benefit-item span {
  color: var(--color-text-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.5;
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.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.9375rem, 1.5vw, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1.5;
  white-space: nowrap;
}

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

.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(4rem, 12vh, 10rem) 0;
  }

  .thank-content {
    gap: clamp(2rem, 5vw, 4rem);
  }

  .thank-benefits {
    gap: clamp(1.25rem, 2.5vw, 2rem);
  }

  .benefit-item {
    padding: clamp(1rem, 2.5vw, 1.5rem);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(5rem, 15vh, 12rem) 0;
  }

  .thank-content {
    gap: clamp(2.5rem, 6vw, 4.5rem);
  }

  .thank-benefits {
    gap: clamp(1.5rem, 3vw, 2.25rem);
  }
}

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

  .thank-content {
    gap: 4.5rem;
  }

  .thank-benefits {
    gap: 2.25rem;
  }
}

/* 404 Page Styles */
/* Error Page Component */
.error-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Error Section */
.error-section {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-tertiary) 100%);
  padding: clamp(2rem, 8vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  flex: 1;
}

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

/* Error Content Wrapper */
.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 6vw, 4rem) 0;
}

/* Decorative floating elements */
.error-decoration {
  position: absolute;
  font-size: clamp(4rem, 15vw, 12rem);
  opacity: 0.08;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.error-decoration-1 {
  top: 5%;
  left: 5%;
  animation: float-1 6s ease-in-out infinite;
}

.error-decoration-2 {
  top: 50%;
  right: 8%;
  animation: float-2 8s ease-in-out infinite;
}

.error-decoration-3 {
  bottom: 10%;
  left: 8%;
  animation: float-3 7s ease-in-out infinite;
}

/* Main error content */
.error-main {
  position: relative;
  z-index: 3;
}

/* Error Code */
.error-code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 20vw, 12rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin: 0;
  letter-spacing: -0.02em;
}

/* Error Title */
.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 3rem);
  color: var(--color-text-primary);
  margin: clamp(1rem, 3vw, 2rem) 0 0 0;
  line-height: 1.2;
  font-weight: 700;
}

/* Error Subtitle */
.error-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--color-text-secondary);
  margin: clamp(0.75rem, 2vw, 1.5rem) 0 0 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Error Message */
.error-message {
  margin: clamp(1.5rem, 4vw, 2.5rem) 0 0 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-message p {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.8;
}

/* Error Actions */
.error-actions {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin: clamp(2rem, 5vw, 3.5rem) 0 0 0;
  align-items: center;
  justify-content: center;
}

.error-actions .btn {
  min-width: clamp(200px, 80vw, 300px);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius-md);
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(2rem, 5vw, 3rem);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  box-shadow: var(--shadow-md);
}

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

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

/* Suggestions Section */
.error-suggestions {
  margin: clamp(2.5rem, 6vw, 4rem) 0 0 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-accent-light);
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.suggestions-title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  font-weight: 700;
  font-family: var(--font-primary);
}

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

.suggestions-list li {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-primary);
  line-height: 1.6;
}

.suggestions-list i {
  color: var(--color-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  flex-shrink: 0;
}

/* Animations */
@keyframes float-1 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(10deg);
  }
}

@keyframes float-2 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(40px) rotate(-15deg);
  }
}

@keyframes float-3 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(-10deg);
  }
}

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

  .error-content {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .error-message {
    padding: 2rem;
  }

  .error-actions {
    flex-direction: row;
    gap: 2rem;
  }

  .error-actions .btn {
    min-width: auto;
    width: auto;
  }
}

/* Desktop Responsive - 1024px+ */
@media (min-width: 1024px) {
  .error-section {
    padding: 4rem 0;
  }

  .error-content {
    padding: 4rem 0;
  }

  .error-message {
    padding: 2.5rem;
  }

  .error-decoration-1 {
    top: 10%;
    left: 10%;
  }

  .error-decoration-2 {
    top: 45%;
    right: 12%;
  }

  .error-decoration-3 {
    bottom: 15%;
    left: 10%;
  }
}

/* Large Desktop - 1440px+ */
@media (min-width: 1440px) {
  .error-code {
    font-size: 12rem;
  }

  .error-title {
    font-size: 3rem;
  }

  .error-subtitle {
    font-size: 1.25rem;
  }
}

/* Mobile optimizations */
@media (max-width: 480px) {
  .error-content {
    padding: 1.5rem 0;
  }

  .error-decoration {
    opacity: 0.04;
  }

  .error-actions {
    gap: 1rem;
  }

  .suggestions-list {
    gap: 0.75rem;
  }
}

/* Print styles */
@media print {
  .error-section {
    background: white;
  }

  .error-decoration {
    display: none;
  }

  .error-code {
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
  }
}