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

:root {
  /* HYBRID COLOR STRATEGY: PATTERN H2 - ZEBRA ALTERNATING */
  /* Dark Teal Palette (D3) with dramatic light/dark rhythm */
  
  /* Dark section backgrounds */
  --color-bg-dark-primary: #042f2e;
  --color-bg-dark-secondary: #064e4a;
  --color-bg-dark-tertiary: #0f766e;
  
  /* Light section backgrounds */
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  
  /* Card backgrounds */
  --color-bg-card-dark: rgba(20, 184, 166, 0.08);
  --color-bg-card-light: #ffffff;
  
  /* Text colors for dark sections */
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #99f6e4;
  --color-text-dark-muted: #a5b4fc;
  
  /* Text colors for light sections */
  --color-text-light-primary: #1e293b;
  --color-text-light-secondary: #64748b;
  --color-text-light-muted: #94a3b8;
  
  /* Accent colors */
  --color-primary: #14b8a6;
  --color-primary-hover: #0d9488;
  --color-secondary: #2dd4bf;
  --color-accent-gold: #f59e0b;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
}

/* RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

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

/* CONTAINER & SECTION STRUCTURE */
section, [class*="-section"] {
  width: 100%;
  overflow: hidden;
}

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

/* LINKS & BUTTONS */
a {
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

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

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

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

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

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

/* DARK SECTION STYLES */
.hero-section {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--space-xl);
  min-height: 500px;
  position: relative;
  z-index: 1;
}

.hero-title {
  color: var(--color-text-dark-primary);
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
}

.hero-subtitle {
  color: var(--color-text-dark-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 400;
  font-family: var(--font-body);
  max-width: 600px;
  line-height: 1.7;
}

.hero-description {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  max-width: 500px;
  line-height: 1.8;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.stat-item {
  border-left: 3px solid var(--color-secondary);
  padding-left: var(--space-md);
}

.stat-number {
  color: var(--color-secondary);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
}

.stat-label {
  color: var(--color-text-dark-muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* LIGHT SECTION STYLES */
.features-section {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-header {
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-title {
  color: var(--color-text-light-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 600px;
  line-height: 1.7;
}

.features-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-2xl);
}

.feature-card {
  background: var(--color-bg-card-light);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.feature-icon i {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.feature-title {
  color: var(--color-text-light-primary);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
}

.feature-description {
  color: var(--color-text-light-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* DARK SECTION WITH ALTERNATE BACKGROUND */
.benefits-section {
  background: var(--color-bg-dark-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.benefits-text h2 {
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-lg);
}

.benefits-text p {
  color: var(--color-text-dark-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.benefits-list {
  list-style: none;
  margin: var(--space-lg) 0;
}

.benefits-list li {
  color: var(--color-text-dark-secondary);
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
  position: relative;
}

.benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--color-secondary);
  border-radius: 50%;
}

.benefits-image {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.2) 0%, rgba(45, 212, 191, 0.1) 100%);
  border-radius: var(--radius-xl);
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.benefits-image i {
  font-size: 100px;
  color: var(--color-secondary);
  opacity: 0.3;
}

/* LIGHT SECTION - TESTIMONIALS */
.testimonials-section {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.testimonials-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
}

.testimonial-card {
  background: var(--color-bg-card-light);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid #e5e7eb;
}

.testimonial-quote {
  color: var(--color-text-light-primary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-quote::before {
  content: '"';
  font-size: 2rem;
  color: var(--color-primary);
  opacity: 0.3;
  display: block;
  margin-bottom: -0.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid #e5e7eb;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.author-info h4 {
  color: var(--color-text-light-primary);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.author-title {
  color: var(--color-text-light-secondary);
  font-size: 0.85rem;
}

/* DARK SECTION - PRICING */
.pricing-section {
  background: var(--color-bg-dark-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.pricing-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
}

.pricing-card {
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3vw, 2.5rem);
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--color-secondary);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--color-secondary);
  box-shadow: 0 0 30px rgba(20, 184, 166, 0.2);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--color-accent-gold);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-name {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: var(--space-md);
}

.pricing-price {
  color: var(--color-secondary);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-period {
  color: var(--color-text-dark-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.pricing-features li {
  color: var(--color-text-dark-secondary);
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
  position: relative;
  font-size: 0.95rem;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--color-secondary);
  border-radius: 50%;
}

/* LIGHT SECTION - CTA */
.cta-section {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-lg);
}

.cta-description {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

.cta-buttons {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* DARK SECTION - FAQ */
.faq-section {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-header h2 {
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-md);
}

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

.faq-item {
  border-bottom: 1px solid rgba(20, 184, 166, 0.2);
  padding: var(--space-xl) 0;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  color: var(--color-text-dark-primary);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.faq-question i {
  color: var(--color-secondary);
  transition: transform 0.3s ease;
}

.faq-answer {
  color: var(--color-text-dark-secondary);
  margin-top: var(--space-md);
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* LIGHT SECTION - CONTACT FORM */
.contact-section {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-info h2 {
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-lg);
}

.contact-info p {
  color: var(--color-text-light-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-detail {
  display: flex;
  gap: var(--space-md);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon i {
  color: var(--color-primary);
  font-size: 1.2rem;
}

.contact-detail-text h4 {
  color: var(--color-text-light-primary);
  margin-bottom: 0.25rem;
}

.contact-detail-text p {
  color: var(--color-text-light-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.contact-form {
  background: var(--color-bg-card-light);
  padding: clamp(2rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid #e5e7eb;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  color: var(--color-text-light-primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: clamp(0.75rem, 1.5vw, 1rem);
  border: 1px solid #d1d5db;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  background: white;
  color: var(--color-text-light-primary);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

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

.form-submit-btn {
  width: 100%;
  padding: clamp(0.75rem, 1.5vw, 1rem);
  background: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .benefits-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .benefits-image {
    min-height: 300px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .testimonials-content,
  .features-content,
  .pricing-content {
    grid-template-columns: 1fr;
  }
}

/* ANIMATION UTILITIES */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}
.header-learn-vault {
  background: var(--color-bg-dark-primary);
  border-bottom: 1px solid rgba(20, 184, 166, 0.1);
  position: static;
  width: 100%;
  z-index: 100;
}

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

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

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

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

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

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

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

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

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

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

/* CTA Button Desktop */
.header-learn-vault-cta-button {
  display: none;
  padding: 0.75rem 1.75rem;
  background: var(--color-primary);
  color: #0f172a;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 300ms ease-in-out;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.header-learn-vault-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.25);
}

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

/* Mobile Toggle Button */
.header-learn-vault-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--color-primary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 300ms ease-in-out;
  padding: 0;
  margin-left: auto;
}

.header-learn-vault-mobile-toggle:hover {
  color: var(--color-secondary);
}

.header-learn-vault-mobile-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Mobile Menu */
.header-learn-vault-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-dark-primary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  padding-top: 0;
  overflow-y: auto;
}

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

.header-learn-vault-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1rem, 5vw, 2rem);
  border-bottom: 1px solid rgba(20, 184, 166, 0.1);
  flex-shrink: 0;
}

.header-learn-vault-mobile-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}

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

.header-learn-vault-mobile-close:hover {
  color: var(--color-secondary);
}

.header-learn-vault-mobile-close:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

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

.header-learn-vault-mobile-link {
  padding: 1rem clamp(1rem, 5vw, 2rem);
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 300ms ease-in-out;
  border-left: 3px solid transparent;
  display: block;
}

.header-learn-vault-mobile-link:hover {
  background: rgba(20, 184, 166, 0.05);
  color: var(--color-primary);
  border-left-color: var(--color-primary);
  padding-left: calc(clamp(1rem, 5vw, 2rem) + 4px);
}

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

.header-learn-vault-mobile-cta {
  padding: 1rem clamp(1rem, 5vw, 2rem);
  margin: 1rem clamp(1rem, 5vw, 2rem);
  background: var(--color-primary);
  color: #0f172a;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  transition: all 300ms ease-in-out;
  text-align: center;
  display: block;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.header-learn-vault-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.25);
}

.header-learn-vault-mobile-cta:active {
  transform: translateY(0);
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
  .header-learn-vault-container {
    padding: 1rem clamp(1rem, 5vw, 2rem);
  }

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

  .header-learn-vault-desktop-nav {
    display: flex;
  }

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

@media (min-width: 1024px) {
  .header-learn-vault-container {
    padding: 1.25rem clamp(1rem, 5vw, 2rem);
    gap: 3rem;
  }

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

  .header-learn-vault-desktop-nav {
    gap: 2rem;
  }

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

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

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .header-learn-vault-brand,
  .header-learn-vault-nav-link,
  .header-learn-vault-nav-link::after,
  .header-learn-vault-cta-button,
  .header-learn-vault-mobile-toggle,
  .header-learn-vault-mobile-menu,
  .header-learn-vault-mobile-link,
  .header-learn-vault-mobile-cta {
    transition: none !important;
    animation: none !important;
  }
}

    .learning-hub {
  width: 100%;
}

/* HERO SECTION - DARK TEAL */
.hero-section-index {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-glow-primary-index {
  position: absolute;
  top: -50px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-glow-secondary-index {
  position: absolute;
  bottom: 100px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-shape-accent-index {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: rgba(45, 212, 191, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-element-index {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 200px;
  height: 150px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: 16px;
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}

.hero-ambient-field-index {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.03) 0%, transparent 50%, rgba(45, 212, 191, 0.05) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero-corner-accent-index {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at top left, rgba(45, 212, 191, 0.12) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-title-index {
  color: var(--color-text-dark-primary);
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.hero-subtitle-index {
  color: var(--color-text-dark-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 400;
  font-family: var(--font-body);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.hero-description-index {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.hero-buttons-index {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.btn-primary-index {
  background: var(--color-primary);
  color: #0a0f1e;
  border: 2px solid var(--color-primary);
}

.btn-primary-index:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
}

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

.btn-secondary-index:hover {
  background: var(--color-primary);
  color: #0a0f1e;
  transform: translateY(-3px);
}

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

.stat-item-index {
  border-left: 3px solid var(--color-secondary);
  padding-left: var(--space-md);
}

.stat-number-index {
  color: var(--color-secondary);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
  display: block;
}

.stat-label-index {
  color: var(--color-text-dark-muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* FEATURES SECTION - LIGHT */
.features-section-index {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-header-index {
  margin-bottom: clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.section-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.features-title-index {
  color: var(--color-text-light-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-md);
}

.features-subtitle-index {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.features-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-md);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.features-card-index:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(20, 184, 166, 0.3);
}

.features-card-icon-index {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(20, 184, 166, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.features-card-title-index {
  color: var(--color-text-light-primary);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  font-family: var(--font-heading);
}

.features-card-text-index {
  color: var(--color-text-light-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* LEARNING PATH SECTION - DARK */
.learning-path-section-index {
  background: var(--color-bg-dark-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.learning-path-glow-index {
  position: absolute;
  top: -50px;
  left: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.learning-path-shape-index {
  position: absolute;
  bottom: -80px;
  right: 5%;
  width: 300px;
  height: 300px;
  background: rgba(20, 184, 166, 0.06);
  border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

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

.learning-path-title-index {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-md);
}

.learning-path-steps-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.learning-path-step-index {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: var(--radius-lg);
  transition: all 300ms ease;
}

.learning-path-step-index:hover {
  background: rgba(20, 184, 166, 0.08);
  border-color: var(--color-secondary);
}

.learning-path-step-number-index {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--color-secondary);
  flex-shrink: 0;
  min-width: 60px;
  font-family: var(--font-heading);
}

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

.learning-path-step-title-index {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  font-weight: 600;
  font-family: var(--font-heading);
}

.learning-path-step-text-index {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* TESTIMONIALS SECTION - LIGHT */
.testimonials-section-index {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.testimonials-header-index {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.testimonials-title-index {
  color: var(--color-text-light-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-md);
}

.testimonials-subtitle-index {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-md);
  transition: all 300ms ease;
}

.testimonial-card-index:hover {
  box-shadow: var(--shadow-lg);
}

.testimonial-quote-index {
  color: var(--color-text-light-primary);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  position: relative;
}

.testimonial-quote-index::before {
  content: '"';
  font-size: 2.5rem;
  color: var(--color-primary);
  opacity: 0.2;
  display: block;
  margin-bottom: -0.5rem;
  font-family: var(--font-heading);
}

.testimonial-author-index {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid #e5e7eb;
}

.author-avatar-index {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-info-index h4 {
  color: var(--color-text-light-primary);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}

.author-title-index {
  color: var(--color-text-light-secondary);
  font-size: 0.85rem;
  margin: 0;
}

/* FEATURED COURSES SECTION - DARK */
.featured-courses-section-index {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.featured-courses-glow-index {
  position: absolute;
  top: 0;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.featured-courses-accent-index {
  position: absolute;
  bottom: 100px;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(45, 212, 191, 0.07);
  border-radius: 50% 50% 60% 40% / 40% 60% 50% 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

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

.featured-courses-title-index {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-md);
}

.featured-courses-subtitle-index {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.featured-course-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(20, 184, 166, 0.2);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-course-card-index:hover {
  transform: translateY(-8px);
  border-color: var(--color-secondary);
  box-shadow: 0 15px 40px rgba(20, 184, 166, 0.15);
}

.course-card-image-index {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
}

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

.course-card-title-index {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  font-family: var(--font-heading);
}

.course-card-description-index {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.course-card-link-index {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
  transition: all 300ms ease;
  margin-top: auto;
  gap: 0.5rem;
}

.course-card-link-index:hover {
  color: var(--color-secondary);
  gap: 1rem;
}

.course-card-link-index::after {
  content: '→';
  display: inline-block;
}

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

/* ABOUT SECTION - LIGHT */
.about-section-index {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.about-title-index {
  color: var(--color-text-light-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
}

.about-description-index {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
}

.about-benefits-list-index {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about-benefit-item-index {
  color: var(--color-text-light-primary);
  padding-left: var(--space-lg);
  position: relative;
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-benefit-item-index::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
}

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

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

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

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

/* FAQ SECTION - DARK */
.faq-section-index {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.faq-glow-top-index {
  position: absolute;
  top: -50px;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.faq-glow-bottom-index {
  position: absolute;
  bottom: 0;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.faq-title-index {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-md);
}

.faq-subtitle-index {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
}

.faq-items-index {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.faq-item-index {
  border-bottom: 1px solid rgba(20, 184, 166, 0.2);
  padding: clamp(1.5rem, 3vw, 2rem) 0;
  transition: all 300ms ease;
}

.faq-item-index:last-child {
  border-bottom: none;
}

.faq-item-index.active {
  background: rgba(20, 184, 166, 0.05);
  padding: clamp(1.5rem, 3vw, 2rem);
  margin: 0 -clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
}

.faq-question-index {
  background: none;
  border: none;
  color: var(--color-text-dark-primary);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  width: 100%;
  padding: 0;
  text-align: left;
  font-family: var(--font-heading);
  transition: color 300ms ease;
}

.faq-question-index:hover {
  color: var(--color-secondary);
}

.faq-question-index i {
  color: var(--color-secondary);
  transition: transform 300ms ease;
  flex-shrink: 0;
}

.faq-item-index.active .faq-question-index i {
  transform: rotate(180deg);
}

.faq-answer-index {
  color: var(--color-text-dark-secondary);
  margin-top: var(--space-md);
  line-height: 1.8;
  display: none;
  font-size: 0.95rem;
}

.faq-item-index.active .faq-answer-index {
  display: block;
}

/* CONTACT SECTION - DARK */
.contact-section-index {
  background: var(--color-bg-dark-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.contact-accent-shape-index {
  position: absolute;
  top: 0;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(20, 184, 166, 0.06);
  border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.contact-glow-index {
  position: absolute;
  bottom: -100px;
  right: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.contact-title-index {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-md);
}

.contact-subtitle-index {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
}

.contact-content-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.contact-form-index {
  flex: 1 1 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

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

.form-label-index {
  color: var(--color-text-dark-primary);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-input-index,
.form-textarea-index {
  width: 100%;
  padding: clamp(0.75rem, 1.5vw, 1rem);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text-dark-primary);
  transition: all 300ms ease;
}

.form-input-index:focus,
.form-textarea-index:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(20, 184, 166, 0.05);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

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

.form-submit-btn-index {
  width: 100%;
  padding: clamp(0.875rem, 1.5vw, 1.125rem);
  background: var(--color-primary);
  color: #0a0f1e;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  cursor: pointer;
  transition: all 300ms ease;
  font-family: var(--font-body);
}

.form-submit-btn-index:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
}

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

.contact-info-block-index {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-title-index {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  font-family: var(--font-heading);
}

.contact-info-item-index {
  padding: var(--space-md);
  background: rgba(20, 184, 166, 0.05);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-lg);
  transition: all 300ms ease;
}

.contact-info-item-index:hover {
  background: rgba(20, 184, 166, 0.1);
  border-color: rgba(20, 184, 166, 0.3);
}

.contact-info-item-title-index {
  color: var(--color-text-dark-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.contact-info-item-text-index {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

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

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

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

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

.cookie-banner-text-index {
  color: #e2e8f0;
  margin: 0;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  text-align: center;
  flex: 1 1 auto;
  min-width: 250px;
}

.cookie-banner-link-index {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 300ms ease;
}

.cookie-banner-link-index:hover {
  color: var(--color-secondary);
}

.cookie-banner-buttons-index {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 300ms ease;
  white-space: nowrap;
  font-family: var(--font-body);
}

.cookie-btn-accept-index {
  background: var(--color-primary);
  color: #0a0f1e;
}

.cookie-btn-accept-index:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

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

.cookie-btn-decline-index:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

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

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

  .features-card-index {
    flex: 1 1 100%;
    max-width: none;
  }

  .learning-path-step-index {
    flex-direction: column;
    gap: 1rem;
  }

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

  .testimonial-card-index {
    flex: 1 1 100%;
    max-width: none;
  }

  .featured-course-card-index {
    flex: 1 1 100%;
    max-width: none;
  }

  .cookie-banner-text-index {
    min-width: 100%;
    order: 1;
  }

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

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1 1 calc(50% - 0.375rem);
  }
}

@media (max-width: 480px) {
  .hero-stats-index {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .learning-path-step-index {
    padding: 1rem;
  }

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

/* FOCUS STATES FOR ACCESSIBILITY */
.btn:focus-visible,
.form-input-index:focus-visible,
.form-textarea-index:focus-visible,
.form-submit-btn-index:focus-visible,
.faq-question-index:focus-visible,
.cookie-btn-accept-index:focus-visible,
.cookie-btn-decline-index:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* REDUCED MOTION SUPPORT */
@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 {
    position: relative;
    overflow: hidden;
    background: var(--color-bg-dark-primary);
    padding: clamp(3rem, 8vw, 5rem) 0;
    color: var(--color-text-dark-muted);
    font-family: var(--font-body);
  }

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

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

  .footer-section {
    flex: 1 1 220px;
    min-width: 200px;
  }

  .footer-about {
    flex: 1 1 280px;
    max-width: 350px;
  }

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

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

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

  .footer-nav-link,
  .footer-legal-link {
    font-size: clamp(0.875rem, 1vw, 0.95rem);
    color: var(--color-text-dark-muted);
    text-decoration: none;
    transition: color 350ms cubic-bezier(0.4, 0, 0.2, 1);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

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

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

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

  .footer-contact-label {
    display: block;
    font-weight: 600;
    color: var(--color-text-dark-primary);
    margin-bottom: 0.25rem;
  }

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

  .footer-divider {
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(20, 184, 166, 0.2),
      transparent
    );
    margin: 2rem 0;
  }

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

  .footer-copyright {
    font-size: clamp(0.8125rem, 1vw, 0.9375rem);
    color: var(--color-text-dark-muted);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .footer-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
  }

  .footer-deco-glow-1 {
    top: -150px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(
      circle,
      rgba(20, 184, 166, 0.08) 0%,
      transparent 70%
    );
    border-radius: 50%;
    filter: blur(70px);
  }

  .footer-deco-glow-2 {
    bottom: -100px;
    left: -150px;
    width: 280px;
    height: 280px;
    background: radial-gradient(
      circle,
      rgba(45, 212, 191, 0.06) 0%,
      transparent 70%
    );
    border-radius: 50%;
    filter: blur(60px);
  }

  .footer-deco-accent {
    top: 50%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: rgba(20, 184, 166, 0.03);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(40px);
    animation: float-gentle 8s ease-in-out infinite;
  }

  @keyframes float-gentle {
    0%, 100% {
      transform: translateY(0) translateX(0);
    }
    50% {
      transform: translateY(20px) translateX(10px);
    }
  }

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

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

    .footer-about {
      flex: 1 1 100%;
      max-width: none;
      margin-bottom: 0.5rem;
    }

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

    .footer-deco-glow-1,
    .footer-deco-glow-2,
    .footer-deco-accent {
      opacity: 0.5;
    }
  }

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

/* Category Page Styles */
.category-page-educational-development {
  width: 100%;
  background: #042f2e;
}

/* HERO SECTION */
.hero-section-educational-development {
  background: #042f2e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-deco-glow-primary {
  position: absolute;
  top: 5%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(80px);
}

.hero-deco-mesh-secondary {
  position: absolute;
  bottom: 10%;
  left: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(ellipse 80% 100%, rgba(20, 184, 166, 0.08) 0%, transparent 75%);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  pointer-events: none;
  z-index: 1;
  filter: blur(70px);
}

.hero-deco-accent-orb {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(60px);
}

.hero-deco-line-element {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.15), transparent);
  pointer-events: none;
  z-index: 1;
}

.hero-content-educational-development {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-title-educational-development {
  color: #ffffff;
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
}

.hero-subtitle-educational-development {
  color: #99f6e4;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
}

.hero-buttons-educational-development {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(0.5rem, 2vw, 1.5rem);
}

.hero-stats-educational-development {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(20, 184, 166, 0.2);
}

.stat-item-educational-development {
  border-left: 3px solid #2dd4bf;
  padding-left: clamp(0.75rem, 2vw, 1.25rem);
}

.stat-number-educational-development {
  color: #2dd4bf;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  display: block;
  line-height: 1;
}

.stat-label-educational-development {
  color: #a5b4fc;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  margin-top: 0.5rem;
  display: block;
}

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

.posts-deco-shape-1 {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  pointer-events: none;
  z-index: 1;
  filter: blur(40px);
}

.posts-deco-shape-2 {
  position: absolute;
  bottom: 15%;
  left: -80px;
  width: 320px;
  height: 320px;
  background: rgba(20, 184, 166, 0.04);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  pointer-events: none;
  z-index: 1;
  filter: blur(50px);
}

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

.posts-title-educational-development {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.posts-subtitle-educational-development {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}

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

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

.card-educational-development:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-color: rgba(20, 184, 166, 0.3);
}

.card-image-educational-development {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.card-title-educational-development {
  color: #1e293b;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.3;
}

.card-description-educational-development {
  color: #64748b;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.6;
}

.card-meta-educational-development {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1rem);
  margin: clamp(0.5rem, 1vw, 1rem) 0;
  padding: clamp(0.75rem, 1.5vw, 1rem) 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.meta-badge-educational-development {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.4rem, 1vw, 0.6rem) clamp(0.75rem, 1.5vw, 1rem);
  background: rgba(20, 184, 166, 0.08);
  border-radius: 20px;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: #0f766e;
}

.meta-badge-educational-development i {
  color: #14b8a6;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
}

.card-link-educational-development {
  color: #14b8a6;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.card-link-educational-development:hover {
  color: #0d9488;
  transform: translateX(4px);
}

/* LEARNING PATH SECTION */
.learning-path-section-educational-development {
  background: #064e4a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.learning-deco-accent-1 {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(70px);
}

.learning-deco-accent-2 {
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(80px);
}

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

.learning-title-educational-development {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.learning-subtitle-educational-development {
  color: #99f6e4;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.learning-steps-educational-development {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.learning-step-educational-development {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: rgba(20, 184, 166, 0.06);
  border-radius: 10px;
  border-left: 4px solid #2dd4bf;
  transition: all 0.3s ease;
}

.learning-step-educational-development:hover {
  background: rgba(20, 184, 166, 0.1);
  transform: translateX(8px);
}

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

.learning-step-content-educational-development {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.learning-step-title-educational-development {
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
}

.learning-step-text-educational-development {
  color: #a5b4fc;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.7;
}

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

.benefits-deco-shape-large {
  position: absolute;
  top: -50px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(20, 184, 166, 0.04);
  border-radius: 35% 65% 42% 58% / 68% 45% 55% 32%;
  pointer-events: none;
  z-index: 1;
  filter: blur(60px);
}

.benefits-content-educational-development {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 10;
}

.benefits-text-educational-development {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.benefits-title-educational-development {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.benefits-description-educational-development {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  max-width: 500px;
}

.benefits-list-educational-development {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.benefits-list-item-educational-development {
  color: #475569;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.6;
  padding-left: clamp(1.75rem, 3vw, 2.5rem);
  position: relative;
}

.benefits-list-item-educational-development::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #14b8a6;
  border-radius: 50%;
}

.benefits-link-educational-development {
  color: #14b8a6;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.benefits-link-educational-development:hover {
  color: #0d9488;
  transform: translateX(4px);
}

.benefits-visual-educational-development {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.benefits-visual-inner-educational-development {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(45, 212, 191, 0.05) 100%);
  border-radius: 16px;
  border: 2px solid rgba(20, 184, 166, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-visual-inner-educational-development i {
  font-size: clamp(80px, 15vw, 120px);
  color: #2dd4bf;
  opacity: 0.3;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .benefits-content-educational-development {
    grid-template-columns: 1fr;
  }

  .benefits-visual-educational-development {
    min-height: 250px;
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
  }

  .hero-buttons-educational-development {
    flex-direction: column;
  }

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

  .posts-grid-educational-development {
    flex-direction: column;
    align-items: center;
  }

  .card-educational-development {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .learning-step-educational-development {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-stats-educational-development {
    grid-template-columns: 1fr;
  }

  .learning-step-educational-development {
    gap: 1rem;
  }

  .learning-step-number-educational-development {
    min-width: 50px;
  }

  .benefits-visual-inner-educational-development {
    width: 220px;
    height: 220px;
  }
}

/* ANIMATION UTILITIES */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Post Page 1 Styles */
.main-time-management-productivity {
  width: 100%;
}

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

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

.hero-section-time-management-productivity::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-time-management-productivity::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.breadcrumbs-time-management-productivity a {
  color: #2dd4bf;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-time-management-productivity a:hover {
  color: #ffffff;
}

.breadcrumbs-time-management-productivity span {
  color: #64748b;
}

.breadcrumbs-time-management-productivity span:last-child {
  color: #ffffff;
}

.hero-content-time-management-productivity {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

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

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

.hero-title-time-management-productivity {
  color: #ffffff;
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-time-management-productivity {
  color: #2dd4bf;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
}

.hero-description-time-management-productivity {
  color: #a5b4fc;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.meta-badge-time-management-productivity {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #99f6e4;
}

.meta-badge-time-management-productivity i {
  color: #14b8a6;
}

.hero-stats-time-management-productivity {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.stat-item-time-management-productivity {
  border-left: 3px solid #2dd4bf;
  padding-left: 1rem;
}

.stat-number-time-management-productivity {
  color: #2dd4bf;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  display: block;
  line-height: 1;
}

.stat-label-time-management-productivity {
  color: #a5b4fc;
  font-size: 0.9rem;
  margin-top: 0.25rem;
  display: block;
}

.hero-image-time-management-productivity {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.introduction-section-time-management-productivity {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.introduction-text-time-management-productivity {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-time-management-productivity {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-time-management-productivity {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.introduction-paragraph-time-management-productivity {
  color: #64748b;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.introduction-image-time-management-productivity img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.principles-section-time-management-productivity {
  background: #064e4a;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-header-time-management-productivity {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-tag-time-management-productivity {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.2);
  color: #2dd4bf;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.principles-title-time-management-productivity {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.principles-subtitle-time-management-productivity {
  color: #99f6e4;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.principles-steps-time-management-productivity {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.principles-step-time-management-productivity {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 12px;
  border-left: 3px solid #2dd4bf;
}

.principles-step-number-time-management-productivity {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #2dd4bf;
  line-height: 1;
  min-width: 60px;
  flex-shrink: 0;
}

.principles-step-content-time-management-productivity {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.principles-step-title-time-management-productivity {
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
}

.principles-step-text-time-management-productivity {
  color: #99f6e4;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
}

.strategies-section-time-management-productivity {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.strategies-text-time-management-productivity {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-image-time-management-productivity {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-title-time-management-productivity {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.strategies-paragraph-time-management-productivity {
  color: #64748b;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.strategies-highlight-time-management-productivity {
  padding: 2rem;
  background: #ffffff;
  border-left: 4px solid #14b8a6;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.strategies-quote-time-management-productivity {
  margin: 0;
}

.quote-text-time-management-productivity {
  color: #1e293b;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
}

.strategies-list-time-management-productivity {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.strategies-list-item-time-management-productivity {
  color: #64748b;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
}

.strategies-list-item-time-management-productivity::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #14b8a6;
  border-radius: 50%;
}

.strategies-image-time-management-productivity img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.tools-section-time-management-productivity {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.tools-title-time-management-productivity {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.tools-subtitle-time-management-productivity {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.tools-grid-time-management-productivity {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.tools-card-time-management-productivity {
  flex: 1 1 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.tools-card-time-management-productivity:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.tools-card-icon-time-management-productivity {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(20, 184, 166, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14b8a6;
  font-size: 1.5rem;
}

.tools-card-title-time-management-productivity {
  color: #1e293b;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
}

.tools-card-text-time-management-productivity {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

.challenges-section-time-management-productivity {
  background: #0f766e;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.challenges-image-time-management-productivity {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-text-time-management-productivity {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-image-time-management-productivity img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.challenges-title-time-management-productivity {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.challenges-paragraph-time-management-productivity {
  color: #99f6e4;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.challenges-box-time-management-productivity {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid #2dd4bf;
  margin-bottom: 1.5rem;
}

.challenges-box-title-time-management-productivity {
  color: #2dd4bf;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.challenges-box-text-time-management-productivity {
  color: #99f6e4;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.conclusion-section-time-management-productivity {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.conclusion-title-time-management-productivity {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.conclusion-paragraph-time-management-productivity {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-action-time-management-productivity {
  margin-top: 2.5rem;
}

.btn-conclusion-time-management-productivity {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #14b8a6;
  color: #0f172a;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-conclusion-time-management-productivity:hover {
  background: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(20, 184, 166, 0.2);
}

.related-section-time-management-productivity {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.related-title-time-management-productivity {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.related-subtitle-time-management-productivity {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.related-cards-time-management-productivity {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.related-card-time-management-productivity {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.related-card-time-management-productivity:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

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

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

.related-card-title-time-management-productivity {
  color: #1e293b;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
}

.related-card-text-time-management-productivity {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-time-management-productivity {
  color: #14b8a6;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.related-card-link-time-management-productivity:hover {
  color: #0d9488;
}

.disclaimer-section-time-management-productivity {
  background: #f1f5f9;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-time-management-productivity {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-time-management-productivity {
  color: #1e293b;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-time-management-productivity {
  color: #64748b;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-content-time-management-productivity,
  .introduction-content-time-management-productivity,
  .strategies-content-time-management-productivity,
  .challenges-content-time-management-productivity {
    flex-direction: column;
  }

  .hero-text-block-time-management-productivity,
  .hero-image-block-time-management-productivity,
  .introduction-text-time-management-productivity,
  .introduction-image-time-management-productivity,
  .strategies-text-time-management-productivity,
  .strategies-image-time-management-productivity,
  .challenges-image-time-management-productivity,
  .challenges-text-time-management-productivity {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-time-management-productivity {
    grid-template-columns: repeat(2, 1fr);
  }

  .principles-step-time-management-productivity {
    flex-direction: column;
  }

  .principles-step-number-time-management-productivity {
    min-width: auto;
  }

  .tools-card-time-management-productivity {
    flex: 1 1 100%;
    max-width: none;
  }

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

@media (max-width: 480px) {
  .hero-stats-time-management-productivity {
    grid-template-columns: 1fr;
  }

  .breadcrumbs-time-management-productivity {
    font-size: 0.7rem;
  }
}

/* Post Page 2 Styles */
.main-learning-fundamentals {
  width: 100%;
}

.main-learning-fundamentals section {
  width: 100%;
  overflow: hidden;
}

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

.hero-section-learning-fundamentals {
  background: #042f2e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.hero-section-learning-fundamentals::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-section-learning-fundamentals::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-section-learning-fundamentals .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.breadcrumbs-learning-fundamentals {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-learning-fundamentals a {
  color: #14b8a6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-learning-fundamentals a:hover {
  color: #2dd4bf;
}

.breadcrumbs-learning-fundamentals span {
  color: #64748b;
}

.hero-content-learning-fundamentals {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.hero-title-learning-fundamentals {
  color: #ffffff;
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  line-height: 1.1;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-learning-fundamentals {
  color: #99f6e4;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  line-height: 1.6;
  max-width: 500px;
  font-weight: 400;
}

.hero-meta-learning-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-learning-fundamentals {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  border-radius: 20px;
  font-size: 0.85rem;
  color: #a7f3d0;
}

.meta-badge-learning-fundamentals i {
  color: #14b8a6;
}

.hero-stats-learning-fundamentals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(20, 184, 166, 0.2);
}

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

.stat-number-learning-fundamentals {
  color: #2dd4bf;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
}

.stat-label-learning-fundamentals {
  color: #a5b4fc;
  font-size: 0.85rem;
}

.hero-image-learning-fundamentals {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-learning-fundamentals {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

@media (max-width: 1024px) {
  .hero-section-learning-fundamentals .container {
    grid-template-columns: 1fr;
  }

  .hero-image-learning-fundamentals {
    order: -1;
  }
}

.intro-section-learning-fundamentals {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.intro-text-learning-fundamentals {
  flex: 1 1 45%;
}

.intro-title-learning-fundamentals {
  color: #1e293b;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-description-learning-fundamentals {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-learning-fundamentals {
  flex: 1 1 45%;
}

.intro-img-learning-fundamentals {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-learning-fundamentals {
    flex-direction: column;
  }

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

.methods-section-learning-fundamentals {
  background: #064e4a;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.section-tag-learning-fundamentals {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  color: #2dd4bf;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.methods-title-learning-fundamentals {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.section-subtitle-learning-fundamentals {
  color: #99f6e4;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.methods-content-learning-fundamentals {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.method-step-learning-fundamentals {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(20, 184, 166, 0.08);
  border-radius: 12px;
  border-left: 4px solid #2dd4bf;
}

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

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

.step-title-learning-fundamentals {
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
}

.step-text-learning-fundamentals {
  color: #a7f3d0;
  font-size: 0.95rem;
  line-height: 1.7;
}

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

  .step-number-learning-fundamentals {
    margin-bottom: 0;
  }
}

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

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

.techniques-text-learning-fundamentals {
  flex: 1 1 45%;
}

.techniques-title-learning-fundamentals {
  color: #1e293b;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.techniques-description-learning-fundamentals {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.techniques-list-learning-fundamentals {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.technique-item-learning-fundamentals {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.technique-icon-learning-fundamentals {
  color: #14b8a6;
  font-weight: bold;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.technique-content-learning-fundamentals {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.technique-name-learning-fundamentals {
  color: #1e293b;
  font-size: 1.05rem;
  font-weight: 600;
}

.technique-detail-learning-fundamentals {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}

.techniques-image-learning-fundamentals {
  flex: 1 1 45%;
}

.techniques-img-learning-fundamentals {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .techniques-wrapper-learning-fundamentals {
    flex-direction: column;
  }

  .techniques-text-learning-fundamentals,
  .techniques-image-learning-fundamentals {
    flex: 1 1 100%;
  }
}

.psychology-section-learning-fundamentals {
  background: #0f766e;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.psychology-title-learning-fundamentals {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
}

.psychology-content-learning-fundamentals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.psychology-block-learning-fundamentals {
  background: rgba(20, 184, 166, 0.08);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.psychology-subtitle-learning-fundamentals {
  color: #2dd4bf;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.psychology-text-learning-fundamentals {
  color: #a7f3d0;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.psychology-text-learning-fundamentals:last-child {
  margin-bottom: 0;
}

.featured-quote-learning-fundamentals {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #2dd4bf;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 8px;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.quote-text-learning-fundamentals {
  color: #ffffff;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.quote-cite-learning-fundamentals {
  color: #99f6e4;
  font-size: 0.9rem;
  font-style: normal;
}

.obstacles-section-learning-fundamentals {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.obstacles-image-learning-fundamentals {
  flex: 1 1 40%;
  order: -1;
}

.obstacles-img-learning-fundamentals {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.obstacles-text-learning-fundamentals {
  flex: 1 1 60%;
}

.obstacles-title-learning-fundamentals {
  color: #0f172a;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.obstacles-intro-learning-fundamentals {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.obstacles-list-learning-fundamentals {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.obstacle-item-learning-fundamentals {
  background: #ffffff;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 12px;
  border-left: 4px solid #14b8a6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.obstacle-title-learning-fundamentals {
  color: #1e293b;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.obstacle-text-learning-fundamentals {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .obstacles-wrapper-learning-fundamentals {
    flex-direction: column;
  }

  .obstacles-image-learning-fundamentals {
    order: 0;
    flex: 1 1 100%;
  }

  .obstacles-text-learning-fundamentals {
    flex: 1 1 100%;
  }
}

.resources-section-learning-fundamentals {
  background: #042f2e;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.resources-title-learning-fundamentals {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
}

.resources-grid-learning-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.resource-card-learning-fundamentals {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.resource-card-learning-fundamentals:hover {
  border-color: #2dd4bf;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.1);
}

.resource-icon-learning-fundamentals {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.15);
  border-radius: 10px;
  color: #2dd4bf;
  font-size: 1.5rem;
}

.resource-name-learning-fundamentals {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
}

.resource-description-learning-fundamentals {
  color: #a7f3d0;
  font-size: 0.9rem;
  line-height: 1.6;
}

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

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

.conclusion-content-learning-fundamentals {
  flex: 1 1 50%;
}

.conclusion-title-learning-fundamentals {
  color: #0f172a;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-text-learning-fundamentals {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.conclusion-cta-learning-fundamentals {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.cta-button-learning-fundamentals {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #14b8a6;
  color: #000000;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-learning-fundamentals:hover {
  background: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
}

.conclusion-image-learning-fundamentals {
  flex: 1 1 50%;
}

.conclusion-img-learning-fundamentals {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .conclusion-section-learning-fundamentals .container {
    display: flex;
    flex-direction: column;
  }

  .conclusion-content-learning-fundamentals,
  .conclusion-image-learning-fundamentals {
    flex: 1 1 100%;
  }
}

.conclusion-section-learning-fundamentals .container {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.disclaimer-section-learning-fundamentals {
  background: #f8fafc;
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-box-learning-fundamentals {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #14b8a6;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-learning-fundamentals {
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-learning-fundamentals {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
}

.related-section-learning-fundamentals {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.related-title-learning-fundamentals {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
}

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

.related-card-learning-fundamentals {
  flex: 1 1 300px;
  max-width: 380px;
  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-learning-fundamentals:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.related-card-image-learning-fundamentals {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-learning-fundamentals {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-learning-fundamentals {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
}

.related-card-title-learning-fundamentals {
  color: #0f172a;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-learning-fundamentals {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-learning-fundamentals {
  color: #14b8a6;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.related-card-link-learning-fundamentals:hover {
  color: #0d9488;
}

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

@media (min-width: 768px) {
  .conclusion-section-learning-fundamentals .container {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .intro-content-learning-fundamentals {
    display: flex;
    flex-direction: row;
  }

  .techniques-wrapper-learning-fundamentals {
    display: flex;
    flex-direction: row;
  }

  .obstacles-wrapper-learning-fundamentals {
    display: flex;
    flex-direction: row;
  }
}

/* Post Page 3 Styles */
.main-communication-skills-development {
  width: 100%;
  background: #ffffff;
}

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

/* HERO SECTION */
.hero-section-communication-skills-development {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-communication-skills-development::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-section-communication-skills-development::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-content-communication-skills-development {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.breadcrumbs-communication-skills-development {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-communication-skills-development a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-communication-skills-development a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.breadcrumbs-communication-skills-development span {
  color: #64748b;
}

.hero-title-communication-skills-development {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-communication-skills-development {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

.hero-meta-communication-skills-development {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.meta-badge-communication-skills-development {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #93c5fd;
}

.meta-badge-communication-skills-development i {
  font-size: 0.875rem;
}

.hero-buttons-communication-skills-development {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary-communication-skills-development,
.btn-secondary-communication-skills-development {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-communication-skills-development {
  background: #3b82f6;
  color: #ffffff;
}

.btn-primary-communication-skills-development:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

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

.btn-secondary-communication-skills-development:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

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

.hero-image-communication-skills-development {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: block;
  max-width: 100%;
}

.hero-stats-communication-skills-development {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 5vw, 4rem);
}

.stat-item-communication-skills-development {
  border-left: 3px solid #3b82f6;
  padding-left: clamp(1rem, 2vw, 1.5rem);
}

.stat-number-communication-skills-development {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #3b82f6;
  display: block;
  margin-bottom: 0.25rem;
}

.stat-label-communication-skills-development {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #cbd5e1;
}

/* INTRO SECTION */
.intro-section-communication-skills-development {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-communication-skills-development {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-text-primary-communication-skills-development,
.intro-text-secondary-communication-skills-development {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-communication-skills-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-communication-skills-development {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
  max-width: 100%;
}

/* FOUNDATIONS SECTION */
.foundations-section-communication-skills-development {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.section-header-communication-skills-development {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

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

.section-title-communication-skills-development {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle-communication-skills-development {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.foundation-card-communication-skills-development {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.foundation-card-communication-skills-development:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.foundation-icon-communication-skills-development {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  color: #3b82f6;
  font-size: 1.5rem;
}

.foundation-title-communication-skills-development {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.foundation-text-communication-skills-development {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

/* PRACTICAL SECTION */
.practical-section-communication-skills-development {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-wrapper-communication-skills-development {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.practical-text-communication-skills-development {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.practical-intro-communication-skills-development {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.techniques-list-communication-skills-development {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.technique-item-communication-skills-development {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.technique-number-communication-skills-development {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.technique-content-communication-skills-development {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.technique-title-communication-skills-development {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  color: #1e293b;
}

.technique-text-communication-skills-development {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.practical-image-communication-skills-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-img-communication-skills-development {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
  max-width: 100%;
}

/* SCENARIOS SECTION */
.scenarios-section-communication-skills-development {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.scenarios-wrapper-communication-skills-development > .scenarios-wrapper-communication-skills-development:first-child {
  flex: 1 1 50%;
  max-width: 50%;
}

.scenario-text-communication-skills-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.scenario-intro-communication-skills-development {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

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

.scenario-card-communication-skills-development {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border-left: 3px solid #3b82f6;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.scenario-card-title-communication-skills-development {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

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

.scenario-image-communication-skills-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.scenario-img-communication-skills-development {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
  max-width: 100%;
}

/* QUOTE SECTION */
.quote-section-communication-skills-development {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-communication-skills-development {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.quote-text-communication-skills-development {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-weight: 500;
}

.quote-cite-communication-skills-development {
  font-size: 0.9rem;
  color: #cbd5e1;
  font-style: normal;
}

/* DEVELOPMENT SECTION */
.development-section-communication-skills-development {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.development-img-communication-skills-development {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
  max-width: 100%;
}

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

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

.development-intro-communication-skills-development {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.development-steps-communication-skills-development {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.development-step-communication-skills-development {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.development-step-title-communication-skills-development {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.development-step-text-communication-skills-development {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

/* CTA SECTION */
.cta-section-communication-skills-development {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-content-communication-skills-development {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

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

.cta-description-communication-skills-development {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.cta-buttons-communication-skills-development {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* DISCLAIMER SECTION */
.disclaimer-section-communication-skills-development {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-box-communication-skills-development {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-communication-skills-development {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #92400e;
  margin-bottom: 0.75rem;
}

.disclaimer-text-communication-skills-development {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #b45309;
  line-height: 1.7;
}

/* RELATED SECTION */
.related-section-communication-skills-development {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-card-communication-skills-development {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.related-card-communication-skills-development:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

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

.related-card-img-communication-skills-development {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-communication-skills-development {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 2vw, 1.5rem);
}

.related-card-title-communication-skills-development {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 600;
  color: #1e293b;
}

.related-card-text-communication-skills-development {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #64748b;
  line-height: 1.6;
}

.related-card-link-communication-skills-development {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  margin-top: 0.5rem;
}

.related-card-link-communication-skills-development:hover {
  color: #2563eb;
  text-decoration: underline;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .hero-content-communication-skills-development,
  .intro-content-wrapper-communication-skills-development,
  .practical-wrapper-communication-skills-development,
  .scenarios-wrapper-communication-skills-development,
  .development-wrapper-communication-skills-development {
    flex-direction: column;
  }

  .hero-text-block-communication-skills-development,
  .hero-image-block-communication-skills-development,
  .intro-text-communication-skills-development,
  .intro-image-communication-skills-development,
  .practical-text-communication-skills-development,
  .practical-image-communication-skills-development,
  .scenario-text-communication-skills-development,
  .scenario-image-communication-skills-development,
  .development-image-communication-skills-development,
  .development-text-communication-skills-development {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .cta-buttons-communication-skills-development {
    flex-direction: column;
  }

  .cta-buttons-communication-skills-development .btn-primary-communication-skills-development,
  .cta-buttons-communication-skills-development .btn-secondary-communication-skills-development {
    width: 100%;
  }

  .hero-buttons-communication-skills-development {
    flex-direction: column;
  }

  .hero-buttons-communication-skills-development .btn-primary-communication-skills-development,
  .hero-buttons-communication-skills-development .btn-secondary-communication-skills-development {
    width: 100%;
  }

  .hero-stats-communication-skills-development {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-stats-communication-skills-development {
    grid-template-columns: 1fr;
  }

  .related-card-communication-skills-development {
    flex: 1 1 100%;
    max-width: none;
  }

  .foundations-grid-communication-skills-development {
    justify-content: stretch;
  }

  .foundation-card-communication-skills-development {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section-communication-skills-development {
  animation: fadeInUp 0.6s ease-out;
}

/* Post Page 4 Styles */
.main-creative-thinking-innovation {
  width: 100%;
}

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

/* HERO SECTION */
.hero-section-creative-thinking-innovation {
  background: #042f2e;
  padding: clamp(2rem, 5vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-creative-thinking-innovation::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-section-creative-thinking-innovation::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.breadcrumbs-creative-thinking-innovation {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  position: relative;
  z-index: 1;
}

.breadcrumbs-creative-thinking-innovation a {
  color: #99f6e4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-creative-thinking-innovation a:hover {
  color: #2dd4bf;
}

.breadcrumbs-creative-thinking-innovation span {
  color: #64b5a6;
}

.hero-content-creative-thinking-innovation {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 1;
}

.hero-meta-creative-thinking-innovation {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.meta-badge-creative-thinking-innovation {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  color: #99f6e4;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.meta-badge-creative-thinking-innovation i {
  font-size: 0.85em;
}

.hero-title-creative-thinking-innovation {
  color: #ffffff;
  font-size: clamp(1.75rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

.hero-subtitle-creative-thinking-innovation {
  color: #99f6e4;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 400;
  line-height: 1.7;
  max-width: 650px;
  margin: 0;
}

.hero-image-wrapper-creative-thinking-innovation {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hero-image-creative-thinking-innovation {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  max-width: 100%;
}

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

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

.intro-text-creative-thinking-innovation {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-creative-thinking-innovation {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  font-weight: 700;
}

.intro-description-creative-thinking-innovation {
  color: #64748b;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.8;
  margin: 0 0 1rem 0;
}

.intro-image-creative-thinking-innovation {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-creative-thinking-innovation {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
  max-width: 100%;
}

/* PRINCIPLES SECTION */
.principles-section-creative-thinking-innovation {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.principles-header-creative-thinking-innovation {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.principles-title-creative-thinking-innovation {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.principles-subtitle-creative-thinking-innovation {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.principles-cards-creative-thinking-innovation {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.principle-card-creative-thinking-innovation {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.principle-card-creative-thinking-innovation:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.principle-icon-creative-thinking-innovation {
  width: 50px;
  height: 50px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14b8a6;
  font-size: 1.5rem;
}

.principle-title-creative-thinking-innovation {
  color: #1e293b;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  margin: 0;
  font-weight: 600;
}

.principle-text-creative-thinking-innovation {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* METHODS SECTION */
.methods-section-creative-thinking-innovation {
  background: #064e4a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.methods-text-creative-thinking-innovation {
  flex: 1 1 50%;
  max-width: 50%;
}

.methods-title-creative-thinking-innovation {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  font-weight: 700;
}

.methods-description-creative-thinking-innovation {
  color: #99f6e4;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.8;
  margin: 0 0 clamp(1.5rem, 3vw, 2rem) 0;
}

.methods-list-creative-thinking-innovation {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.method-item-creative-thinking-innovation {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.method-number-creative-thinking-innovation {
  color: #2dd4bf;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.method-content-creative-thinking-innovation {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.method-title-creative-thinking-innovation {
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  margin: 0;
  font-weight: 600;
}

.method-text-creative-thinking-innovation {
  color: #a7f3d0;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.methods-image-creative-thinking-innovation {
  flex: 1 1 50%;
  max-width: 50%;
}

.methods-img-creative-thinking-innovation {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  display: block;
  max-width: 100%;
}

/* BARRIERS SECTION */
.barriers-section-creative-thinking-innovation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.barriers-header-creative-thinking-innovation {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.barriers-title-creative-thinking-innovation {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.barriers-subtitle-creative-thinking-innovation {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.featured-quote-creative-thinking-innovation {
  background: #f1f5f9;
  border-left: 4px solid #14b8a6;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin: clamp(2rem, 4vw, 3rem) auto;
  max-width: 700px;
}

.quote-text-creative-thinking-innovation {
  color: #1e293b;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-style: italic;
  line-height: 1.8;
  margin: 0 0 1rem 0;
}

.quote-author-creative-thinking-innovation {
  color: #64748b;
  font-size: 0.9rem;
  font-style: normal;
  margin: 0;
  display: block;
}

.barriers-content-creative-thinking-innovation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.barriers-image-creative-thinking-innovation {
  flex: 1 1 50%;
  max-width: 50%;
}

.barriers-img-creative-thinking-innovation {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
  max-width: 100%;
}

.barriers-list-creative-thinking-innovation {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.barrier-item-creative-thinking-innovation {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.barrier-title-creative-thinking-innovation {
  color: #1e293b;
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  margin: 0;
  font-weight: 600;
}

.barrier-text-creative-thinking-innovation {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* APPLICATION SECTION */
.application-section-creative-thinking-innovation {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.application-header-creative-thinking-innovation {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.application-title-creative-thinking-innovation {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.application-subtitle-creative-thinking-innovation {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.application-cards-creative-thinking-innovation {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.app-card-creative-thinking-innovation {
  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;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.app-card-creative-thinking-innovation:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.app-icon-creative-thinking-innovation {
  width: 50px;
  height: 50px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14b8a6;
  font-size: 1.5rem;
}

.app-title-creative-thinking-innovation {
  color: #1e293b;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  margin: 0;
  font-weight: 600;
}

.app-text-creative-thinking-innovation {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* PRACTICES SECTION */
.practices-section-creative-thinking-innovation {
  background: #0f766e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.practices-text-creative-thinking-innovation {
  flex: 1 1 50%;
  max-width: 50%;
}

.practices-title-creative-thinking-innovation {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  font-weight: 700;
}

.practices-description-creative-thinking-innovation {
  color: #99f6e4;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.8;
  margin: 0 0 clamp(1.5rem, 3vw, 2rem) 0;
}

.practices-list-creative-thinking-innovation {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  margin: 0;
  padding: 0;
}

.practice-item-creative-thinking-innovation {
  color: #a7f3d0;
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.practice-item-creative-thinking-innovation::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2dd4bf;
  font-weight: bold;
  font-size: 1.1rem;
}

.practice-item-creative-thinking-innovation strong {
  color: #ffffff;
}

.practices-image-creative-thinking-innovation {
  flex: 1 1 50%;
  max-width: 50%;
}

.practices-img-creative-thinking-innovation {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  display: block;
  max-width: 100%;
}

/* CONCLUSION SECTION */
.conclusion-section-creative-thinking-innovation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-creative-thinking-innovation {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-creative-thinking-innovation {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin: 0 0 clamp(1.5rem, 3vw, 2rem) 0;
  font-weight: 700;
}

.conclusion-text-creative-thinking-innovation {
  color: #64748b;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.8;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
}

.conclusion-highlight-creative-thinking-innovation {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(45, 212, 191, 0.05) 100%);
  border-left: 4px solid #14b8a6;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  margin: clamp(2rem, 4vw, 3rem) 0;
}

.highlight-text-creative-thinking-innovation {
  color: #1e293b;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
}

.cta-buttons-creative-thinking-innovation {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.btn-primary-creative-thinking-innovation,
.btn-secondary-creative-thinking-innovation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary-creative-thinking-innovation {
  background: #14b8a6;
  color: #000000;
}

.btn-primary-creative-thinking-innovation:hover {
  background: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
}

.btn-secondary-creative-thinking-innovation {
  background: transparent;
  border-color: #14b8a6;
  color: #14b8a6;
}

.btn-secondary-creative-thinking-innovation:hover {
  background: #14b8a6;
  color: #000000;
  transform: translateY(-2px);
}

/* DISCLAIMER SECTION */
.disclaimer-section-creative-thinking-innovation {
  background: #f8fafc;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-creative-thinking-innovation {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.disclaimer-title-creative-thinking-innovation {
  color: #1e293b;
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.disclaimer-text-creative-thinking-innovation {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* RELATED SECTION */
.related-section-creative-thinking-innovation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-creative-thinking-innovation {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.related-title-creative-thinking-innovation {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin: 0 0 0.5rem 0;
  font-weight: 700;
}

.related-subtitle-creative-thinking-innovation {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  margin: 0;
  line-height: 1.6;
}

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

.related-card-creative-thinking-innovation {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.related-card-creative-thinking-innovation:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.related-image-creative-thinking-innovation {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-img-creative-thinking-innovation {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-content-creative-thinking-innovation {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.related-card-title-creative-thinking-innovation {
  color: #1e293b;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

.related-card-text-creative-thinking-innovation {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

.related-link-creative-thinking-innovation {
  color: #14b8a6;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.5rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.related-card-creative-thinking-innovation:hover .related-link-creative-thinking-innovation {
  color: #0d9488;
  transform: translateX(4px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .introduction-content-creative-thinking-innovation,
  .methods-content-creative-thinking-innovation,
  .barriers-content-creative-thinking-innovation,
  .practices-content-creative-thinking-innovation {
    flex-direction: column;
  }

  .intro-text-creative-thinking-innovation,
  .intro-image-creative-thinking-innovation,
  .methods-text-creative-thinking-innovation,
  .methods-image-creative-thinking-innovation,
  .barriers-image-creative-thinking-innovation,
  .barriers-list-creative-thinking-innovation,
  .practices-text-creative-thinking-innovation,
  .practices-image-creative-thinking-innovation {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .cta-buttons-creative-thinking-innovation {
    flex-direction: column;
  }

  .btn-primary-creative-thinking-innovation,
  .btn-secondary-creative-thinking-innovation {
    width: 100%;
  }

  .principle-card-creative-thinking-innovation,
  .app-card-creative-thinking-innovation,
  .related-card-creative-thinking-innovation {
    flex: 1 1 100%;
    max-width: none;
  }

  .method-item-creative-thinking-innovation {
    gap: 1rem;
  }

  .method-number-creative-thinking-innovation {
    min-width: 50px;
  }
}

@media (max-width: 480px) {
  .hero-meta-creative-thinking-innovation {
    flex-direction: column;
    align-items: flex-start;
  }

  .meta-badge-creative-thinking-innovation {
    width: 100%;
    justify-content: flex-start;
  }

  .breadcrumbs-creative-thinking-innovation {
    font-size: 0.7rem;
  }

  .barriers-list-creative-thinking-innovation {
    gap: 1rem;
  }

  .practices-list-creative-thinking-innovation {
    gap: 0.5rem;
  }
}

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

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

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

/* HERO SECTION - Dark archetype */
.hero-section-leadership-self-management {
  background: linear-gradient(135deg, #042f2e 0%, #064e4a 100%);
  padding: clamp(2rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-leadership-self-management::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-leadership-self-management::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumbs-leadership-self-management {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: 0.9rem;
}

.breadcrumbs-leadership-self-management a {
  color: #99f6e4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-leadership-self-management a:hover {
  color: #2dd4bf;
  text-decoration: underline;
}

.breadcrumbs-leadership-self-management span {
  color: #a5b4fc;
}

.hero-content-leadership-self-management {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 1;
}

.hero-title-leadership-self-management {
  color: #ffffff;
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 800px;
}

.hero-subtitle-leadership-self-management {
  color: #2dd4bf;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  line-height: 1.6;
  max-width: 700px;
}

.hero-meta-leadership-self-management {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.meta-badge-leadership-self-management {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  border-radius: 20px;
  font-size: 0.85rem;
  color: #99f6e4;
}

.meta-badge-leadership-self-management i {
  color: #2dd4bf;
}

.hero-stats-leadership-self-management {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2rem;
  max-width: 600px;
}

.stat-item-leadership-self-management {
  border-left: 3px solid #2dd4bf;
  padding-left: 1.5rem;
}

.stat-number-leadership-self-management {
  display: block;
  color: #2dd4bf;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-leadership-self-management {
  display: block;
  color: #a5b4fc;
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-image-wrapper-leadership-self-management {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}

.hero-image-leadership-self-management {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-section-leadership-self-management {
    padding: clamp(1.5rem, 5vw, 2.5rem) 0;
  }

  .hero-image-wrapper-leadership-self-management {
    margin-top: 2rem;
  }
}

/* INTRODUCTION SECTION - Light */
.introduction-section-leadership-self-management {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.introduction-text-leadership-self-management {
  flex: 1 1 50%;
}

.introduction-title-leadership-self-management {
  color: #0f172a;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.introduction-paragraph-leadership-self-management {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.introduction-image-leadership-self-management {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

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

/* PILLARS SECTION - Light */
.pillars-section-leadership-self-management {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-header-leadership-self-management {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-tag-leadership-self-management {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pillars-title-leadership-self-management {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.pillars-subtitle-leadership-self-management {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.pillar-card-leadership-self-management {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.pillar-card-leadership-self-management:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.pillar-icon-leadership-self-management {
  width: 50px;
  height: 50px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14b8a6;
  font-size: 1.5rem;
}

.pillar-title-leadership-self-management {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

.pillar-text-leadership-self-management {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* FRAMEWORK SECTION - Dark */
.framework-section-leadership-self-management {
  background: #064e4a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.framework-text-leadership-self-management {
  flex: 1 1 50%;
}

.framework-title-leadership-self-management {
  color: #ffffff;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.framework-description-leadership-self-management {
  color: #99f6e4;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.steps-container-leadership-self-management {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-leadership-self-management {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number-leadership-self-management {
  color: #2dd4bf;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

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

.step-title-leadership-self-management {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
}

.step-text-leadership-self-management {
  color: #a5b4fc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.framework-image-leadership-self-management {
  flex: 1 1 50%;
  max-width: 50%;
}

.framework-img-leadership-self-management {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

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

/* PRACTICES SECTION - Light */
.practices-section-leadership-self-management {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.practices-title-leadership-self-management {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.practices-subtitle-leadership-self-management {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.practices-wrapper-leadership-self-management {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-top: 3rem;
}

.practices-list-leadership-self-management {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practice-item-leadership-self-management {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.practice-item-leadership-self-management:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.practice-number-leadership-self-management {
  color: #14b8a6;
  font-size: 1.75rem;
  font-weight: 800;
  flex-shrink: 0;
  min-width: 40px;
  text-align: center;
}

.practice-body-leadership-self-management {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.practice-title-leadership-self-management {
  color: #1e293b;
  font-size: 1.05rem;
  font-weight: 600;
}

.practice-text-leadership-self-management {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}

.practices-image-leadership-self-management {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

  .practices-list-leadership-self-management,
  .practices-image-leadership-self-management {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* CHALLENGES SECTION - Dark */
.challenges-section-leadership-self-management {
  background: #042f2e;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.challenges-content-leadership-self-management {
  max-width: 900px;
  margin: 0 auto;
}

.challenges-title-leadership-self-management {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.challenges-intro-leadership-self-management {
  color: #99f6e4;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.challenges-list-leadership-self-management {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.challenge-block-leadership-self-management {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: rgba(20, 184, 166, 0.08);
  border-left: 4px solid #2dd4bf;
  border-radius: 8px;
}

.challenge-title-leadership-self-management {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
}

.challenge-text-leadership-self-management {
  color: #a5b4fc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* QUOTE SECTION - Light */
.quote-section-leadership-self-management {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.featured-quote-leadership-self-management {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #14b8a6;
  background: #ffffff;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.quote-text-leadership-self-management {
  color: #0f172a;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.quote-author-leadership-self-management {
  color: #64748b;
  font-size: 0.9rem;
  font-style: normal;
  display: block;
}

/* CONCLUSION SECTION - Light */
.conclusion-section-leadership-self-management {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.conclusion-text-leadership-self-management {
  flex: 1 1 50%;
}

.conclusion-title-leadership-self-management {
  color: #0f172a;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-paragraph-leadership-self-management {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-image-leadership-self-management {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

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

/* CTA SECTION - Dark */
.cta-section-leadership-self-management {
  background: linear-gradient(135deg, #064e4a 0%, #0f766e 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  text-align: center;
}

.cta-content-leadership-self-management {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-leadership-self-management {
  color: #ffffff;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-description-leadership-self-management {
  color: #99f6e4;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-button-leadership-self-management {
  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: #064e4a;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-leadership-self-management:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* RELATED SECTION - Light */
.related-section-leadership-self-management {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.related-title-leadership-self-management {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.related-subtitle-leadership-self-management {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.related-cards-leadership-self-management {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 3rem;
}

.related-card-leadership-self-management {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.related-card-image-leadership-self-management {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-card-image-leadership-self-management img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.related-card-content-leadership-self-management {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  flex-grow: 1;
}

.related-card-title-leadership-self-management {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-leadership-self-management {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-leadership-self-management {
  color: #14b8a6;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.related-card-link-leadership-self-management:hover {
  color: #0d9488;
  text-decoration: underline;
}

/* DISCLAIMER SECTION - Light */
.disclaimer-section-leadership-self-management {
  background: #f1f5f9;
  padding: clamp(2rem, 6vw, 4rem) 0;
}

.disclaimer-content-leadership-self-management {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-left: 4px solid #14b8a6;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.disclaimer-title-leadership-self-management {
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-leadership-self-management {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1024px) {
  .pillars-grid-leadership-self-management {
    gap: 1rem;
  }

  .pillar-card-leadership-self-management {
    flex: 1 1 250px;
    max-width: 300px;
  }

  .challenges-list-leadership-self-management {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-stats-leadership-self-management {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .related-cards-leadership-self-management {
    gap: 1rem;
  }

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

  .step-item-leadership-self-management {
    gap: 1rem;
  }

  .practice-item-leadership-self-management {
    gap: 1rem;
  }
}

/* About Page Styles */
.educational-journey-about {
  font-family: var(--font-body);
  color: var(--color-text-light-primary);
}

.hero-section-about {
  background: var(--color-bg-dark-primary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.hero-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-title-about {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
}

.hero-subtitle-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-secondary);
  max-width: 600px;
}

.hero-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-muted);
  line-height: 1.7;
  max-width: 700px;
}

.hero-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(45, 212, 191, 0.2);
}

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

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

.stat-label-about {
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
  opacity: 0.9;
}

.hero-visual-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-top: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  display: block;
}

.foundation-section-about {
  background: var(--color-bg-light-primary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .foundation-section-about {
    padding: 5rem 0;
  }
}

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

.foundation-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.foundation-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.foundation-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.foundation-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.foundation-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.foundation-blocks-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.foundation-block-about {
  flex: 1 1 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.block-icon-about {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

.block-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.block-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

.methodology-section-about {
  background: var(--color-bg-dark-secondary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .methodology-section-about {
    padding: 5rem 0;
  }
}

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

.methodology-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.methodology-intro-about {
  max-width: 800px;
}

.methodology-heading-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.methodology-text-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-muted);
  line-height: 1.7;
}

.methodology-steps-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.methodology-step-about {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(45, 212, 191, 0.08);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-primary);
}

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

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

.step-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-dark-primary);
}

.step-description-about {
  font-size: 0.9375rem;
  color: var(--color-text-dark-muted);
  line-height: 1.6;
}

.impact-section-about {
  background: var(--color-bg-light-primary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .impact-section-about {
    padding: 5rem 0;
  }
}

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

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

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

.impact-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.impact-paragraph-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.impact-paragraph-about:last-of-type {
  margin-bottom: 0;
}

.impact-visual-about {
  flex: 1 1 300px;
  min-width: 280px;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

.commitment-section-about {
  background: var(--color-bg-dark-tertiary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .commitment-section-about {
    padding: 5rem 0;
  }
}

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

.commitment-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.commitment-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.commitment-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(45, 212, 191, 0.2);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.commitment-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.commitment-subtitle-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.values-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.value-card-about {
  flex: 1 1 240px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(45, 212, 191, 0.2);
}

.value-icon-about {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 212, 191, 0.15);
  color: var(--color-secondary);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

.value-name-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-dark-primary);
}

.value-description-about {
  font-size: 0.9375rem;
  color: var(--color-text-dark-muted);
  line-height: 1.6;
}

.featured-quote-about {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(20, 184, 166, 0.08);
  margin: clamp(2rem, 4vw, 3rem) 0;
  border-radius: var(--radius-lg);
}

.featured-quote-about p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.6;
}

.featured-quote-about cite {
  font-size: 0.9375rem;
  color: var(--color-text-light-secondary);
  font-style: normal;
  display: block;
}

.disclaimer-section-about {
  background: var(--color-bg-light-secondary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .disclaimer-section-about {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .disclaimer-section-about {
    padding: 5rem 0;
  }
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.disclaimer-icon-about {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.disclaimer-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

.disclaimer-text-about:last-child {
  margin-bottom: 0;
}

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

  .docs-portal {
    width: 100%;
    font-family: var(--font-body);
  }

  /* Hero Section */
  .hero-section {
    background: var(--color-bg-dark-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    width: 100%;
    overflow: hidden;
  }

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

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

  .hero-section h1 {
    font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-section .hero-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  }

  .hero-section .last-updated {
    color: var(--color-text-dark-secondary);
  }

  /* Content Section */
  .content-section {
    background: var(--color-bg-light-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    width: 100%;
    overflow: hidden;
  }

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

  .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 5vw, 3rem);
  }

  .content-section h2 {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
    margin-top: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .content-section .intro-heading {
    margin-top: 0;
  }

  .content-section p {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    color: #475569;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .content-section ul {
    margin: clamp(1rem, 2vw, 1.5rem) 0;
    padding-left: clamp(1.5rem, 3vw, 2.5rem);
  }

  .content-section li {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    color: #475569;
    margin-bottom: 0.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .content-section strong {
    color: #1e293b;
    font-weight: 600;
  }

  /* Contact Section */
  .contact-section {
    background: var(--color-bg-light-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    width: 100%;
    overflow: hidden;
  }

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

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

  .contact-section h2 {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .contact-section p {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    color: #475569;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: clamp(0.75rem, 1vw, 1rem);
  }

  .contact-label {
    font-weight: 600;
    color: #1e293b;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  }

  .contact-value {
    color: #475569;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  }

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

    .content-section {
      padding: 5rem 0;
    }

    .contact-section {
      padding: 5rem 0;
    }
  }

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

    .content-section {
      padding: 6rem 0;
    }

    .contact-section {
      padding: 6rem 0;
    }
  }

/* Thank You Page Styles */
/* Thank You Page Component */
.thank-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Thank Section */
.thank-section {
  width: 100%;
  background: var(--color-bg-dark-primary);
  padding: clamp(2.5rem, 6vw, 6rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Thank Content Wrapper */
.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

/* Success Icon */
.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px, 15vw, 120px);
  height: clamp(80px, 15vw, 120px);
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.15);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.thank-icon i {
  font-size: clamp(40px, 8vw, 60px);
  color: var(--color-primary);
}

/* Main Heading */
.thank-page h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.15;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Lead Text */
.thank-lead {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 2.5vw + 0.5rem, 1.5rem);
  color: var(--color-text-dark-secondary);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Description Text */
.thank-description {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: var(--color-text-dark-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Next Steps Text */
.thank-next-steps {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: var(--color-text-dark-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(2rem, 4vw, 3rem);
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

/* Animation */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Tablet */
@media (min-width: 768px) {
  .thank-section {
    padding: clamp(4rem, 8vw, 8rem) 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: clamp(2rem, 4vw, 3rem);
  }

  .thank-page h1 {
    font-size: clamp(2.5rem, 6vw + 0.5rem, 3.5rem);
  }

  .thank-lead {
    font-size: clamp(1.25rem, 2.5vw + 0.5rem, 1.5rem);
  }
}

/* Responsive Desktop */
@media (min-width: 1024px) {
  .thank-section {
    padding: 6rem 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: 3rem;
  }

  .thank-page h1 {
    font-size: clamp(3rem, 6vw + 0.5rem, 3.75rem);
  }

  .thank-lead {
    font-size: clamp(1.375rem, 2.5vw + 0.5rem, 1.625rem);
  }

  .btn:hover {
    transform: translateY(-4px);
  }
}

/* Large Desktop */
@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: 3.5rem;
  }

  .thank-page h1 {
    font-size: 4rem;
  }

  .thank-lead {
    font-size: 1.75rem;
  }

  .thank-icon {
    width: 140px;
    height: 140px;
  }

  .thank-icon i {
    font-size: 70px;
  }
}

/* 404 Page Styles */
.main.error-page {
  width: 100%;
}

.error-section {
  background: linear-gradient(135deg, var(--color-bg-dark-primary) 0%, var(--color-bg-dark-secondary) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
  position: relative;
}

.error-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(45, 212, 191, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(20, 184, 166, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.error-section .container {
  position: relative;
  z-index: 1;
}

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1rem, 3vw, 2rem);
  max-width: 100%;
}

.error-code-wrapper {
  position: relative;
  margin-bottom: clamp(1.5rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 15vw, 8rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(20, 184, 166, 0.2);
  margin: 0;
  animation: float-code 6s ease-in-out infinite;
}

@keyframes float-code {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.error-decoration {
  display: flex;
  gap: clamp(0.5rem, 2vw, 1rem);
  align-items: center;
  justify-content: center;
}

.error-decoration i {
  color: var(--color-secondary);
  font-size: clamp(0.5rem, 1.5vw, 0.75rem);
  opacity: 0.6;
  animation: pulse-dot 2s ease-in-out infinite;
}

.error-decoration i:nth-child(2) {
  animation-delay: 0.2s;
}

.error-decoration i:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: var(--color-text-dark-primary);
  font-weight: 700;
  margin: 0 0 clamp(1rem, 3vw, 1.5rem) 0;
  line-height: 1.2;
}

.error-message {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw, 1.0625rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin: 0 0 clamp(1.5rem, 4vw, 2.5rem) 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.error-suggestions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
  width: 100%;
  max-width: 600px;
}

.suggestion-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 0.75rem);
  padding: clamp(1rem, 2vw, 1.25rem);
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.suggestion-item:hover {
  background: rgba(20, 184, 166, 0.15);
  border-color: rgba(45, 212, 191, 0.4);
  transform: translateY(-2px);
}

.suggestion-item i {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-secondary);
}

.suggestion-item span {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-dark-secondary);
  text-align: center;
  line-height: 1.4;
}

.error-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
}

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

.error-code-message {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-dark-muted);
  margin: 0;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

/* Tablet */
@media (min-width: 768px) {
  .error-section {
    padding: 4rem 0;
  }

  .error-suggestions {
    grid-template-columns: repeat(3, 1fr);
  }

  .suggestion-item {
    padding: 1.5rem;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .error-section {
    padding: 6rem 0;
  }

  .error-code-wrapper {
    margin-bottom: 3rem;
  }

  .error-suggestions {
    gap: 2rem;
  }

  .suggestion-item {
    padding: 1.75rem;
  }

  .error-btn:hover {
    box-shadow: 0 12px 30px rgba(20, 184, 166, 0.4);
  }
}

/* Large Desktop */
@media (min-width: 1440px) {
  .error-section {
    padding: 8rem 0;
  }

  .error-content {
    gap: 1rem;
  }
}