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

:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #06b6d4;
  --color-accent: #f59e0b;
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  background: var(--color-bg-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
}

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

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

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);
  line-height: 1.7;
}

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  gap: var(--space-sm);
}

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

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

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

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

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

.btn-secondary:hover {
  background: #0891b2;
  transform: translateY(-2px);
}

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

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

.grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

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

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

.flex {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
}

.flex-column {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 2rem);
}

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

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

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.card-icon {
  width: clamp(3rem, 8vw, 4rem);
  height: clamp(3rem, 8vw, 4rem);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-primary {
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
}

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

.text-right {
  text-align: right;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-50 {
  opacity: 0.5;
}

.gap-xs {
  gap: var(--space-xs);
}

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

.mt-xs {
  margin-top: var(--space-xs);
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mb-xs {
  margin-bottom: var(--space-xs);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

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

.mb-xl {
  margin-bottom: var(--space-xl);
}

.px-sm {
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}

.px-md {
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.px-lg {
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.py-sm {
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}

.py-md {
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}

.py-lg {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .flex-responsive {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
:root {
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f8fafc;
    --color-bg-tertiary: #f1f5f9;
    --color-bg-card: #ffffff;
    --color-text-primary: #1e293b;
    --color-text-secondary: #64748b;
    --color-text-muted: #94a3b8;
    --color-primary: #2563eb;
    --color-primary-hover: #1d4ed8;
    --color-secondary: #06b6d4;
    --color-accent: #f59e0b;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
  }

  .header-growth-hub {
    position: static;
    background: var(--color-bg-primary);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
    font-family: var(--font-primary);
  }

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

  .header-growth-hub-brand {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 1vw, 0.75rem);
    text-decoration: none;
    flex-shrink: 0;
  }

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

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

  .header-growth-hub-desktop-nav {
    display: none;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin: 0 auto;
  }

  .header-growth-hub-nav-link {
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 500;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 300ms ease;
    position: relative;
  }

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

  .header-growth-hub-nav-link:hover {
    color: var(--color-primary);
  }

  .header-growth-hub-nav-link:hover::after {
    width: 100%;
  }

  .header-growth-hub-cta-button {
    display: none;
    padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
    background: var(--color-primary);
    color: #ffffff;
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 300ms ease;
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .header-growth-hub-cta-button:active {
    transform: translateY(0);
  }

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

  .header-growth-hub-mobile-toggle:hover {
    color: var(--color-primary-hover);
  }

  .header-growth-hub-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-primary);
    display: flex;
    flex-direction: column;
    padding-top: clamp(3.5rem, 12vw, 5rem);
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
    padding-bottom: clamp(1rem, 4vw, 2rem);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
  }

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

  .header-growth-hub-mobile-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
  }

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

  .header-growth-hub-mobile-close:hover {
    color: var(--color-primary);
  }

  .header-growth-hub-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: auto;
  }

  .header-growth-hub-mobile-link {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 300ms ease;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid transparent;
  }

  .header-growth-hub-mobile-link:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
  }

  .header-growth-hub-mobile-cta {
    display: block;
    padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2rem);
    background: var(--color-primary);
    color: #ffffff;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    text-align: center;
    transition: all 300ms ease;
    margin-top: 2rem;
  }

  .header-growth-hub-mobile-cta:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

  @media (min-width: 768px) {
    .header-growth-hub-mobile-toggle {
      display: none;
    }

    .header-growth-hub-mobile-menu {
      display: none;
    }

    .header-growth-hub-desktop-nav {
      display: flex;
    }

    .header-growth-hub-cta-button {
      display: inline-flex;
    }
  }

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

    .header-growth-hub-logo-img {
      width: 44px;
      height: 44px;
    }

    .header-growth-hub-logo-text {
      font-size: 1.5rem;
    }

    .header-growth-hub-desktop-nav {
      gap: 3rem;
    }

    .header-growth-hub-nav-link {
      font-size: 1rem;
    }

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

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

    .growth-portal {
  width: 100%;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
  gap: var(--space-sm);
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
  transform: translateY(-3px);
}

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

.btn-outline:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

/* HERO SECTION */
.hero-section-index {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

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

.hero-glow-accent-1 {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-glow-accent-2 {
  position: absolute;
  bottom: 10%;
  right: 15%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 2;
  pointer-events: none;
}

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

.hero-floating-shape-2 {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-line-accent {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-organic-form {
  position: absolute;
  bottom: 5%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.04);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.hero-corner-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background: rgba(37, 99, 235, 0.03);
  border-radius: 0 0 100px 0;
  z-index: 1;
  pointer-events: none;
}

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

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

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

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

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

.hero-stat-number-index {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

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

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

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

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

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

.about-glow-element {
  position: absolute;
  top: 40%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.about-float-panel {
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 180px;
  height: 140px;
  background: rgba(6, 182, 212, 0.03);
  border: 1px solid rgba(6, 182, 212, 0.1);
  border-radius: 12px;
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}

.about-accent-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.about-background-mesh {
  position: absolute;
  bottom: 0;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

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

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

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

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

.about-description-secondary-index {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
  line-height: 1.8;
}

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

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

/* PROCESS SECTION */
.process-section-index {
  position: relative;
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.process-mesh-1 {
  position: absolute;
  top: -80px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.process-mesh-2 {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.process-glow-accent {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.process-floating-element {
  position: absolute;
  bottom: 15%;
  right: 20%;
  width: 200px;
  height: 160px;
  background: rgba(6, 182, 212, 0.03);
  border: 1px solid rgba(6, 182, 212, 0.08);
  border-radius: 12px;
  transform: rotate(5deg);
  z-index: 2;
  pointer-events: none;
}

.process-corner-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: rgba(37, 99, 235, 0.03);
  border-radius: 0 0 0 200px;
  z-index: 1;
  pointer-events: none;
}

.process-line-separator {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

.process-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

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

.process-step-index {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-index:hover {
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
  transform: translateY(-4px);
}

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

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

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

.process-step-text-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  color: #64748b;
}

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

.features-gradient-field {
  position: absolute;
  top: -100px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.features-glow-1 {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.features-glow-2 {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 180px;
  height: 180px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 2;
  pointer-events: none;
}

.features-shape-accent {
  position: absolute;
  top: 15%;
  left: 15%;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.04);
  border-radius: 50% 40% 60% 50% / 60% 50% 40% 50%;
  z-index: 1;
  pointer-events: none;
}

.features-floating-card {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 200px;
  height: 150px;
  background: rgba(139, 92, 246, 0.03);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 12px;
  transform: rotate(-10deg);
  z-index: 1;
  pointer-events: none;
}

.features-line-accent {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

.features-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

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

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

.features-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.2);
  background: #ffffff;
}

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

.features-card-title-index {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

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

/* FEATURED SECTION */
.featured-section-index {
  position: relative;
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.featured-accent-mesh {
  position: absolute;
  bottom: -80px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.featured-glow-element {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.featured-shape-1 {
  position: absolute;
  top: 40%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
  z-index: 1;
  pointer-events: none;
}

.featured-floating-panel {
  position: absolute;
  bottom: 20%;
  left: 8%;
  width: 180px;
  height: 140px;
  background: rgba(59, 130, 246, 0.03);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  transform: rotate(8deg);
  z-index: 1;
  pointer-events: none;
}

.featured-line-decoration {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.12), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

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

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

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

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

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

.featured-card-index:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.2);
}

.featured-card-image-index {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.featured-card-image-index img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.featured-card-title-index {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.featured-card-text-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  color: #64748b;
  flex-grow: 1;
}

.featured-card-link-index {
  font-size: 0.9375rem;
  color: var(--color-primary);
  font-weight: 600;
  transition: all 300ms ease-in-out;
  text-decoration: none;
  display: inline-block;
}

.featured-card-link-index:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

.featured-cta-index {
  text-align: center;
}

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

.testimonial-gradient-mesh {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.testimonial-glow-accent {
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.testimonial-floating-form {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 200px;
  height: 160px;
  background: rgba(6, 182, 212, 0.03);
  border: 1px solid rgba(6, 182, 212, 0.1);
  border-radius: 12px;
  transform: rotate(-6deg);
  z-index: 2;
  pointer-events: none;
}

.testimonial-line-accent {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.testimonial-quote-block-index {
  flex: 1 1 350px;
  min-width: 280px;
}

.testimonial-quote-index {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: #f8fafc;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 0;
}

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

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

.testimonial-info-block-index {
  flex: 1 1 350px;
  min-width: 280px;
}

.testimonial-info-header-index {
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.testimonial-info-title-index {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.testimonial-info-list-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-info-item-index {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #475569;
  line-height: 1.6;
}

.testimonial-info-item-index i {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTA SECTION */
.cta-section-index {
  position: relative;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1a2a4a 100%);
}

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

.cta-gradient-mesh-2 {
  position: absolute;
  bottom: -80px;
  left: -120px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.cta-glow-accent-1 {
  position: absolute;
  top: 30%;
  left: 15%;
  width: 200px;
  height: 200px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.cta-glow-accent-2 {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 180px;
  height: 180px;
  background: rgba(96, 165, 250, 0.05);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 2;
  pointer-events: none;
}

.cta-floating-shape {
  position: absolute;
  top: 15%;
  right: 20%;
  width: 250px;
  height: 250px;
  background: rgba(96, 165, 250, 0.04);
  border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
  z-index: 1;
  pointer-events: none;
}

.cta-corner-element {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: rgba(34, 211, 238, 0.03);
  border-radius: 100px 100px 0 0;
  z-index: 1;
  pointer-events: none;
}

.cta-line-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

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

.cta-btn-index {
  background: #ffffff;
  color: #0f172a;
}

.cta-btn-index:hover {
  background: #f1f5f9;
  transform: translateY(-3px);
}

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

.contact-accent-mesh {
  position: absolute;
  top: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-glow-element {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.contact-shape-accent {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.04);
  border-radius: 50% 40% 60% 50% / 60% 50% 40% 50%;
  z-index: 1;
  pointer-events: none;
}

.contact-floating-panel {
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 180px;
  height: 140px;
  background: rgba(59, 130, 246, 0.03);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  transform: rotate(10deg);
  z-index: 1;
  pointer-events: none;
}

.contact-line-separator {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.contact-form-wrapper-index {
  flex: 1 1 400px;
  min-width: 280px;
}

.contact-form-title-index {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.contact-form-subtitle-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.contact-form-index {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

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

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

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

.contact-input-index:focus,
.contact-textarea-index:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.contact-submit-index {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.9375rem, 1vw, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-primary);
}

.contact-submit-index:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

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

.contact-info-wrapper-index {
  flex: 1 1 400px;
  min-width: 280px;
}

.contact-info-title-index {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.3;
}

.contact-faq-item-index {
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  padding-bottom: clamp(1.5rem, 2vw, 2rem);
  border-bottom: 1px solid #e2e8f0;
}

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

.contact-faq-question-index {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.contact-faq-answer-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

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

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

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

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

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  font-weight: 500;
  font-family: var(--font-primary);
  transition: all 300ms ease;
}

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

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

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

.cookie-btn-decline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #e2e8f0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-stats-index {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .hero-cta-group-index {
    flex-direction: column;
  }

  .hero-cta-group-index a {
    width: 100%;
  }

  .about-content-index {
    flex-direction: column;
  }

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

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

  .featured-cards-index {
    gap: clamp(1.5rem, 2vw, 2rem);
  }

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

  .testimonial-content-index {
    flex-direction: column;
  }

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

  .testimonial-info-block-index {
    flex: 1 1 100%;
  }

  .contact-content-index {
    flex-direction: column;
  }

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

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

  .process-steps-index {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .process-step-index {
    flex-direction: column;
  }

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

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

    .footer {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem) 0;
    color: var(--color-text-secondary);
    border-top: 1px solid rgba(59, 130, 246, 0.1);
  }

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

  .footer-content {
    display: block;
  }

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

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

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

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

  .footer-nav-section,
  .footer-contact-section,
  .footer-legal-section {
    flex: 1 1 200px;
    min-width: 180px;
  }

  .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.9375rem);
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
  }

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

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

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

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

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

  .footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(59, 130, 246, 0.1);
    margin: clamp(2rem, 5vw, 3rem) 0;
  }

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

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

  @media (max-width: 768px) {
    .footer-sections-grid {
      flex-direction: column;
      gap: clamp(1.5rem, 4vw, 2.5rem);
    }

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

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

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

  @media (max-width: 480px) {
    .footer-about-section {
      margin-bottom: clamp(2rem, 5vw, 2.5rem);
    }

    .footer-section-title {
      font-size: 1rem;
    }

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

/* Category Page Styles */
.main.category-page-personal-growth {
  width: 100%;
}

/* Hero Section */
.hero-section-personal-growth {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.hero-decorative-glow-1 {
  position: absolute;
  top: 10%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

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

.hero-decorative-shape-1 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 200px;
  height: 250px;
  background: rgba(245, 158, 11, 0.04);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-decorative-shape-2 {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 180px;
  height: 180px;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

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

.hero-tag-personal-growth {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-personal-growth {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-personal-growth {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 700px;
}

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

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

.hero-stat-number-personal-growth {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
}

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

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

/* Posts Section */
.posts-section-personal-growth {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.posts-decorative-accent-1 {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.posts-decorative-accent-2 {
  position: absolute;
  bottom: 15%;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

.posts-decorative-accent-3 {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 150px;
  height: 150px;
  background: rgba(245, 158, 11, 0.03);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

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

.posts-section-tag-personal-growth {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.posts-section-title-personal-growth {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.posts-section-subtitle-personal-growth {
  color: #64748b;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  max-width: 600px;
  margin: 0 auto;
}

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

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

.card-personal-growth:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: rgba(37, 99, 235, 0.2);
}

.card-image-personal-growth {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0;
}

.card-title-personal-growth {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  line-height: 1.3;
}

.card-description-personal-growth {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-personal-growth {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.card-meta-item-personal-growth {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: #f1f5f9;
  color: #475569;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
}

.card-meta-item-personal-growth i {
  color: #2563eb;
  font-size: 0.75rem;
}

.card-link-personal-growth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
  background: #2563eb;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
  width: 100%;
  text-align: center;
}

.card-link-personal-growth:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

/* Methods Section */
.methods-section-personal-growth {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.methods-decorative-shape-1 {
  position: absolute;
  top: 15%;
  right: -100px;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 0;
  pointer-events: none;
}

.methods-decorative-glow-1 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.methods-content-personal-growth {
  position: relative;
  z-index: 10;
  max-width: 1000px;
}

.methods-title-personal-growth {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1.5rem;
}

.methods-intro-personal-growth {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 800px;
}

.methods-steps-personal-growth {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.methods-step-personal-growth {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

.methods-step-number-personal-growth {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.methods-step-content-personal-growth {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.methods-step-title-personal-growth {
  color: #0f172a;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 700;
}

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

/* Benefits Section */
.benefits-section-personal-growth {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.benefits-decorative-accent-1 {
  position: absolute;
  top: 10%;
  left: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.benefits-decorative-accent-2 {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

.benefits-decorative-accent-3 {
  position: absolute;
  bottom: 10%;
  left: 20%;
  width: 150px;
  height: 150px;
  background: rgba(37, 99, 235, 0.04);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

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

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

.benefits-subtitle-personal-growth {
  color: #64748b;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.benefits-card-personal-growth {
  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 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.benefits-card-personal-growth:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefits-card-icon-personal-growth {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 10px;
  color: #2563eb;
  font-size: 1.75rem;
}

.benefits-card-title-personal-growth {
  color: #0f172a;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 700;
}

.benefits-card-text-personal-growth {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

/* CTA Section */
.cta-section-personal-growth {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.cta-decorative-glow-1 {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}

.cta-decorative-shape-1 {
  position: absolute;
  bottom: -30px;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.cta-content-personal-growth {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 700px;
}

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

.cta-description-personal-growth {
  color: #f1f5f9;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.cta-section-personal-growth .btn-primary {
  background: #ffffff;
  color: #2563eb;
}

.cta-section-personal-growth .btn-primary:hover {
  background: #f1f5f9;
  color: #1d4ed8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .methods-step-personal-growth {
    flex-direction: column;
    gap: 1rem;
  }

  .methods-step-number-personal-growth {
    font-size: 2rem;
  }

  .card-personal-growth {
    flex: 1 1 100%;
    max-width: none;
  }

  .benefits-card-personal-growth {
    flex: 1 1 100%;
    max-width: none;
  }

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

  .hero-buttons-personal-growth a {
    width: 100%;
  }
}

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

  .hero-stat-number-personal-growth {
    font-size: 1.5rem;
  }

  .methods-step-number-personal-growth {
    font-size: 1.5rem;
    min-width: 50px;
  }

  .card-meta-personal-growth {
    flex-direction: column;
  }

  .card-meta-item-personal-growth {
    width: 100%;
    justify-content: center;
  }
}

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

  .posts-section-personal-growth {
    padding: 6rem 0;
  }

  .methods-section-personal-growth {
    padding: 6rem 0;
  }

  .benefits-section-personal-growth {
    padding: 6rem 0;
  }

  .cta-section-personal-growth {
    padding: 5rem 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-meditation-mindfulness-practices {
  width: 100%;
  background: #ffffff;
}

.hero-section-meditation-mindfulness-practices {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-block-meditation-mindfulness-practices {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-meditation-mindfulness-practices {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-meditation-mindfulness-practices {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.breadcrumbs-meditation-mindfulness-practices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-meditation-mindfulness-practices a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-meditation-mindfulness-practices a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumbs-meditation-mindfulness-practices span {
  color: #94a3b8;
}

.hero-title-meditation-mindfulness-practices {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-description-meditation-mindfulness-practices {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-meta-meditation-mindfulness-practices {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meta-badge-meditation-mindfulness-practices {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-meditation-mindfulness-practices i {
  font-size: 0.875rem;
}

.hero-stats-meditation-mindfulness-practices {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.stat-item-meditation-mindfulness-practices {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.stat-number-meditation-mindfulness-practices {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #2563eb;
  line-height: 1;
}

.stat-label-meditation-mindfulness-practices {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

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

  .hero-text-block-meditation-mindfulness-practices,
  .hero-image-block-meditation-mindfulness-practices {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-meditation-mindfulness-practices {
    max-height: 350px;
  }

  .hero-stats-meditation-mindfulness-practices {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

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

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

.introduction-text-meditation-mindfulness-practices {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-meditation-mindfulness-practices {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-meditation-mindfulness-practices {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.introduction-paragraph-meditation-mindfulness-practices {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.introduction-img-meditation-mindfulness-practices {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .introduction-content-meditation-mindfulness-practices {
    flex-direction: column;
  }

  .introduction-text-meditation-mindfulness-practices,
  .introduction-image-meditation-mindfulness-practices {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.techniques-section-meditation-mindfulness-practices {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.techniques-header-meditation-mindfulness-practices {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag-meditation-mindfulness-practices {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.techniques-title-meditation-mindfulness-practices {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.techniques-subtitle-meditation-mindfulness-practices {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.techniques-steps-meditation-mindfulness-practices {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.technique-step-meditation-mindfulness-practices {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  align-items: flex-start;
}

.technique-number-meditation-mindfulness-practices {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.technique-content-meditation-mindfulness-practices {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.technique-title-meditation-mindfulness-practices {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.technique-text-meditation-mindfulness-practices {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .technique-step-meditation-mindfulness-practices {
    flex-direction: column;
    gap: 1rem;
  }

  .technique-number-meditation-mindfulness-practices {
    min-width: auto;
  }
}

.benefits-section-meditation-mindfulness-practices {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.benefits-content-meditation-mindfulness-practices {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.benefits-text-meditation-mindfulness-practices {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-title-meditation-mindfulness-practices {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.benefits-intro-meditation-mindfulness-practices {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.benefits-list-meditation-mindfulness-practices {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item-meditation-mindfulness-practices {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-icon-meditation-mindfulness-practices {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 10px;
  color: #2563eb;
  font-size: 1.5rem;
}

.benefit-item-title-meditation-mindfulness-practices {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.benefit-item-text-meditation-mindfulness-practices {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.benefits-image-meditation-mindfulness-practices {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-img-meditation-mindfulness-practices {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .benefits-content-meditation-mindfulness-practices {
    flex-direction: column;
  }

  .benefits-text-meditation-mindfulness-practices,
  .benefits-image-meditation-mindfulness-practices {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practice-guide-section-meditation-mindfulness-practices {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-guide-content-meditation-mindfulness-practices {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.practice-guide-image-meditation-mindfulness-practices {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-img-meditation-mindfulness-practices {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.practice-guide-text-meditation-mindfulness-practices {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-guide-title-meditation-mindfulness-practices {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.practice-guide-intro-meditation-mindfulness-practices {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.practice-guide-tips-meditation-mindfulness-practices {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practice-tip-meditation-mindfulness-practices {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.practice-tip-title-meditation-mindfulness-practices {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.practice-tip-text-meditation-mindfulness-practices {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .practice-guide-content-meditation-mindfulness-practices {
    flex-direction: column;
  }

  .practice-guide-image-meditation-mindfulness-practices,
  .practice-guide-text-meditation-mindfulness-practices {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.obstacles-section-meditation-mindfulness-practices {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.obstacles-header-meditation-mindfulness-practices {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.obstacles-title-meditation-mindfulness-practices {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.obstacles-subtitle-meditation-mindfulness-practices {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.obstacles-content-meditation-mindfulness-practices {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.obstacles-text-meditation-mindfulness-practices {
  flex: 1 1 50%;
  max-width: 50%;
}

.obstacle-block-meditation-mindfulness-practices {
  margin-bottom: 2rem;
}

.obstacle-block-meditation-mindfulness-practices:last-child {
  margin-bottom: 0;
}

.obstacle-title-meditation-mindfulness-practices {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.obstacle-text-meditation-mindfulness-practices {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

.obstacles-image-meditation-mindfulness-practices {
  flex: 1 1 50%;
  max-width: 50%;
}

.obstacles-img-meditation-mindfulness-practices {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .obstacles-content-meditation-mindfulness-practices {
    flex-direction: column;
  }

  .obstacles-text-meditation-mindfulness-practices,
  .obstacles-image-meditation-mindfulness-practices {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-meditation-mindfulness-practices {
  background: linear-gradient(135deg, #f0f9ff 0%, #f8fafc 100%);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.featured-quote-meditation-mindfulness-practices {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 3.5rem);
  border-left: 4px solid #2563eb;
  background: #ffffff;
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.quote-cite-meditation-mindfulness-practices {
  font-size: 0.9375rem;
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

.conclusion-section-meditation-mindfulness-practices {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-meditation-mindfulness-practices {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-meditation-mindfulness-practices {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.conclusion-text-meditation-mindfulness-practices {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.8;
  text-align: center;
}

.conclusion-cta-meditation-mindfulness-practices {
  background: #ffffff;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
  margin-top: 2.5rem;
  border: 1px solid #e2e8f0;
}

.conclusion-cta-title-meditation-mindfulness-practices {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.conclusion-cta-text-meditation-mindfulness-practices {
  font-size: 0.9375rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-primary-meditation-mindfulness-practices {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  background: #2563eb;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary-meditation-mindfulness-practices:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.related-posts-section-meditation-mindfulness-practices {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-posts-header-meditation-mindfulness-practices {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.related-posts-title-meditation-mindfulness-practices {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.related-posts-subtitle-meditation-mindfulness-practices {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.related-post-card-meditation-mindfulness-practices {
  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;
  transition: all 0.3s ease;
}

.related-post-card-meditation-mindfulness-practices:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-post-image-meditation-mindfulness-practices {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-img-meditation-mindfulness-practices {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-post-card-meditation-mindfulness-practices:hover .related-img-meditation-mindfulness-practices {
  transform: scale(1.05);
}

.related-post-content-meditation-mindfulness-practices {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  flex: 1;
}

.related-post-title-meditation-mindfulness-practices {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}

.related-post-description-meditation-mindfulness-practices {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

.related-post-link-meditation-mindfulness-practices {
  font-size: 0.9375rem;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
  margin-top: auto;
}

.related-post-link-meditation-mindfulness-practices:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-post-card-meditation-mindfulness-practices {
    flex: 1 1 100%;
    max-width: none;
  }
}

.disclaimer-section-meditation-mindfulness-practices {
  background: #fef3c7;
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.disclaimer-content-meditation-mindfulness-practices {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-icon-meditation-mindfulness-practices {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f59e0b;
  color: #ffffff;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.disclaimer-text-meditation-mindfulness-practices {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.disclaimer-title-meditation-mindfulness-practices {
  font-size: 1.125rem;
  font-weight: 600;
  color: #92400e;
}

.disclaimer-body-meditation-mindfulness-practices {
  font-size: 0.9375rem;
  color: #b45309;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .disclaimer-content-meditation-mindfulness-practices {
    flex-direction: column;
    gap: 1rem;
  }

  .disclaimer-icon-meditation-mindfulness-practices {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .hero-section-meditation-mindfulness-practices {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .introduction-section-meditation-mindfulness-practices,
  .techniques-section-meditation-mindfulness-practices,
  .benefits-section-meditation-mindfulness-practices,
  .practice-guide-section-meditation-mindfulness-practices,
  .obstacles-section-meditation-mindfulness-practices,
  .conclusion-section-meditation-mindfulness-practices,
  .related-posts-section-meditation-mindfulness-practices {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-stats-meditation-mindfulness-practices {
    gap: 3.5rem;
  }

  .benefits-list-meditation-mindfulness-practices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Post Page 2 Styles */
.main-goal-setting-tracking-system {
  width: 100%;
  background: var(--color-bg-primary);
}

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

.breadcrumbs-goal-setting-tracking-system {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.breadcrumbs-goal-setting-tracking-system a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-goal-setting-tracking-system a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-goal-setting-tracking-system span {
  color: var(--color-text-muted);
}

.hero-section-goal-setting-tracking-system {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-content-goal-setting-tracking-system {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-goal-setting-tracking-system {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .hero-content-goal-setting-tracking-system {
    flex-direction: row;
  }
  
  .hero-text-wrapper-goal-setting-tracking-system {
    flex: 1 1 45%;
    max-width: 50%;
  }
}

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

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

.hero-meta-goal-setting-tracking-system {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-goal-setting-tracking-system {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
  border-radius: 20px;
  font-size: 0.875rem;
}

.hero-stats-goal-setting-tracking-system {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: 2rem;
}

.stat-item-goal-setting-tracking-system {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-goal-setting-tracking-system {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #3b82f6;
  display: block;
  line-height: 1;
}

.stat-label-goal-setting-tracking-system {
  font-size: 0.875rem;
  color: #94a3b8;
}

.hero-image-wrapper-goal-setting-tracking-system {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .hero-image-wrapper-goal-setting-tracking-system {
    flex: 1 1 45%;
    max-width: 50%;
  }
}

.hero-image-goal-setting-tracking-system {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
}

.intro-section-goal-setting-tracking-system {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-goal-setting-tracking-system {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-block-goal-setting-tracking-system {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .intro-text-block-goal-setting-tracking-system {
    flex: 1 1 45%;
    max-width: 50%;
  }
}

.intro-title-goal-setting-tracking-system {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.intro-description-goal-setting-tracking-system {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.intro-image-block-goal-setting-tracking-system {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .intro-image-block-goal-setting-tracking-system {
    flex: 1 1 45%;
    max-width: 50%;
  }
}

.intro-image-goal-setting-tracking-system {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.section-header-goal-setting-tracking-system {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-tag-goal-setting-tracking-system {
  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-goal-setting-tracking-system {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle-goal-setting-tracking-system {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.process-section-goal-setting-tracking-system {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-steps-goal-setting-tracking-system {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-goal-setting-tracking-system {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid #3b82f6;
}

.process-step-number-goal-setting-tracking-system {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #3b82f6;
  flex-shrink: 0;
  min-width: 60px;
}

.process-step-content-goal-setting-tracking-system {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.process-step-title-goal-setting-tracking-system {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

.process-step-text-goal-setting-tracking-system {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.features-section-goal-setting-tracking-system {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-cards-goal-setting-tracking-system {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.features-card-goal-setting-tracking-system {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-card-goal-setting-tracking-system:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.features-card-icon-goal-setting-tracking-system {
  width: clamp(3rem, 8vw, 4rem);
  height: clamp(3rem, 8vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: var(--radius-lg);
  color: #3b82f6;
  font-size: 1.5rem;
}

.features-card-title-goal-setting-tracking-system {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

.features-card-text-goal-setting-tracking-system {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

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

.content-section-goal-setting-tracking-system {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-goal-setting-tracking-system {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-block-goal-setting-tracking-system {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-block-goal-setting-tracking-system {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .content-wrapper-goal-setting-tracking-system {
    flex-direction: column;
  }
  
  .content-text-block-goal-setting-tracking-system,
  .content-image-block-goal-setting-tracking-system {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-title-goal-setting-tracking-system {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.content-description-goal-setting-tracking-system {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-subtitle-goal-setting-tracking-system {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.content-list-goal-setting-tracking-system {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content-list-item-goal-setting-tracking-system {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.content-list-item-goal-setting-tracking-system:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

.content-image-goal-setting-tracking-system {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.tips-section-goal-setting-tracking-system {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-grid-goal-setting-tracking-system {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.tips-card-goal-setting-tracking-system {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.tips-card-title-goal-setting-tracking-system {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

.tips-card-text-goal-setting-tracking-system {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tips-card-goal-setting-tracking-system {
    flex: 1 1 100%;
    max-width: none;
  }
}

.quote-section-goal-setting-tracking-system {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-goal-setting-tracking-system {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #3b82f6;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  margin: 0;
}

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

.quote-author-goal-setting-tracking-system {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  font-style: normal;
}

.practice-section-goal-setting-tracking-system {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-wrapper-goal-setting-tracking-system {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practice-image-block-goal-setting-tracking-system {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-text-block-goal-setting-tracking-system {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .practice-wrapper-goal-setting-tracking-system {
    flex-direction: column;
  }
  
  .practice-image-block-goal-setting-tracking-system,
  .practice-text-block-goal-setting-tracking-system {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practice-image-goal-setting-tracking-system {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.practice-title-goal-setting-tracking-system {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.practice-description-goal-setting-tracking-system {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.practice-checklist-goal-setting-tracking-system {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.checklist-item-goal-setting-tracking-system {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  border-left: 3px solid #3b82f6;
}

.checklist-item-goal-setting-tracking-system i {
  color: #3b82f6;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.checklist-text-goal-setting-tracking-system {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #1e293b;
}

.practice-final-text-goal-setting-tracking-system {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
}

.conclusion-section-goal-setting-tracking-system {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-goal-setting-tracking-system {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-goal-setting-tracking-system {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-goal-setting-tracking-system {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-goal-setting-tracking-system {
  margin-top: 2rem;
  text-align: center;
}

.btn-cta-goal-setting-tracking-system {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.75rem, 4vw, 2.5rem);
  background: #3b82f6;
  color: #ffffff;
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.btn-cta-goal-setting-tracking-system:hover {
  background: #2563eb;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.related-section-goal-setting-tracking-system {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.section-header-related-goal-setting-tracking-system {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-title-related-goal-setting-tracking-system {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle-related-goal-setting-tracking-system {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-goal-setting-tracking-system {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-goal-setting-tracking-system {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.related-card-goal-setting-tracking-system:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.related-card-image-goal-setting-tracking-system {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-tertiary);
}

.related-image-goal-setting-tracking-system {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-content-goal-setting-tracking-system {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.related-card-title-goal-setting-tracking-system {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.related-card-text-goal-setting-tracking-system {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  color: #64748b;
  line-height: 1.6;
}

.related-card-link-goal-setting-tracking-system {
  display: inline-flex;
  align-items: center;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-goal-setting-tracking-system:hover {
  color: #2563eb;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-card-goal-setting-tracking-system {
    flex: 1 1 100%;
    max-width: none;
  }
}

.disclaimer-section-goal-setting-tracking-system {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-bg-tertiary);
}

.disclaimer-content-goal-setting-tracking-system {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-goal-setting-tracking-system {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.disclaimer-text-goal-setting-tracking-system {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  color: #64748b;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-section-goal-setting-tracking-system {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
  
  .intro-section-goal-setting-tracking-system,
  .process-section-goal-setting-tracking-system,
  .features-section-goal-setting-tracking-system,
  .content-section-goal-setting-tracking-system,
  .tips-section-goal-setting-tracking-system,
  .quote-section-goal-setting-tracking-system,
  .practice-section-goal-setting-tracking-system,
  .conclusion-section-goal-setting-tracking-system,
  .related-section-goal-setting-tracking-system,
  .disclaimer-section-goal-setting-tracking-system {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (max-width: 768px) {
  .hero-stats-goal-setting-tracking-system {
    gap: 1rem;
  }
  
  .stat-item-goal-setting-tracking-system {
    flex: 0 1 auto;
  }
}

/* Post Page 3 Styles */
.main-continuous-learning-professional-development {
  width: 100%;
}

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

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

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

.hero-text-block-continuous-learning-professional-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-continuous-learning-professional-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-continuous-learning-professional-development {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.hero-title-continuous-learning-professional-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.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-continuous-learning-professional-development {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-meta-continuous-learning-professional-development {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-continuous-learning-professional-development {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.meta-badge-continuous-learning-professional-development i {
  font-size: 1rem;
}

.hero-stats-continuous-learning-professional-development {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number-continuous-learning-professional-development {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #38bdf8;
  line-height: 1;
}

.stat-label-continuous-learning-professional-development {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.breadcrumbs-continuous-learning-professional-development {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-continuous-learning-professional-development a {
  color: #60a5fa;
  transition: color 0.3s ease;
}

.breadcrumbs-continuous-learning-professional-development a:hover {
  color: #38bdf8;
}

.breadcrumbs-continuous-learning-professional-development span {
  color: #475569;
}

.breadcrumbs-continuous-learning-professional-development > span:last-child {
  color: #cbd5e1;
}

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

  .hero-text-block-continuous-learning-professional-development,
  .hero-image-block-continuous-learning-professional-development {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-continuous-learning-professional-development {
    gap: 1.5rem;
  }
}

.intro-section-continuous-learning-professional-development {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-continuous-learning-professional-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-continuous-learning-professional-development {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-title-continuous-learning-professional-development {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.intro-paragraph-continuous-learning-professional-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-paragraph-continuous-learning-professional-development:last-of-type {
  margin-bottom: 0;
}

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

  .intro-text-continuous-learning-professional-development,
  .intro-image-continuous-learning-professional-development {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.framework-section-continuous-learning-professional-development {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.framework-header-continuous-learning-professional-development {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.framework-tag-continuous-learning-professional-development {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.framework-title-continuous-learning-professional-development {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

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

.framework-steps-continuous-learning-professional-development {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.framework-step-continuous-learning-professional-development {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.framework-step-continuous-learning-professional-development:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.framework-step-number-continuous-learning-professional-development {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.framework-step-content-continuous-learning-professional-development {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.framework-step-text-continuous-learning-professional-development {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .framework-step-continuous-learning-professional-development {
    gap: 1rem;
    padding: 1rem;
  }

  .framework-step-number-continuous-learning-professional-development {
    min-width: 50px;
  }
}

.methods-section-continuous-learning-professional-development {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.methods-text-continuous-learning-professional-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.methods-image-continuous-learning-professional-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.methods-image-img-continuous-learning-professional-development {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.methods-title-continuous-learning-professional-development {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.methods-paragraph-continuous-learning-professional-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.methods-list-continuous-learning-professional-development {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.method-item-continuous-learning-professional-development {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.method-item-continuous-learning-professional-development:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.method-item-title-continuous-learning-professional-development {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.method-item-text-continuous-learning-professional-development {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .methods-wrapper-continuous-learning-professional-development {
    flex-direction: column;
  }

  .methods-text-continuous-learning-professional-development,
  .methods-image-continuous-learning-professional-development {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.strategies-section-continuous-learning-professional-development {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-header-continuous-learning-professional-development {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.strategies-tag-continuous-learning-professional-development {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

.strategies-card-continuous-learning-professional-development {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.strategies-card-continuous-learning-professional-development:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.strategies-card-icon-continuous-learning-professional-development {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
  border-radius: 12px;
  color: #10b981;
  font-size: 1.75rem;
}

.strategies-card-title-continuous-learning-professional-development {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.strategies-card-text-continuous-learning-professional-development {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .strategies-card-continuous-learning-professional-development {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.benefits-section-continuous-learning-professional-development {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.benefits-image-continuous-learning-professional-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-image-img-continuous-learning-professional-development {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.benefits-text-continuous-learning-professional-development {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.benefits-paragraph-continuous-learning-professional-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.benefits-quote-continuous-learning-professional-development {
  padding: 2rem;
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid #38bdf8;
  border-radius: 8px;
  margin: 2rem 0;
}

.benefits-quote-text-continuous-learning-professional-development {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #f1f5f9;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.benefits-quote-author-continuous-learning-professional-development {
  font-size: 0.9375rem;
  color: #94a3b8;
  font-style: normal;
}

.benefits-list-continuous-learning-professional-development {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.benefit-point-continuous-learning-professional-development {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-check-continuous-learning-professional-development {
  color: #10b981;
  font-size: 1.25rem;
  flex-shrink: 0;
  font-weight: 700;
}

.benefit-text-continuous-learning-professional-development {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.benefit-text-continuous-learning-professional-development strong {
  color: #ffffff;
}

@media (max-width: 768px) {
  .benefits-wrapper-continuous-learning-professional-development {
    flex-direction: column;
  }

  .benefits-image-continuous-learning-professional-development,
  .benefits-text-continuous-learning-professional-development {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-continuous-learning-professional-development {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-continuous-learning-professional-development {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-continuous-learning-professional-development {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-paragraph-continuous-learning-professional-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: left;
}

.conclusion-cta-continuous-learning-professional-development {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 12px;
  text-align: center;
}

.conclusion-cta-title-continuous-learning-professional-development {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.conclusion-cta-text-continuous-learning-professional-development {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.conclusion-cta-btn-continuous-learning-professional-development {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.75rem, 4vw, 2.5rem);
  background: #38bdf8;
  color: #0f172a;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.conclusion-cta-btn-continuous-learning-professional-development:hover {
  background: #22d3ee;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.3);
}

.related-section-continuous-learning-professional-development {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-continuous-learning-professional-development {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.related-title-continuous-learning-professional-development {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.related-subtitle-continuous-learning-professional-development {
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  color: #64748b;
}

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

.related-card-continuous-learning-professional-development {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.related-card-continuous-learning-professional-development:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.related-card-image-continuous-learning-professional-development {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-img-continuous-learning-professional-development {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-continuous-learning-professional-development {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}

.related-card-text-continuous-learning-professional-development {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
  flex-grow: 1;
}

.related-card-link-continuous-learning-professional-development {
  display: inline-flex;
  align-items: center;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: auto;
}

.related-card-link-continuous-learning-professional-development:hover {
  color: #1d4ed8;
  gap: 0.5rem;
}

.related-card-link-continuous-learning-professional-development::after {
  content: "→";
  transition: transform 0.3s ease;
}

.related-card-link-continuous-learning-professional-development:hover::after {
  transform: translateX(4px);
}

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

.disclaimer-section-continuous-learning-professional-development {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-continuous-learning-professional-development {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-left: 4px solid #2563eb;
  border-radius: 8px;
}

.disclaimer-title-continuous-learning-professional-development {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-continuous-learning-professional-development {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .hero-section-continuous-learning-professional-development {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .intro-section-continuous-learning-professional-development {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .framework-section-continuous-learning-professional-development {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .methods-section-continuous-learning-professional-development {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .strategies-section-continuous-learning-professional-development {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .benefits-section-continuous-learning-professional-development {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .conclusion-section-continuous-learning-professional-development {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .related-section-continuous-learning-professional-development {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .disclaimer-section-continuous-learning-professional-development {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (max-width: 768px) {
  .hero-stats-continuous-learning-professional-development {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item-continuous-learning-professional-development {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .breadcrumbs-continuous-learning-professional-development {
    font-size: 0.75rem;
  }
}

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

.hero-section-public-speaking-communication-skills {
  background: linear-gradient(135deg, #0f172a 0%, #1a2f4d 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-section-public-speaking-communication-skills .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.breadcrumbs-public-speaking-communication-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-public-speaking-communication-skills a {
  color: #38bdf8;
  transition: color 0.3s ease;
}

.breadcrumbs-public-speaking-communication-skills a:hover {
  color: #0ea5e9;
}

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

.hero-content-public-speaking-communication-skills {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-public-speaking-communication-skills {
  flex: 1 1 400px;
  max-width: 550px;
}

.hero-image-wrapper-public-speaking-communication-skills {
  flex: 1 1 400px;
  max-width: 450px;
}

.hero-title-public-speaking-communication-skills {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.hero-subtitle-public-speaking-communication-skills {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-meta-public-speaking-communication-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.meta-badge-public-speaking-communication-skills {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #e2e8f0;
}

.meta-badge-public-speaking-communication-skills i {
  color: #38bdf8;
}

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

.stat-item-public-speaking-communication-skills {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-public-speaking-communication-skills {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #38bdf8;
  line-height: 1;
}

.stat-label-public-speaking-communication-skills {
  font-size: 0.875rem;
  color: #cbd5e1;
}

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

@media (max-width: 768px) {
  .hero-content-public-speaking-communication-skills {
    flex-direction: column;
  }

  .hero-text-wrapper-public-speaking-communication-skills,
  .hero-image-wrapper-public-speaking-communication-skills {
    flex: 1 1 100%;
    max-width: none;
  }
}

.intro-section-public-speaking-communication-skills {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-section-public-speaking-communication-skills .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.intro-content-public-speaking-communication-skills {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-public-speaking-communication-skills {
  flex: 1 1 400px;
  max-width: 550px;
}

.intro-image-public-speaking-communication-skills {
  flex: 1 1 400px;
  max-width: 450px;
}

.intro-title-public-speaking-communication-skills {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.intro-paragraph-public-speaking-communication-skills {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

@media (max-width: 768px) {
  .intro-content-public-speaking-communication-skills {
    flex-direction: column;
  }

  .intro-text-public-speaking-communication-skills,
  .intro-image-public-speaking-communication-skills {
    flex: 1 1 100%;
    max-width: none;
  }
}

.steps-section-public-speaking-communication-skills {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.steps-section-public-speaking-communication-skills .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section-header-public-speaking-communication-skills {
  text-align: center;
  margin-bottom: 3rem;
}

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

.section-title-public-speaking-communication-skills {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-subtitle-public-speaking-communication-skills {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.steps-wrapper-public-speaking-communication-skills {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-public-speaking-communication-skills {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step-number-public-speaking-communication-skills {
  font-size: 3rem;
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  min-width: 80px;
  flex-shrink: 0;
}

.step-content-public-speaking-communication-skills {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-public-speaking-communication-skills {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
}

.step-text-public-speaking-communication-skills {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .step-item-public-speaking-communication-skills {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .step-number-public-speaking-communication-skills {
    font-size: 2rem;
  }
}

.techniques-section-public-speaking-communication-skills {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.techniques-section-public-speaking-communication-skills .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.techniques-content-public-speaking-communication-skills {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.techniques-text-public-speaking-communication-skills {
  flex: 1 1 400px;
  max-width: 550px;
}

.techniques-image-public-speaking-communication-skills {
  flex: 1 1 400px;
  max-width: 450px;
}

.techniques-title-public-speaking-communication-skills {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 2rem;
  font-weight: 700;
}

.techniques-highlight-public-speaking-communication-skills {
  padding: 1.5rem;
  background: #f1f5f9;
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.highlight-subtitle-public-speaking-communication-skills {
  font-size: 1.125rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.highlight-text-public-speaking-communication-skills {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #475569;
  line-height: 1.7;
}

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

@media (max-width: 768px) {
  .techniques-content-public-speaking-communication-skills {
    flex-direction: column;
  }

  .techniques-text-public-speaking-communication-skills,
  .techniques-image-public-speaking-communication-skills {
    flex: 1 1 100%;
    max-width: none;
  }
}

.features-section-public-speaking-communication-skills {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-section-public-speaking-communication-skills .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.features-cards-public-speaking-communication-skills {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.features-card-public-speaking-communication-skills {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-card-public-speaking-communication-skills:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.features-card-icon-public-speaking-communication-skills {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 10px;
  color: #2563eb;
  font-size: 1.75rem;
}

.features-card-title-public-speaking-communication-skills {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.features-card-text-public-speaking-communication-skills {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #64748b;
  line-height: 1.7;
}

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

.quote-section-public-speaking-communication-skills {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.quote-section-public-speaking-communication-skills .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.featured-quote-public-speaking-communication-skills {
  padding: clamp(2rem, 5vw, 3rem);
  border-left: 4px solid #38bdf8;
  text-align: center;
  margin: 0;
}

.quote-text-public-speaking-communication-skills {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-style: italic;
}

.quote-cite-public-speaking-communication-skills {
  font-size: 0.9375rem;
  color: #cbd5e1;
  font-style: normal;
  display: block;
}

.practice-section-public-speaking-communication-skills {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-section-public-speaking-communication-skills .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.practice-content-public-speaking-communication-skills {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practice-text-public-speaking-communication-skills {
  flex: 1 1 400px;
  max-width: 550px;
}

.practice-image-public-speaking-communication-skills {
  flex: 1 1 400px;
  max-width: 450px;
}

.practice-title-public-speaking-communication-skills {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.practice-paragraph-public-speaking-communication-skills {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.practice-list-public-speaking-communication-skills {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.practice-item-public-speaking-communication-skills {
  display: flex;
  gap: 1rem;
}

.practice-item-number-public-speaking-communication-skills {
  font-size: 1.5rem;
  color: #2563eb;
  flex-shrink: 0;
  line-height: 1;
}

.practice-item-text-public-speaking-communication-skills {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #475569;
  line-height: 1.7;
}

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

@media (max-width: 768px) {
  .practice-content-public-speaking-communication-skills {
    flex-direction: column-reverse;
  }

  .practice-text-public-speaking-communication-skills,
  .practice-image-public-speaking-communication-skills {
    flex: 1 1 100%;
    max-width: none;
  }
}

.transformation-section-public-speaking-communication-skills {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.transformation-section-public-speaking-communication-skills .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.transformation-content-public-speaking-communication-skills {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.transformation-text-public-speaking-communication-skills {
  flex: 1 1 400px;
  max-width: 550px;
}

.transformation-image-public-speaking-communication-skills {
  flex: 1 1 400px;
  max-width: 450px;
}

.transformation-title-public-speaking-communication-skills {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.transformation-paragraph-public-speaking-communication-skills {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.transformation-cta-public-speaking-communication-skills {
  margin-top: 2rem;
}

.btn-primary-public-speaking-communication-skills {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  background: #2563eb;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary-public-speaking-communication-skills:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

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

@media (max-width: 768px) {
  .transformation-content-public-speaking-communication-skills {
    flex-direction: column;
  }

  .transformation-text-public-speaking-communication-skills,
  .transformation-image-public-speaking-communication-skills {
    flex: 1 1 100%;
    max-width: none;
  }
}

.related-section-public-speaking-communication-skills {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-section-public-speaking-communication-skills .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.related-card-public-speaking-communication-skills {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0;
  background: transparent;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.related-card-public-speaking-communication-skills:hover {
  transform: translateY(-5px);
}

.related-card-image-public-speaking-communication-skills {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.related-card-content-public-speaking-communication-skills {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-public-speaking-communication-skills {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}

.related-card-text-public-speaking-communication-skills {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.related-card-public-speaking-communication-skills:hover .related-card-title-public-speaking-communication-skills {
  color: #2563eb;
}

@media (max-width: 768px) {
  .related-card-public-speaking-communication-skills {
    flex: 1 1 100%;
    max-width: none;
  }
}

.disclaimer-section-public-speaking-communication-skills {
  background: #f8fafc;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-section-public-speaking-communication-skills .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.disclaimer-content-public-speaking-communication-skills {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-public-speaking-communication-skills {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-public-speaking-communication-skills {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .hero-section-public-speaking-communication-skills {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .intro-section-public-speaking-communication-skills {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .steps-section-public-speaking-communication-skills {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .techniques-section-public-speaking-communication-skills {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .features-section-public-speaking-communication-skills {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .quote-section-public-speaking-communication-skills {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .practice-section-public-speaking-communication-skills {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .transformation-section-public-speaking-communication-skills {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .related-section-public-speaking-communication-skills {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .step-item-public-speaking-communication-skills {
    padding: 2.5rem;
  }

  .step-number-public-speaking-communication-skills {
    font-size: 3.5rem;
    min-width: 100px;
  }
}

/* Post Page 5 Styles */
.main-emotional-intelligence-stress-management {
  background: #ffffff;
  color: #1e293b;
}

.hero-section-emotional-intelligence-stress-management {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-emotional-intelligence-stress-management a {
  color: #38bdf8;
  transition: color 0.3s ease;
}

.breadcrumbs-emotional-intelligence-stress-management a:hover {
  color: #0ea5e9;
  text-decoration: underline;
}

.breadcrumbs-emotional-intelligence-stress-management span {
  color: #64748b;
}

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

.hero-text-block-emotional-intelligence-stress-management {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-emotional-intelligence-stress-management {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-emotional-intelligence-stress-management {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-emotional-intelligence-stress-management {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-meta-emotional-intelligence-stress-management {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-emotional-intelligence-stress-management {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(56, 189, 248, 0.1);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #38bdf8;
}

.meta-badge-emotional-intelligence-stress-management i {
  font-size: 0.875rem;
}

.hero-image-emotional-intelligence-stress-management {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-content-emotional-intelligence-stress-management {
    flex-direction: column;
  }
  
  .hero-text-block-emotional-intelligence-stress-management,
  .hero-image-block-emotional-intelligence-stress-management {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.intro-text-emotional-intelligence-stress-management {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-emotional-intelligence-stress-management {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-emotional-intelligence-stress-management {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
}

.intro-paragraph-emotional-intelligence-stress-management {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

@media (max-width: 768px) {
  .intro-content-emotional-intelligence-stress-management {
    flex-direction: column;
  }
  
  .intro-text-emotional-intelligence-stress-management,
  .intro-image-emotional-intelligence-stress-management {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.pillars-section-emotional-intelligence-stress-management {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.pillars-header-emotional-intelligence-stress-management {
  text-align: center;
  margin-bottom: 3rem;
}

.pillars-title-emotional-intelligence-stress-management {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
}

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

.pillars-grid-emotional-intelligence-stress-management {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.pillar-card-emotional-intelligence-stress-management {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #0284c7;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.pillar-card-emotional-intelligence-stress-management:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.pillar-number-emotional-intelligence-stress-management {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0284c7;
  line-height: 1;
}

.pillar-title-emotional-intelligence-stress-management {
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 600;
}

.pillar-text-emotional-intelligence-stress-management {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .pillar-card-emotional-intelligence-stress-management {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

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

.stress-text-block-emotional-intelligence-stress-management {
  flex: 1 1 50%;
  max-width: 50%;
}

.stress-image-block-emotional-intelligence-stress-management {
  flex: 1 1 50%;
  max-width: 50%;
}

.stress-title-emotional-intelligence-stress-management {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
}

.stress-paragraph-emotional-intelligence-stress-management {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.stress-quote-emotional-intelligence-stress-management {
  padding: 2rem;
  border-left: 4px solid #0284c7;
  background: #f0f9ff;
  margin: 2rem 0;
  border-radius: 8px;
}

.stress-quote-text-emotional-intelligence-stress-management {
  color: #0f172a;
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.stress-quote-author-emotional-intelligence-stress-management {
  color: #64748b;
  font-size: 0.875rem;
  display: block;
}

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

@media (max-width: 768px) {
  .stress-content-wrapper-emotional-intelligence-stress-management {
    flex-direction: column;
  }
  
  .stress-text-block-emotional-intelligence-stress-management,
  .stress-image-block-emotional-intelligence-stress-management {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.techniques-section-emotional-intelligence-stress-management {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.techniques-header-emotional-intelligence-stress-management {
  text-align: center;
  margin-bottom: 3rem;
}

.techniques-title-emotional-intelligence-stress-management {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
}

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

.techniques-cards-emotional-intelligence-stress-management {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.technique-card-emotional-intelligence-stress-management {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.technique-card-emotional-intelligence-stress-management:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.technique-icon-emotional-intelligence-stress-management {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 10px;
  color: #0284c7;
  font-size: 1.75rem;
}

.technique-card-title-emotional-intelligence-stress-management {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
}

.technique-card-text-emotional-intelligence-stress-management {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .technique-card-emotional-intelligence-stress-management {
    flex: 1 1 100%;
    max-width: none;
  }
}

.daily-practice-section-emotional-intelligence-stress-management {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.daily-content-wrapper-emotional-intelligence-stress-management {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.daily-image-block-emotional-intelligence-stress-management {
  flex: 1 1 50%;
  max-width: 50%;
}

.daily-text-block-emotional-intelligence-stress-management {
  flex: 1 1 50%;
  max-width: 50%;
}

.daily-title-emotional-intelligence-stress-management {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
}

.daily-paragraph-emotional-intelligence-stress-management {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.daily-image-emotional-intelligence-stress-management {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .daily-content-wrapper-emotional-intelligence-stress-management {
    flex-direction: column;
  }
  
  .daily-image-block-emotional-intelligence-stress-management,
  .daily-text-block-emotional-intelligence-stress-management {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.resources-section-emotional-intelligence-stress-management {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.resources-header-emotional-intelligence-stress-management {
  text-align: center;
  margin-bottom: 3rem;
}

.resources-title-emotional-intelligence-stress-management {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
}

.resources-content-emotional-intelligence-stress-management {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.resources-image-block-emotional-intelligence-stress-management {
  flex: 1 1 40%;
  max-width: 40%;
}

.resources-list-block-emotional-intelligence-stress-management {
  flex: 1 1 60%;
  max-width: 60%;
}

.resources-image-emotional-intelligence-stress-management {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.resources-list-emotional-intelligence-stress-management {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.resources-item-emotional-intelligence-stress-management {
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 8px;
  border-left: 4px solid #0284c7;
}

.resources-item-title-emotional-intelligence-stress-management {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.resources-item-text-emotional-intelligence-stress-management {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .resources-content-emotional-intelligence-stress-management {
    flex-direction: column;
  }
  
  .resources-image-block-emotional-intelligence-stress-management,
  .resources-list-block-emotional-intelligence-stress-management {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.related-header-emotional-intelligence-stress-management {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-emotional-intelligence-stress-management {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 0.5rem;
}

.related-subtitle-emotional-intelligence-stress-management {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
}

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

.related-card-emotional-intelligence-stress-management {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.related-card-emotional-intelligence-stress-management:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.related-card-image-emotional-intelligence-stress-management {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-emotional-intelligence-stress-management {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-emotional-intelligence-stress-management {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-emotional-intelligence-stress-management {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
}

.related-card-text-emotional-intelligence-stress-management {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
}

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

.disclaimer-section-emotional-intelligence-stress-management {
  background: #f0f9ff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 2px solid #0284c7;
}

.disclaimer-content-emotional-intelligence-stress-management {
  max-width: 900px;
  margin: 0 auto;
}

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

.disclaimer-text-emotional-intelligence-stress-management {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.disclaimer-text-emotional-intelligence-stress-management:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .hero-section-emotional-intelligence-stress-management {
    padding: 5rem 0;
  }
  
  .introduction-section-emotional-intelligence-stress-management {
    padding: 5rem 0;
  }
  
  .pillars-section-emotional-intelligence-stress-management {
    padding: 5rem 0;
  }
  
  .stress-management-section-emotional-intelligence-stress-management {
    padding: 5rem 0;
  }
  
  .techniques-section-emotional-intelligence-stress-management {
    padding: 5rem 0;
  }
  
  .daily-practice-section-emotional-intelligence-stress-management {
    padding: 5rem 0;
  }
  
  .resources-section-emotional-intelligence-stress-management {
    padding: 5rem 0;
  }
  
  .related-section-emotional-intelligence-stress-management {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-emotional-intelligence-stress-management {
    padding: 6rem 0;
  }
  
  .introduction-section-emotional-intelligence-stress-management {
    padding: 6rem 0;
  }
  
  .pillars-section-emotional-intelligence-stress-management {
    padding: 6rem 0;
  }
  
  .stress-management-section-emotional-intelligence-stress-management {
    padding: 6rem 0;
  }
  
  .techniques-section-emotional-intelligence-stress-management {
    padding: 6rem 0;
  }
  
  .daily-practice-section-emotional-intelligence-stress-management {
    padding: 6rem 0;
  }
  
  .resources-section-emotional-intelligence-stress-management {
    padding: 6rem 0;
  }
  
  .related-section-emotional-intelligence-stress-management {
    padding: 6rem 0;
  }
}

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

/* About Page Styles */
.personal-growth-narrative-about {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

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

.hero-section-about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.hero-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 800px;
}

.hero-title-about {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
}

.hero-subtitle-about {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 700px;
}

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

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

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

.stat-label-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #94a3b8;
}

.hero-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: clamp(2rem, 5vw, 3rem) 0 0 0;
  border-radius: 12px;
  display: block;
}

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

.philosophy-section-about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.philosophy-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.philosophy-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

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

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

.philosophy-intro-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.philosophy-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.philosophy-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.philosophy-card-icon-about {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 10px;
  font-size: 1.5rem;
}

.philosophy-card-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

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

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

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

.methodology-section-about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.methodology-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.methodology-header-about {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

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

.methodology-intro-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.step-item-about {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

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

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

.step-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

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

.methodology-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  border-radius: 12px;
  display: block;
}

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

.impact-section-about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.impact-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.impact-header-about {
  text-align: center;
}

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

.impact-description-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.featured-quote-about {
  padding: clamp(2rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.5rem);
  border-left: 4px solid #06b6d4;
  background: #f8fafc;
  border-radius: 8px;
  margin: clamp(2rem, 4vw, 3rem) 0;
}

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

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

.impact-metrics-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.metric-box-about {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f1f5f9;
  border-radius: 12px;
  text-align: center;
}

.metric-number-about {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #06b6d4;
}

.metric-label-about {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

.approach-section-about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.approach-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.approach-header-about {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

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

.approach-intro-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.pillars-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.pillar-card-about {
  flex: 1 1 260px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 12px;
}

.pillar-number-about {
  font-size: 2.5rem;
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

.pillar-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.pillar-description-about {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.approach-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  border-radius: 12px;
  display: block;
}

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

.disclaimer-section-about {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-section-about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 8px;
  border-left: 4px solid #06b6d4;
}

.disclaimer-header-about {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  color: #06b6d4;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

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

.disclaimer-text-about {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #64748b;
}

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

  .philosophy-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .methodology-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .impact-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .approach-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .disclaimer-section-about {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }
}

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

  .step-item-about {
    gap: 2rem;
  }

  .step-number-about {
    min-width: 80px;
  }
}

/* Privacy Page Styles */
.legal-docs {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.legal-docs section {
  width: 100%;
  overflow: hidden;
}

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

.legal-docs-header {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 5vw, 3rem) 0;
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-bg-tertiary);
}

.legal-docs-header h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-header .updated-date {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-style: italic;
}

.legal-docs-content {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.legal-docs-section {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.legal-docs-section h2 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.legal-docs-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.legal-docs-section ul,
.legal-docs-section ol {
  margin-left: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.legal-docs-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
}

.legal-docs-section ul li {
  list-style: disc;
}

.legal-docs-section ol li {
  list-style: decimal;
}

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

.contact-section h2 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.contact-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

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

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

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

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

  .legal-docs-content {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

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

  .contact-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }
}

@media (min-width: 1024px) {
  .legal-docs-header {
    padding: 6rem 0 4rem 0;
  }

  .legal-docs-content {
    padding: 6rem 0;
  }

  .legal-docs-section {
    margin-bottom: 5rem;
  }

  .contact-section {
    padding: 5rem 0;
  }
}

/* Thank You Page Styles */
/* Thank You Page Component */
.thank-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Thank Section */
.thank-section {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem);
}

/* Thank Icon */
.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.thank-icon i {
  font-size: clamp(3rem, 12vw, 5rem);
  color: var(--color-primary);
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
}

/* Thank Heading */
.thank-section h1 {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 clamp(1rem, 3vw, 1.5rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Thank Subtitle */
.thank-subtitle {
  color: var(--color-primary);
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 600;
  margin: 0 0 clamp(1.5rem, 4vw, 2rem) 0;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Thank Message */
.thank-message {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  line-height: 1.7;
  margin: 0 0 clamp(1rem, 3vw, 1.5rem) 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Thank Next Steps */
.thank-next-steps {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  line-height: 1.7;
  margin: 0 0 clamp(2rem, 5vw, 3rem) 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.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-primary);
  line-height: 1.5;
}

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

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

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

  .thank-content {
    padding: clamp(2.5rem, 6vw, 4rem);
  }

  .thank-icon i {
    animation: iconFloatPulse 3s ease-in-out infinite;
  }

  @keyframes iconFloatPulse {
    0%, 100% {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
    50% {
      transform: translateY(-10px) scale(1.05);
      opacity: 0.95;
    }
  }
}

/* Responsive Desktop */
@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .thank-content {
    padding: clamp(3rem, 8vw, 5rem);
  }
}

/* Responsive Large Desktop */
@media (min-width: 1440px) {
  .thank-section {
    padding: 6rem 0;
  }

  .thank-content {
    padding: 5rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .thank-icon i {
    animation: none;
  }

  .btn {
    transition: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

/* Print Styles */
@media print {
  .thank-section {
    page-break-inside: avoid;
  }

  .btn {
    display: none;
  }
}

/* 404 Page Styles */
/* Error page component wrapper */
.main.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Error section */
.error-section {
  width: 100%;
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f2e 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3rem) 0;
}

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

/* Error content wrapper */
.error-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

/* Decorative background circle */
.error-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.error-circle {
  width: clamp(300px, 70vw, 600px);
  height: clamp(300px, 70vw, 600px);
  border: 2px solid rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  animation: rotate-slow 20s linear infinite;
}

/* Error inner content */
.error-inner {
  position: relative;
  z-index: 3;
  max-width: 600px;
  width: 100%;
}

/* Error code - 404 */
.error-code {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.02em;
  animation: fade-in-down 0.8s ease-out;
}

/* Error icon */
.error-icon {
  font-size: clamp(3rem, 8vw, 4rem);
  color: #06b6d4;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
  animation: bounce 2s ease-in-out infinite;
}

/* Error title */
.error-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #ffffff;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
  font-weight: 700;
  line-height: 1.2;
  animation: fade-in-up 0.8s ease-out 0.2s backwards;
}

/* Error description */
.error-description {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
  line-height: 1.6;
  animation: fade-in-up 0.8s ease-out 0.3s backwards;
}

/* Error subtext */
.error-subtext {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #94a3b8;
  margin: clamp(0.75rem, 1.5vw, 1.25rem) 0 clamp(1.5rem, 3vw, 2.5rem) 0;
  line-height: 1.6;
  animation: fade-in-up 0.8s ease-out 0.4s backwards;
}

/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  padding: clamp(0.875rem, 1.5vw, 1.25rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-large {
  animation: fade-in-up 0.8s ease-out 0.5s backwards;
}

/* Error suggestions */
.error-suggestions {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-lg);
  animation: fade-in-up 0.8s ease-out 0.6s backwards;
}

.suggestions-title {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #ffffff;
  font-weight: 600;
  margin: 0 0 clamp(0.75rem, 1.5vw, 1rem) 0;
}

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

.suggestions-list li {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.suggestions-list i {
  color: #06b6d4;
  font-size: 0.875rem;
}

/* Floating elements */
.error-floats {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.float-element {
  position: absolute;
  font-size: 2.5rem;
  color: rgba(6, 182, 212, 0.1);
  animation: float 6s ease-in-out infinite;
}

.float-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.float-2 {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
  font-size: 2rem;
}

.float-3 {
  bottom: 20%;
  left: 5%;
  animation-delay: 4s;
  font-size: 1.75rem;
}

/* Animations */
@keyframes rotate-slow {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes fade-in-down {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Responsive styles - Tablet (768px+) */
@media (min-width: 768px) {
  .error-section {
    padding: clamp(2rem, 4vw, 3rem) 0;
  }

  .error-circle {
    width: 500px;
    height: 500px;
  }

  .float-element {
    font-size: 3rem;
  }

  .float-1 {
    top: 15%;
    left: 8%;
  }

  .float-2 {
    top: 55%;
    right: 10%;
    font-size: 2.25rem;
  }

  .float-3 {
    bottom: 25%;
    left: 10%;
    font-size: 2rem;
  }
}

/* Responsive styles - Desktop (1024px+) */
@media (min-width: 1024px) {
  .error-section {
    padding: 3rem 0;
  }

  .error-circle {
    width: 600px;
    height: 600px;
  }

  .btn-primary:hover {
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
  }

  .float-element {
    font-size: 3.5rem;
  }

  .float-1 {
    top: 12%;
    left: 12%;
  }

  .float-2 {
    top: 50%;
    right: 12%;
    font-size: 2.5rem;
  }

  .float-3 {
    bottom: 20%;
    left: 8%;
    font-size: 2.25rem;
  }
}

/* Responsive styles - Large Desktop (1440px+) */
@media (min-width: 1440px) {
  .error-code {
    margin-bottom: 1rem;
  }

  .error-circle {
    width: 700px;
    height: 700px;
  }

  .error-suggestions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .suggestions-title {
    margin: 0;
    min-width: 120px;
  }

  .suggestions-list {
    flex-direction: row;
    gap: 2rem;
  }
}

/* Accessibility - Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .error-code,
  .error-title,
  .error-description,
  .error-subtext,
  .btn-large,
  .error-suggestions,
  .error-icon,
  .float-element {
    animation: none;
  }

  .error-circle {
    animation: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}