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

:root {
  /* COLOR STRATEGY: LIGHT - L3 SOFT GRAY + GREEN */
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;
  
  /* Text colors */
  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  --color-text-light: #6b7280;
  
  /* Accent colors - Green palette */
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-secondary: #10b981;
  --color-accent-light: #d1fae5;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Merriweather', serif;
  
  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
  
  /* Transitions */
  --transition-fast: 150ms ease-out;
  --transition-base: 250ms ease-out;
  --transition-slow: 350ms ease-out;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

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

p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

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

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

li {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

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

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

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

.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-secondary {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
  border-color: var(--color-primary);
}

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

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

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

.btn-small {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.75rem, 0.9vw + 0.4rem, 0.9rem);
}

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

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

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 24px;
}

.card-title {
  font-size: clamp(1.125rem, 2vw + 0.4rem, 1.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.card-text {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

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

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

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

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

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

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

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

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

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

/* Flex Utilities */
.flex {
  display: flex;
  flex-direction: row;
}

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

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

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

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

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

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

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: clamp(0.75rem, 0.9vw + 0.3rem, 0.875rem);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--color-accent-light);
  color: var(--color-primary);
}

.badge-secondary {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-secondary);
}

/* Icons */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-sm {
  font-size: 16px;
  width: 24px;
  height: 24px;
}

.icon-md {
  font-size: 24px;
  width: 32px;
  height: 32px;
}

.icon-lg {
  font-size: 32px;
  width: 48px;
  height: 48px;
}

/* Decorative Elements */
.decoration {
  position: absolute;
  pointer-events: none;
  opacity: 0.6;
}

.decoration-blur {
  filter: blur(80px);
}

.dot-pattern {
  display: grid;
  grid-template-columns: repeat(auto-fill, 8px);
  gap: 8px;
  opacity: 0.3;
}

/* Utilities */
.text-center {
  text-align: center;
}

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

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

.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-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); }

.pt-sm { padding-top: var(--space-sm); }
.pt-md { padding-top: var(--space-md); }
.pt-lg { padding-top: var(--space-lg); }

.pb-sm { padding-bottom: var(--space-sm); }
.pb-md { padding-bottom: var(--space-md); }
.pb-lg { padding-bottom: var(--space-lg); }

.hidden {
  display: none;
}

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

/* Lists */
ul, ol {
  padding-left: 2rem;
  margin-bottom: var(--space-md);
}

ul li::marker {
  color: var(--color-primary);
}

ol li::marker {
  color: var(--color-primary);
  font-weight: 600;
}

/* Form Elements Base */
input, textarea, select {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  transition: all var(--transition-base);
  background: var(--color-bg-card);
  color: var(--color-text-primary);
}

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

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

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

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

/* Mobile Menu Toggle Button */
.header-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--color-text-primary);
  cursor: pointer;
  padding: var(--space-sm);
  transition: color var(--transition-base);
}

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

@media (max-width: 768px) {
  .header-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Print Styles */
@media print {
  body {
    background: #ffffff;
  }
  
  .no-print {
    display: none;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Merriweather:wght@400;700&display=swap');

  .header-learn-hub {
    background: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-accent-light);
    position: static;
    width: 100%;
    z-index: 100;
  }

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

  .header-learn-hub-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity var(--transition-base);
  }

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

  .header-learn-hub-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .header-learn-hub-logo-text {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    color: var(--color-text-primary);
    white-space: nowrap;
  }

  .header-learn-hub-desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
    flex: 1;
    margin-left: 3rem;
  }

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

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

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

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

  .header-learn-hub-cta-button {
    display: none;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all var(--transition-base);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .header-learn-hub-cta-button:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
  }

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

  .header-learn-hub-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-text-primary);
    font-size: 1.25rem;
    transition: color var(--transition-base);
    flex-shrink: 0;
  }

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

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

  .header-learn-hub-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-bg-secondary);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all var(--transition-base);
    z-index: 99;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.08);
  }

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

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

  .header-learn-hub-mobile-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-primary);
  }

  .header-learn-hub-mobile-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-text-primary);
    font-size: 1.25rem;
    transition: color var(--transition-base);
  }

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

  .header-learn-hub-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    overflow-y: auto;
  }

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

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

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

  .header-learn-hub-mobile-cta:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
  }

  @media (min-width: 768px) {
    .header-learn-hub-container {
      height: 80px;
      padding: 0 clamp(1.5rem, 5vw, 3rem);
    }

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

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

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

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

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

  @media (min-width: 1024px) {
    .header-learn-hub-nav-link {
      font-size: 1rem;
    }

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

  @media (prefers-reduced-motion: reduce) {
    .header-learn-hub-brand,
    .header-learn-hub-nav-link,
    .header-learn-hub-nav-link::after,
    .header-learn-hub-cta-button,
    .header-learn-hub-mobile-toggle,
    .header-learn-hub-mobile-menu,
    .header-learn-hub-mobile-link {
      transition: none;
    }
  }

    .education-hub {
  width: 100%;
}

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

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

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

.hero-ambient-glow {
  position: absolute;
  top: 5%;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-field {
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-1 {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 280px;
  height: 280px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  z-index: 2;
  pointer-events: none;
}

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

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

.hero-corner-shape {
  position: absolute;
  bottom: 10%;
  right: 8%;
  width: 200px;
  height: 200px;
  background: rgba(251, 146, 60, 0.06);
  border-radius: 20% 80% 70% 30% / 20% 70% 30% 80%;
  z-index: 2;
  pointer-events: none;
}

.hero-line-element {
  position: absolute;
  top: 40%;
  left: 8%;
  width: 250px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-secondary-glow {
  position: absolute;
  top: 60%;
  left: 15%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

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

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

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

.hero-cta-group .btn {
  min-width: 200px;
}

.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  justify-content: center;
  margin-top: 3rem;
}

.hero-stat-item {
  flex: 0 1 auto;
  text-align: center;
}

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

.hero-stat-label {
  display: block;
  font-size: clamp(0.875rem, 1vw + 0.2rem, 1rem);
  color: #64748b;
  font-weight: 500;
}

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

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

.featured-shape-accent-2 {
  position: absolute;
  bottom: 5%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.featured-subtle-backdrop {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(251, 146, 60, 0.05) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.featured-corner-detail {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 2;
  pointer-events: none;
}

.featured-floating-panel {
  position: absolute;
  bottom: 20%;
  left: 8%;
  width: 220px;
  height: 160px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 16px;
  transform: rotate(-8deg);
  z-index: 2;
  pointer-events: none;
}

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

.featured-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

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

.featured-subtitle {
  font-size: clamp(0.9rem, 1.5vw + 0.2rem, 1.1rem);
  color: #64748b;
  max-width: 650px;
  margin: 0 auto;
}

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

.featured-card {
  flex: 1 1 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

.featured-card-link {
  color: #059669;
  font-weight: 600;
  text-decoration: none;
  transition: color 300ms ease-in-out;
  align-self: flex-start;
}

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

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

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

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

.methodology-ambient-field {
  position: absolute;
  top: -100px;
  right: -50px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.methodology-glow-accent {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(16, 185, 129, 0.07);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.methodology-floating-shape {
  position: absolute;
  top: 25%;
  left: 8%;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 50% 40% 45% 55% / 40% 50% 55% 45%;
  z-index: 2;
  pointer-events: none;
}

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

.methodology-corner-element {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 180px;
  height: 180px;
  background: rgba(251, 146, 60, 0.07);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.methodology-secondary-accent {
  position: absolute;
  top: 15%;
  right: 20%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

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

.methodology-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

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

.methodology-subtitle {
  font-size: clamp(0.9rem, 1.5vw + 0.2rem, 1.1rem);
  color: #64748b;
  max-width: 650px;
  margin: 0 auto;
}

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

.methodology-step {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  transition: all 300ms ease-in-out;
}

.methodology-step:hover {
  background: #f1f5f9;
  transform: translateX(4px);
}

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

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

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

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

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

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

.benefits-glow-source {
  position: absolute;
  bottom: 10%;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.benefits-floating-form {
  position: absolute;
  top: 30%;
  right: 8%;
  width: 200px;
  height: 180px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(5, 150, 105, 0.1);
  border-radius: 12px;
  transform: rotate(12deg);
  z-index: 2;
  pointer-events: none;
}

.benefits-accent-orb {
  position: absolute;
  top: 15%;
  left: 5%;
  width: 180px;
  height: 180px;
  background: rgba(139, 92, 246, 0.07);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.benefits-line-decoration {
  position: absolute;
  bottom: 40%;
  left: 15%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.benefits-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

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

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

.benefits-card {
  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;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.benefits-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: #d1fae5;
}

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

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

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

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

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

.inspiration-glow-backdrop {
  position: absolute;
  top: -50px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.inspiration-accent-field {
  position: absolute;
  bottom: -100px;
  left: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.inspiration-floating-element {
  position: absolute;
  top: 20%;
  left: 8%;
  width: 250px;
  height: 250px;
  background: rgba(251, 146, 60, 0.06);
  border-radius: 45% 55% 50% 50% / 50% 50% 50% 50%;
  z-index: 2;
  pointer-events: none;
}

.inspiration-corner-accent {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 180px;
  height: 180px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

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

.inspiration-quote {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3.5rem);
  border-left: 4px solid #059669;
  background: #f8fafc;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  border-radius: 8px;
}

.inspiration-quote-text {
  font-size: clamp(1.125rem, 2.5vw + 0.2rem, 1.5rem);
  font-style: italic;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.inspiration-quote-author {
  font-size: clamp(0.875rem, 1vw + 0.2rem, 1rem);
  color: #64748b;
  font-style: normal;
}

.inspiration-insight {
  background: rgba(5, 150, 105, 0.05);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  border: 1px solid rgba(5, 150, 105, 0.1);
}

.inspiration-insight-title {
  font-size: clamp(1.25rem, 2vw + 0.2rem, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.inspiration-insight-text {
  font-size: clamp(0.9rem, 1vw + 0.2rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
}

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

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

.approach-shape-2 {
  position: absolute;
  bottom: 5%;
  right: -100px;
  width: 380px;
  height: 380px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.approach-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.approach-floating-panel {
  position: absolute;
  bottom: 25%;
  left: 10%;
  width: 210px;
  height: 150px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 14px;
  transform: rotate(-6deg);
  z-index: 2;
  pointer-events: none;
}

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

.approach-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

.approach-title {
  font-size: clamp(1.75rem, 4vw + 0.3rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
}

.approach-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
}

.approach-block {
  flex: 1 1 300px;
  min-width: 250px;
}

.approach-block-title {
  font-size: clamp(1.25rem, 2vw + 0.2rem, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.approach-block-text {
  font-size: clamp(0.9rem, 1vw + 0.2rem, 1.1rem);
  color: #64748b;
  line-height: 1.7;
}

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

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

.contact-accent-shape {
  position: absolute;
  bottom: 15%;
  left: -50px;
  width: 350px;
  height: 350px;
  background: rgba(16, 185, 129, 0.07);
  border-radius: 45% 55% 50% 50% / 50% 50% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

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

.contact-line-detail {
  position: absolute;
  top: 35%;
  right: 20%;
  width: 220px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.contact-corner-glow {
  position: absolute;
  bottom: 5%;
  right: 8%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

.contact-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

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

.contact-subtitle {
  font-size: clamp(0.9rem, 1.5vw + 0.2rem, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.contact-main {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

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

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

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

.contact-label {
  font-size: clamp(0.875rem, 1vw + 0.2rem, 1rem);
  font-weight: 500;
  color: #1e293b;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: clamp(0.75rem, 1.5vw, 1rem) 1rem;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  color: #0f172a;
  font-size: clamp(0.875rem, 1vw + 0.2rem, 1rem);
  font-family: var(--font-primary);
  transition: all 300ms ease-in-out;
}

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

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

.contact-submit-btn {
  padding: clamp(0.875rem, 1.5vw, 1.125rem) 2rem;
  background: #059669;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: clamp(0.9rem, 1vw + 0.2rem, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  font-family: var(--font-primary);
}

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

.contact-submit-btn:active {
  transform: translateY(0);
  transition-duration: 150ms;
}

.contact-form-privacy {
  font-size: clamp(0.75rem, 0.9vw + 0.2rem, 0.875rem);
  color: #64748b;
  text-align: center;
  margin-top: 0.5rem;
}

.contact-privacy-link {
  color: #059669;
  text-decoration: none;
  transition: color 300ms ease-in-out;
}

.contact-privacy-link:hover {
  color: #047857;
}

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

.contact-info-title {
  font-size: clamp(1.25rem, 2vw + 0.2rem, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: #059669;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-info-text {
  flex-grow: 1;
}

.contact-info-text strong {
  display: block;
  font-size: clamp(0.95rem, 1vw + 0.2rem, 1.1rem);
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.contact-info-text p {
  font-size: clamp(0.875rem, 0.95vw + 0.2rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.contact-faq {
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.contact-faq-title {
  font-size: clamp(1rem, 1.5vw + 0.2rem, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.25rem;
}

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

.contact-faq-item:last-child {
  margin-bottom: 0;
}

.contact-faq-question {
  font-size: clamp(0.9rem, 1vw + 0.2rem, 1.05rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.contact-faq-answer {
  font-size: clamp(0.85rem, 0.95vw + 0.2rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

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

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

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

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

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

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

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: 6px;
  font-size: clamp(0.8rem, 0.95vw + 0.2rem, 0.95rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  font-family: var(--font-primary);
}

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

.cookie-btn-accept:hover {
  background: #047857;
}

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

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

@media (min-width: 768px) {
  .contact-form,
  .contact-info-items {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .methodology-step {
    padding: 2rem;
  }

  .methodology-step-number {
    min-width: 80px;
  }
}

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

    /* Footer Base Styles */
.footer {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem) 0;
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
}

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

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

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

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

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

/* Navigation Section */
.footer-navigation {
  flex: 1 1 180px;
}

.footer-nav-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

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

.footer-nav-link {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all var(--transition-base);
  display: inline-block;
}

.footer-nav-link:hover {
  color: var(--color-primary);
  transform: translateX(3px);
}

/* Contact Section */
.footer-contact {
  flex: 1 1 280px;
  max-width: 340px;
}

.footer-contact-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

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

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

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

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

/* Legal Section */
.footer-legal {
  flex: 1 1 180px;
}

.footer-legal-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

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

.footer-legal-link {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all var(--transition-base);
  display: inline-block;
}

.footer-legal-link:hover {
  color: var(--color-primary);
  transform: translateX(3px);
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: clamp(2rem, 5vw, 3rem) 0;
}

/* Copyright Section */
.footer-copyright {
  text-align: center;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  .footer-about,
  .footer-contact {
    max-width: none;
  }

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

  .footer-contact-label {
    display: inline;
    margin-right: 0.5rem;
    margin-bottom: 0;
  }

  .footer-contact-value {
    display: inline;
  }

  .footer-contact-item {
    margin-bottom: 0.5rem;
  }
}

/* Link Focus States */
.footer a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

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

  .footer-nav-link:hover,
  .footer-legal-link:hover {
    transform: none;
  }
}
    

/* Category Page Styles */
/* Category Page - Daily Learning Motivation */
.category-page-daily-learning {
  width: 100%;
}

/* Hero Section */
.hero-section-daily-learning {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: var(--color-bg-primary);
}

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

.hero-deco-glow-2 {
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-deco-shape-2 {
  position: absolute;
  bottom: 10%;
  right: 8%;
  width: 150px;
  height: 180px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 70% 30% 40% 60% / 60% 40% 70% 30%;
  z-index: 2;
  pointer-events: none;
}

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

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

.hero-subtitle-daily-learning {
  color: #64748b;
  font-size: clamp(1rem, 2vw + 0.3rem, 1.25rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.7;
}

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

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

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

.stat-label-daily-learning {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #64748b;
  opacity: 0.85;
}

/* Posts Section */
.posts-section-daily-learning {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
}

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

.posts-deco-2 {
  position: absolute;
  bottom: -5%;
  right: -4%;
  width: 280px;
  height: 280px;
  background: rgba(5, 150, 105, 0.04);
  border-radius: 70% 30% 40% 60% / 60% 40% 70% 30%;
  z-index: 1;
  pointer-events: none;
}

.posts-deco-3 {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: rgba(16, 185, 129, 0.03);
  border-radius: 40% 60% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

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

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

.posts-subtitle-daily-learning {
  color: #64748b;
  font-size: clamp(0.9375rem, 1.5vw + 0.3rem, 1.125rem);
  max-width: 700px;
  margin: 0 auto;
}

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

.card-daily-learning {
  flex: 1 1 320px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
}

.card-daily-learning:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(5, 150, 105, 0.1);
  border-color: rgba(5, 150, 105, 0.2);
}

.card-image-daily-learning {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

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

.card-description-daily-learning {
  color: #64748b;
  font-size: clamp(0.875rem, 1.2vw + 0.3rem, 1rem);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.card-meta-daily-learning {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.5rem 0;
}

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

.meta-badge-daily-learning i {
  font-size: 0.85em;
}

.card-link-daily-learning {
  display: inline-block;
  color: #059669;
  font-weight: 600;
  font-size: clamp(0.875rem, 1.2vw + 0.3rem, 1rem);
  text-decoration: none;
  transition: color var(--transition-base);
  align-self: flex-start;
  margin-top: 0.5rem;
}

.card-link-daily-learning:hover {
  color: #047857;
  text-decoration: underline;
}

/* Learning Path Section */
.learning-path-section-daily-learning {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f9fafb;
}

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

.learning-path-deco-2 {
  position: absolute;
  bottom: 5%;
  left: -3%;
  width: 280px;
  height: 280px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

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

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

.learning-path-subtitle-daily-learning {
  color: #64748b;
  font-size: clamp(0.9375rem, 1.5vw + 0.3rem, 1.125rem);
  max-width: 700px;
  margin: 0 auto;
}

.steps-container-daily-learning {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.step-item-daily-learning {
  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 #e5e7eb;
  transition: all var(--transition-slow);
}

.step-item-daily-learning:hover {
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.08);
  border-color: rgba(5, 150, 105, 0.2);
}

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

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

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

.step-text-daily-learning {
  color: #64748b;
  font-size: clamp(0.875rem, 1.2vw + 0.3rem, 1rem);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .step-item-daily-learning {
    padding: 1.25rem;
    gap: 1rem;
  }

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

/* Insights Section */
.insights-section-daily-learning {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
}

.insights-deco-1 {
  position: absolute;
  top: -8%;
  left: -6%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.insights-deco-2 {
  position: absolute;
  bottom: 15%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 70% 30% 40% 60% / 60% 40% 70% 30%;
  z-index: 1;
  pointer-events: none;
}

.insights-deco-3 {
  position: absolute;
  top: 40%;
  left: 3%;
  width: 180px;
  height: 180px;
  background: rgba(16, 185, 129, 0.03);
  border-radius: 50% 50% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.insights-content-daily-learning {
  position: relative;
  z-index: 10;
}

.featured-quote-daily-learning {
  margin: 0 0 clamp(2.5rem, 5vw, 4rem) 0;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 4vw, 3rem);
  background: rgba(5, 150, 105, 0.08);
  border-left: 4px solid #059669;
  border-radius: var(--radius-lg);
}

.quote-text-daily-learning {
  font-size: clamp(1.125rem, 2vw + 0.3rem, 1.375rem);
  font-style: italic;
  color: #0f172a;
  line-height: 1.8;
  margin-bottom: 1rem;
  margin: 0 0 1rem 0;
}

.quote-author-daily-learning {
  font-size: clamp(0.875rem, 1.2vw + 0.3rem, 1rem);
  color: #64748b;
  font-style: normal;
  display: block;
}

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

.insight-card-daily-learning {
  flex: 1 1 240px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all var(--transition-slow);
}

.insight-card-daily-learning:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.1);
}

.insight-icon-daily-learning {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  background: rgba(5, 150, 105, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 1.75rem;
}

.insight-title-daily-learning {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw + 0.3rem, 1.375rem);
  font-weight: 600;
  margin: 0;
}

.insight-text-daily-learning {
  color: #64748b;
  font-size: clamp(0.875rem, 1.2vw + 0.3rem, 1rem);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section-daily-learning {
    padding: clamp(3rem, 6vw, 4rem) 0;
  }

  .hero-stats-daily-learning {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .posts-grid-daily-learning {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

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

  .insights-cards-daily-learning {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

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

@media (max-width: 480px) {
  .hero-title-daily-learning {
    font-size: 1.75rem;
  }

  .stat-item-daily-learning {
    flex: 1 1 100px;
  }

  .step-item-daily-learning {
    flex-direction: column;
    text-align: center;
  }

  .step-number-daily-learning {
    min-width: auto;
    margin-bottom: 0.5rem;
  }
}

/* Post Page 1 Styles */
.main-creative-teaching-methods {
  width: 100%;
  background: var(--color-bg-primary);
}

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

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

.hero-text-block-creative-teaching-methods {
  flex: 1 1 45%;
  min-width: 0;
}

.hero-title-creative-teaching-methods {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.hero-subtitle-creative-teaching-methods {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #475569;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.hero-meta-creative-teaching-methods {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.meta-badge-creative-teaching-methods {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.5rem 1rem;
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-creative-teaching-methods i {
  font-size: 0.875rem;
}

.hero-image-block-creative-teaching-methods {
  flex: 1 1 50%;
  min-width: 0;
}

.hero-image-creative-teaching-methods {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.breadcrumbs-creative-teaching-methods {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
}

.breadcrumbs-creative-teaching-methods a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-creative-teaching-methods a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumb-separator-creative-teaching-methods {
  color: #cbd5e1;
  margin: 0 0.25rem;
}

.breadcrumb-current-creative-teaching-methods {
  color: #64748b;
}

@media (max-width: 768px) {
  .hero-content-creative-teaching-methods {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .hero-text-block-creative-teaching-methods,
  .hero-image-block-creative-teaching-methods {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-meta-creative-teaching-methods {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

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

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

.intro-text-creative-teaching-methods {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-creative-teaching-methods {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: var(--space-md);
}

.intro-description-creative-teaching-methods {
  font-size: clamp(0.95rem, 1.5vw + 0.4rem, 1.1rem);
  color: #334155;
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.intro-text-creative-teaching-methods {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.025rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.intro-image-creative-teaching-methods {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-creative-teaching-methods {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .intro-content-creative-teaching-methods {
    flex-direction: column;
  }

  .intro-text-creative-teaching-methods,
  .intro-image-creative-teaching-methods {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

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

.section-tag-creative-teaching-methods {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.methods-title-creative-teaching-methods {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: var(--space-md);
}

.methods-subtitle-creative-teaching-methods {
  font-size: clamp(0.95rem, 1.5vw + 0.4rem, 1.1rem);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

.methods-list-creative-teaching-methods {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.method-item-creative-teaching-methods {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: var(--radius-lg);
  align-items: flex-start;
}

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

.method-content-creative-teaching-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.method-title-creative-teaching-methods {
  font-size: clamp(1.125rem, 2vw + 0.4rem, 1.5rem);
  font-weight: 600;
  color: #0f172a;
}

.method-text-creative-teaching-methods {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .method-item-creative-teaching-methods {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }
}

.implementation-section-creative-teaching-methods {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.implementation-text-creative-teaching-methods {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-creative-teaching-methods {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: var(--space-md);
}

.implementation-description-creative-teaching-methods {
  font-size: clamp(0.95rem, 1.5vw + 0.4rem, 1.1rem);
  color: #334155;
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.implementation-text-creative-teaching-methods {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.025rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.quote-block-creative-teaching-methods {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: #ffffff;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-radius: var(--radius-lg);
}

.quote-text-creative-teaching-methods {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-style: italic;
  color: #0f172a;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.quote-author-creative-teaching-methods {
  font-size: clamp(0.8rem, 1vw + 0.3rem, 0.95rem);
  color: #64748b;
  font-style: normal;
}

.implementation-image-creative-teaching-methods {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-img-creative-teaching-methods {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .implementation-wrapper-creative-teaching-methods {
    flex-direction: column;
  }

  .implementation-text-creative-teaching-methods,
  .implementation-image-creative-teaching-methods {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

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

.benefits-title-creative-teaching-methods {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: var(--space-md);
}

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

.benefit-card-creative-teaching-methods {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f9fafb;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  transition: all var(--transition-base);
}

.benefit-card-creative-teaching-methods:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.benefit-icon-creative-teaching-methods {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.75rem;
}

.benefit-card-title-creative-teaching-methods {
  font-size: clamp(1.1rem, 2vw + 0.3rem, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0;
}

.benefit-card-text-creative-teaching-methods {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #475569;
  line-height: 1.7;
}

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

.challenges-section-creative-teaching-methods {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.challenges-image-creative-teaching-methods {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.challenges-image-img-creative-teaching-methods {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-md);
}

.challenges-text-creative-teaching-methods {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-title-creative-teaching-methods {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: var(--space-md);
}

.challenges-description-creative-teaching-methods {
  font-size: clamp(0.95rem, 1.5vw + 0.4rem, 1.1rem);
  color: #334155;
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.challenges-text-creative-teaching-methods {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.025rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .challenges-wrapper-creative-teaching-methods {
    flex-direction: column;
  }

  .challenges-image-creative-teaching-methods {
    flex: 1 1 100%;
    max-width: none;
    order: 0;
  }

  .challenges-text-creative-teaching-methods {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.conclusion-content-creative-teaching-methods {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-creative-teaching-methods {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.conclusion-text-creative-teaching-methods {
  font-size: clamp(0.95rem, 1.5vw + 0.4rem, 1.1rem);
  color: #334155;
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.conclusion-highlight-creative-teaching-methods {
  font-size: clamp(0.95rem, 1.5vw + 0.4rem, 1.1rem);
  color: #0f172a;
  background: var(--color-accent-light);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.8;
  font-weight: 500;
}

.cta-box-creative-teaching-methods {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-xl);
  text-align: center;
  color: #ffffff;
}

.cta-title-creative-teaching-methods {
  font-size: clamp(1.25rem, 2.5vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-md);
}

.cta-text-creative-teaching-methods {
  font-size: clamp(0.9rem, 1.5vw + 0.4rem, 1.05rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.cta-button-creative-teaching-methods {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: var(--color-primary);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
}

.cta-button-creative-teaching-methods:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.disclaimer-section-creative-teaching-methods {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

.disclaimer-content-creative-teaching-methods {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-creative-teaching-methods {
  font-size: clamp(1.125rem, 2vw + 0.4rem, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: var(--space-md);
}

.disclaimer-text-creative-teaching-methods {
  font-size: clamp(0.8rem, 1vw + 0.3rem, 0.95rem);
  color: #64748b;
  line-height: 1.8;
}

.related-section-creative-teaching-methods {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

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

.related-title-creative-teaching-methods {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: var(--space-md);
}

.related-subtitle-creative-teaching-methods {
  font-size: clamp(0.95rem, 1.5vw + 0.4rem, 1.1rem);
  color: #64748b;
}

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

.related-card-creative-teaching-methods {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #f9fafb;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: all var(--transition-base);
  border: 1px solid #e5e7eb;
}

.related-card-creative-teaching-methods:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.related-card-image-creative-teaching-methods {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e5e7eb;
}

.related-card-img-creative-teaching-methods {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
}

.related-card-creative-teaching-methods:hover .related-card-img-creative-teaching-methods {
  transform: scale(1.05);
}

.related-card-content-creative-teaching-methods {
  padding: clamp(1.25rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex-grow: 1;
}

.related-card-title-creative-teaching-methods {
  font-size: clamp(1.025rem, 1.5vw + 0.3rem, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0;
  line-height: 1.4;
}

.related-card-text-creative-teaching-methods {
  font-size: clamp(0.8rem, 1vw + 0.3rem, 0.95rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

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

@media (max-width: 768px) {
  .intro-section-creative-teaching-methods,
  .methods-section-creative-teaching-methods,
  .implementation-section-creative-teaching-methods,
  .benefits-section-creative-teaching-methods,
  .challenges-section-creative-teaching-methods,
  .conclusion-section-creative-teaching-methods,
  .disclaimer-section-creative-teaching-methods,
  .related-section-creative-teaching-methods {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

/* Post Page 2 Styles */
.main-building-study-habits {
  width: 100%;
  background: var(--color-bg-primary);
}

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

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

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

.hero-text-wrapper-building-study-habits {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-building-study-habits {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.article-meta-building-study-habits {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.meta-badge-building-study-habits i {
  font-size: 0.875rem;
}

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

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

.stat-item-building-study-habits {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-building-study-habits {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  font-family: var(--font-primary);
}

.stat-label-building-study-habits {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.hero-image-wrapper-building-study-habits {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-building-study-habits {
  width: 100%;
  max-height: 450px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

  .hero-text-wrapper-building-study-habits,
  .hero-image-wrapper-building-study-habits {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-building-study-habits {
    gap: 1.5rem;
  }
}

.breadcrumbs-building-study-habits {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #64748b;
}

.breadcrumbs-building-study-habits a {
  color: #059669;
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-building-study-habits a:hover {
  color: #047857;
  text-decoration: underline;
}

.intro-section-building-study-habits {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  position: relative;
  overflow: hidden;
}

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

.intro-text-building-study-habits {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-building-study-habits {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.intro-image-building-study-habits {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-building-study-habits {
  width: 100%;
  max-height: 400px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-building-study-habits {
    flex-direction: column;
  }

  .intro-text-building-study-habits,
  .intro-image-building-study-habits {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.section-header-building-study-habits {
  text-align: center;
  margin-bottom: 3rem;
}

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

.foundation-section-building-study-habits {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.foundation-title-building-study-habits {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.foundation-subtitle-building-study-habits {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.foundation-steps-building-study-habits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.foundation-step-building-study-habits {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border-left: 4px solid #059669;
}

.foundation-step-number-building-study-habits {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
  font-family: var(--font-primary);
}

.foundation-step-content-building-study-habits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.foundation-step-title-building-study-habits {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #1e293b;
}

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

@media (max-width: 768px) {
  .foundation-step-building-study-habits {
    flex-direction: column;
    gap: 1rem;
  }

  .foundation-step-number-building-study-habits {
    min-width: auto;
  }
}

.strategies-section-building-study-habits {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  position: relative;
  overflow: hidden;
}

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

.strategies-text-building-study-habits {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-title-building-study-habits {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.strategies-description-building-study-habits {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.strategies-list-building-study-habits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strategy-item-building-study-habits {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.strategy-item-building-study-habits:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.strategy-name-building-study-habits {
  font-size: 1.125rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.strategy-text-building-study-habits {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.strategies-image-building-study-habits {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-img-building-study-habits {
  width: 100%;
  max-height: 450px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .strategies-wrapper-building-study-habits {
    flex-direction: column;
  }

  .strategies-text-building-study-habits,
  .strategies-image-building-study-habits {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.implementation-section-building-study-habits {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.implementation-wrapper-building-study-habits {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.implementation-image-building-study-habits {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.implementation-img-building-study-habits {
  width: 100%;
  max-height: 450px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.implementation-text-building-study-habits {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-building-study-habits {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.implementation-description-building-study-habits {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.implementation-steps-building-study-habits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-box-building-study-habits {
  padding: 1.5rem;
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border-left: 4px solid #10b981;
}

.step-box-title-building-study-habits {
  font-size: 1.125rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.step-box-text-building-study-habits {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .implementation-wrapper-building-study-habits {
    flex-direction: column;
  }

  .implementation-image-building-study-habits,
  .implementation-text-building-study-habits {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.features-section-building-study-habits {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  position: relative;
  overflow: hidden;
}

.features-title-building-study-habits {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

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

.features-card-building-study-habits {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.features-card-building-study-habits:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-card-icon-building-study-habits {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: var(--radius-lg);
  color: #059669;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.features-card-title-building-study-habits {
  font-size: clamp(1.125rem, 2vw + 0.4rem, 1.375rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #1e293b;
}

.features-card-text-building-study-habits {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

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

.quote-section-building-study-habits {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.featured-quote-building-study-habits {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 3.5rem);
  border-left: 5px solid #059669;
  background: var(--color-bg-primary);
  margin: 0;
  border-radius: var(--radius-lg);
}

.quote-text-building-study-habits {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-family: var(--font-heading);
  font-style: italic;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-cite-building-study-habits {
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  color: #64748b;
  font-style: normal;
  display: block;
}

.conclusion-section-building-study-habits {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  position: relative;
  overflow: hidden;
}

.conclusion-content-building-study-habits {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-building-study-habits {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-building-study-habits {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.conclusion-steps-building-study-habits {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.action-step-building-study-habits {
  flex: 1 1 280px;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border-top: 3px solid #059669;
}

.action-title-building-study-habits {
  font-size: 1.125rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.action-text-building-study-habits {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.cta-box-building-study-habits {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--radius-xl);
  text-align: center;
  color: #ffffff;
  margin-top: 2.5rem;
}

.cta-title-building-study-habits {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-text-building-study-habits {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-cta-building-study-habits {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #059669;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.btn-cta-building-study-habits:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .conclusion-steps-building-study-habits {
    flex-direction: column;
  }

  .action-step-building-study-habits {
    flex: 1 1 100%;
  }
}

.disclaimer-section-building-study-habits {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-building-study-habits {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-building-study-habits {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.disclaimer-text-building-study-habits {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.disclaimer-text-building-study-habits:last-child {
  margin-bottom: 0;
}

.related-section-building-study-habits {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  position: relative;
  overflow: hidden;
}

.related-title-building-study-habits {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-building-study-habits {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  line-height: 1.6;
}

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

.related-card-building-study-habits {
  flex: 1 1 320px;
  max-width: 400px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.related-card-building-study-habits:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.related-card-image-building-study-habits {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-building-study-habits img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.related-card-building-study-habits:hover .related-card-image-building-study-habits img {
  transform: scale(1.05);
}

.related-card-content-building-study-habits {
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.related-card-title-building-study-habits {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

.related-card-text-building-study-habits {
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

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

@media (max-width: 768px) {
  .hero-section-building-study-habits,
  .intro-section-building-study-habits,
  .foundation-section-building-study-habits,
  .strategies-section-building-study-habits,
  .implementation-section-building-study-habits,
  .features-section-building-study-habits,
  .quote-section-building-study-habits,
  .conclusion-section-building-study-habits,
  .disclaimer-section-building-study-habits,
  .related-section-building-study-habits {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }
}

@media (max-width: 480px) {
  .hero-stats-building-study-habits {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item-building-study-habits {
    width: 100%;
  }

  .breadcrumbs-building-study-habits {
    font-size: 0.75rem;
    gap: 0.25rem;
  }
}

/* Post Page 3 Styles */
.main-overcoming-learning-plateaus {
  width: 100%;
}

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

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

.breadcrumbs-overcoming-learning-plateaus {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw + 0.3rem, 0.875rem);
}

.breadcrumb-link-overcoming-learning-plateaus {
  color: #059669;
  text-decoration: none;
  transition: color 150ms ease-out;
}

.breadcrumb-link-overcoming-learning-plateaus:hover {
  color: #047857;
}

.breadcrumb-separator-overcoming-learning-plateaus {
  color: #9ca3af;
}

.breadcrumb-current-overcoming-learning-plateaus {
  color: #4b5563;
}

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

.hero-text-block-overcoming-learning-plateaus {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-overcoming-learning-plateaus {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-overcoming-learning-plateaus {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #111827;
  line-height: 1.15;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.article-meta-overcoming-learning-plateaus {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.meta-badge-overcoming-learning-plateaus {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #d1fae5;
  color: #059669;
  border-radius: 20px;
  font-size: clamp(0.75rem, 0.9vw + 0.3rem, 0.875rem);
  font-weight: 500;
}

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

.hero-image-overcoming-learning-plateaus {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .hero-content-overcoming-learning-plateaus {
    flex-direction: column;
  }
  
  .hero-text-block-overcoming-learning-plateaus,
  .hero-image-block-overcoming-learning-plateaus {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.introduction-section-overcoming-learning-plateaus {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.introduction-text-overcoming-learning-plateaus {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-overcoming-learning-plateaus {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-overcoming-learning-plateaus {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.introduction-description-overcoming-learning-plateaus {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.introduction-text-overcoming-learning-plateaus {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

.introduction-image-img-overcoming-learning-plateaus {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .introduction-wrapper-overcoming-learning-plateaus {
    flex-direction: column;
  }
  
  .introduction-text-overcoming-learning-plateaus,
  .introduction-image-overcoming-learning-plateaus {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.causes-section-overcoming-learning-plateaus {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.causes-header-overcoming-learning-plateaus {
  text-align: center;
  margin-bottom: 3rem;
}

.causes-title-overcoming-learning-plateaus {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.causes-subtitle-overcoming-learning-plateaus {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
}

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

.causes-text-overcoming-learning-plateaus {
  flex: 1 1 50%;
  max-width: 50%;
}

.causes-image-overcoming-learning-plateaus {
  flex: 1 1 50%;
  max-width: 50%;
}

.causes-subheading-overcoming-learning-plateaus {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.causes-description-overcoming-learning-plateaus {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.causes-text-overcoming-learning-plateaus {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

.causes-image-img-overcoming-learning-plateaus {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .causes-wrapper-overcoming-learning-plateaus {
    flex-direction: column;
  }
  
  .causes-text-overcoming-learning-plateaus,
  .causes-image-overcoming-learning-plateaus {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.strategies-section-overcoming-learning-plateaus {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.strategies-header-overcoming-learning-plateaus {
  text-align: center;
  margin-bottom: 3rem;
}

.strategies-title-overcoming-learning-plateaus {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.strategies-subtitle-overcoming-learning-plateaus {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
}

.strategies-steps-overcoming-learning-plateaus {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strategies-step-overcoming-learning-plateaus {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

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

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

.strategies-step-title-overcoming-learning-plateaus {
  font-size: clamp(1.125rem, 2vw + 0.4rem, 1.5rem);
  font-weight: 600;
  color: #111827;
}

.strategies-step-text-overcoming-learning-plateaus {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.125rem);
  line-height: 1.6;
  color: #4b5563;
}

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

.motivation-section-overcoming-learning-plateaus {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.motivation-image-overcoming-learning-plateaus {
  flex: 1 1 50%;
  max-width: 50%;
}

.motivation-text-overcoming-learning-plateaus {
  flex: 1 1 50%;
  max-width: 50%;
}

.motivation-title-overcoming-learning-plateaus {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.motivation-description-overcoming-learning-plateaus {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.motivation-subheading-overcoming-learning-plateaus {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.motivation-list-overcoming-learning-plateaus {
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.motivation-list-item-overcoming-learning-plateaus {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.125rem);
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.motivation-emphasis-overcoming-learning-plateaus {
  color: #111827;
  font-weight: 600;
}

.motivation-image-img-overcoming-learning-plateaus {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .motivation-wrapper-overcoming-learning-plateaus {
    flex-direction: column-reverse;
  }
  
  .motivation-image-overcoming-learning-plateaus,
  .motivation-text-overcoming-learning-plateaus {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practical-section-overcoming-learning-plateaus {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.practical-header-overcoming-learning-plateaus {
  text-align: center;
  margin-bottom: 3rem;
}

.practical-title-overcoming-learning-plateaus {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.practical-subtitle-overcoming-learning-plateaus {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
}

.practical-cards-overcoming-learning-plateaus {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.practical-card-overcoming-learning-plateaus {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.practical-card-overcoming-learning-plateaus:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.practical-card-icon-overcoming-learning-plateaus {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d1fae5;
  color: #059669;
  border-radius: 12px;
  font-size: 1.5rem;
}

.practical-card-title-overcoming-learning-plateaus {
  font-size: clamp(1.125rem, 2vw + 0.4rem, 1.5rem);
  font-weight: 600;
  color: #111827;
}

.practical-card-text-overcoming-learning-plateaus {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.125rem);
  line-height: 1.6;
  color: #4b5563;
}

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

.insight-section-overcoming-learning-plateaus {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.featured-quote-overcoming-learning-plateaus {
  padding: 2rem 2.5rem;
  border-left: 4px solid #059669;
  background: #ffffff;
  margin: 2rem 0;
  border-radius: 8px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.quote-citation-overcoming-learning-plateaus {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b5563;
  font-style: normal;
}

.conclusion-section-overcoming-learning-plateaus {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.conclusion-text-overcoming-learning-plateaus {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-overcoming-learning-plateaus {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-overcoming-learning-plateaus {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.conclusion-description-overcoming-learning-plateaus {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.conclusion-text-overcoming-learning-plateaus {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.conclusion-image-img-overcoming-learning-plateaus {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .conclusion-wrapper-overcoming-learning-plateaus {
    flex-direction: column;
  }
  
  .conclusion-text-overcoming-learning-plateaus,
  .conclusion-image-overcoming-learning-plateaus {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-overcoming-learning-plateaus {
  background: #f3f4f6;
  padding: clamp(2rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-overcoming-learning-plateaus {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.disclaimer-title-overcoming-learning-plateaus {
  font-size: clamp(1.125rem, 2vw + 0.4rem, 1.5rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.disclaimer-text-overcoming-learning-plateaus {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.6;
  color: #4b5563;
}

.related-section-overcoming-learning-plateaus {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-header-overcoming-learning-plateaus {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-overcoming-learning-plateaus {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

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

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

.related-card-overcoming-learning-plateaus {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
  overflow: hidden;
}

.related-card-overcoming-learning-plateaus:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.related-card-image-overcoming-learning-plateaus {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
}

.related-image-overcoming-learning-plateaus {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-overcoming-learning-plateaus {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.related-card-title-overcoming-learning-plateaus {
  font-size: clamp(1rem, 2vw + 0.3rem, 1.25rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.related-card-text-overcoming-learning-plateaus {
  font-size: clamp(0.8125rem, 0.9vw + 0.3rem, 1rem);
  color: #4b5563;
  line-height: 1.5;
}

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

@media (min-width: 768px) {
  .hero-content-overcoming-learning-plateaus {
    gap: 3rem;
  }
  
  .introduction-wrapper-overcoming-learning-plateaus {
    gap: 3rem;
  }
  
  .causes-wrapper-overcoming-learning-plateaus {
    gap: 3rem;
  }
  
  .motivation-wrapper-overcoming-learning-plateaus {
    gap: 3rem;
  }
  
  .conclusion-wrapper-overcoming-learning-plateaus {
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-section-overcoming-learning-plateaus {
    padding: 6rem 0;
  }
  
  .introduction-section-overcoming-learning-plateaus {
    padding: 6rem 0;
  }
  
  .causes-section-overcoming-learning-plateaus {
    padding: 6rem 0;
  }
  
  .strategies-section-overcoming-learning-plateaus {
    padding: 6rem 0;
  }
  
  .motivation-section-overcoming-learning-plateaus {
    padding: 6rem 0;
  }
  
  .practical-section-overcoming-learning-plateaus {
    padding: 6rem 0;
  }
  
  .insight-section-overcoming-learning-plateaus {
    padding: 6rem 0;
  }
  
  .conclusion-section-overcoming-learning-plateaus {
    padding: 6rem 0;
  }
  
  .related-section-overcoming-learning-plateaus {
    padding: 6rem 0;
  }
}

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

/* Post Page 4 Styles */
.main-optimizing-learning-environment {
  width: 100%;
  background: var(--color-bg-primary);
}

.hero-section-optimizing-learning-environment {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.breadcrumbs-optimizing-learning-environment {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw + 0.3rem, 0.875rem);
}

.breadcrumbs-optimizing-learning-environment a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-optimizing-learning-environment a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-optimizing-learning-environment span {
  color: #cbd5e1;
}

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

.hero-text-block-optimizing-learning-environment {
  flex: 1 1 400px;
  max-width: 50%;
}

.hero-image-block-optimizing-learning-environment {
  flex: 1 1 400px;
  max-width: 50%;
}

.hero-title-optimizing-learning-environment {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

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

.hero-image-optimizing-learning-environment {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.hero-meta-optimizing-learning-environment {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-optimizing-learning-environment {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-optimizing-learning-environment i {
  font-size: 14px;
}

.hero-stats-optimizing-learning-environment {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.stat-item-optimizing-learning-environment {
  flex: 1 1 150px;
  text-align: center;
}

.stat-number-optimizing-learning-environment {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-optimizing-learning-environment {
  display: block;
  font-size: clamp(0.75rem, 1vw + 0.3rem, 0.875rem);
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

  .hero-text-block-optimizing-learning-environment,
  .hero-image-block-optimizing-learning-environment {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-stats-optimizing-learning-environment {
    gap: 1.5rem;
  }
}

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

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

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

.intro-text-optimizing-learning-environment {
  flex: 1 1 400px;
  max-width: 50%;
}

.intro-image-optimizing-learning-environment {
  flex: 1 1 400px;
  max-width: 50%;
}

.intro-heading-optimizing-learning-environment {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-paragraph-optimizing-learning-environment {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-img-optimizing-learning-environment {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

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

  .intro-text-optimizing-learning-environment,
  .intro-image-optimizing-learning-environment {
    flex: 1 1 100%;
    max-width: none;
  }
}

.lighting-section-optimizing-learning-environment {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.lighting-section-optimizing-learning-environment .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.lighting-text-optimizing-learning-environment {
  flex: 1 1 400px;
  max-width: 50%;
}

.lighting-image-optimizing-learning-environment {
  flex: 1 1 400px;
  max-width: 50%;
}

.lighting-heading-optimizing-learning-environment {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.lighting-paragraph-optimizing-learning-environment {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.lighting-highlight-optimizing-learning-environment {
  background: #f0fdf4;
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
}

.highlight-text-optimizing-learning-environment {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #047857;
  line-height: 1.6;
  margin: 0;
}

.lighting-image-img-optimizing-learning-environment {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

@media (max-width: 768px) {
  .lighting-content-optimizing-learning-environment {
    flex-direction: column;
  }

  .lighting-text-optimizing-learning-environment,
  .lighting-image-optimizing-learning-environment {
    flex: 1 1 100%;
    max-width: none;
  }
}

.ergonomics-section-optimizing-learning-environment {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.ergonomics-section-optimizing-learning-environment .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.ergonomics-image-optimizing-learning-environment {
  flex: 1 1 400px;
  max-width: 50%;
}

.ergonomics-text-optimizing-learning-environment {
  flex: 1 1 400px;
  max-width: 50%;
}

.ergonomics-heading-optimizing-learning-environment {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.ergonomics-paragraph-optimizing-learning-environment {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.ergonomics-list-optimizing-learning-environment {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.list-item-optimizing-learning-environment {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.list-item-optimizing-learning-environment::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.25rem;
}

.ergonomics-image-img-optimizing-learning-environment {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

@media (max-width: 768px) {
  .ergonomics-content-optimizing-learning-environment {
    flex-direction: column-reverse;
  }

  .ergonomics-image-optimizing-learning-environment,
  .ergonomics-text-optimizing-learning-environment {
    flex: 1 1 100%;
    max-width: none;
  }
}

.acoustic-section-optimizing-learning-environment {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.acoustic-section-optimizing-learning-environment .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.acoustic-text-optimizing-learning-environment {
  flex: 1 1 400px;
  max-width: 50%;
}

.acoustic-image-optimizing-learning-environment {
  flex: 1 1 400px;
  max-width: 50%;
}

.acoustic-heading-optimizing-learning-environment {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.acoustic-paragraph-optimizing-learning-environment {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.acoustic-feature-cards-optimizing-learning-environment {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.acoustic-card-optimizing-learning-environment {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.acoustic-card-icon-optimizing-learning-environment {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.acoustic-card-title-optimizing-learning-environment {
  font-size: clamp(1rem, 2vw + 0.4rem, 1.125rem);
  color: #111827;
  font-weight: 600;
  margin: 0;
}

.acoustic-card-text-optimizing-learning-environment {
  font-size: clamp(0.8125rem, 0.9vw + 0.4rem, 0.9375rem);
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.acoustic-image-img-optimizing-learning-environment {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

@media (max-width: 768px) {
  .acoustic-content-optimizing-learning-environment {
    flex-direction: column;
  }

  .acoustic-text-optimizing-learning-environment,
  .acoustic-image-optimizing-learning-environment {
    flex: 1 1 100%;
    max-width: none;
  }

  .acoustic-feature-cards-optimizing-learning-environment {
    flex-direction: column;
  }

  .acoustic-card-optimizing-learning-environment {
    flex: 1 1 100%;
  }
}

.organization-section-optimizing-learning-environment {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.organization-section-optimizing-learning-environment .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.organization-image-optimizing-learning-environment {
  flex: 1 1 400px;
  max-width: 50%;
}

.organization-text-optimizing-learning-environment {
  flex: 1 1 400px;
  max-width: 50%;
}

.organization-heading-optimizing-learning-environment {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.organization-paragraph-optimizing-learning-environment {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.organization-steps-optimizing-learning-environment {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.organization-step-optimizing-learning-environment {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
}

.organization-step-number-optimizing-learning-environment {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  min-width: 60px;
  flex-shrink: 0;
}

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

.organization-step-title-optimizing-learning-environment {
  font-size: clamp(1rem, 2vw + 0.4rem, 1.125rem);
  color: #111827;
  font-weight: 600;
  margin: 0;
}

.organization-step-text-optimizing-learning-environment {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.organization-image-img-optimizing-learning-environment {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

@media (max-width: 768px) {
  .organization-content-optimizing-learning-environment {
    flex-direction: column-reverse;
  }

  .organization-image-optimizing-learning-environment,
  .organization-text-optimizing-learning-environment {
    flex: 1 1 100%;
    max-width: none;
  }
}

.temperature-section-optimizing-learning-environment {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.temperature-section-optimizing-learning-environment .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.temperature-text-optimizing-learning-environment {
  flex: 1 1 400px;
  max-width: 50%;
}

.temperature-image-optimizing-learning-environment {
  flex: 1 1 400px;
  max-width: 50%;
}

.temperature-heading-optimizing-learning-environment {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.temperature-paragraph-optimizing-learning-environment {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.temperature-quote-optimizing-learning-environment {
  padding: 2rem;
  border-left: 4px solid var(--color-primary);
  background: #f0fdf4;
  margin: 2rem 0;
  border-radius: var(--radius-md);
}

.quote-text-optimizing-learning-environment {
  font-size: clamp(1rem, 2vw + 0.4rem, 1.25rem);
  color: #047857;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.temperature-image-img-optimizing-learning-environment {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

@media (max-width: 768px) {
  .temperature-content-optimizing-learning-environment {
    flex-direction: column;
  }

  .temperature-text-optimizing-learning-environment,
  .temperature-image-optimizing-learning-environment {
    flex: 1 1 100%;
    max-width: none;
  }
}

.conclusion-section-optimizing-learning-environment {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-content-optimizing-learning-environment {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-heading-optimizing-learning-environment {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-paragraph-optimizing-learning-environment {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-cta-box-optimizing-learning-environment {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-xl);
  text-align: center;
  margin-top: 2rem;
}

.cta-heading-optimizing-learning-environment {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-text-optimizing-learning-environment {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-primary-cta-optimizing-learning-environment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  background: #ffffff;
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  font-family: var(--font-primary);
}

.btn-primary-cta-optimizing-learning-environment:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.disclaimer-section-optimizing-learning-environment {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

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

.disclaimer-content-optimizing-learning-environment {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-heading-optimizing-learning-environment {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #111827;
  margin-bottom: 1rem;
  font-weight: 600;
}

.disclaimer-text-optimizing-learning-environment {
  font-size: clamp(0.8125rem, 0.9vw + 0.4rem, 0.9375rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.related-section-optimizing-learning-environment {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-header-optimizing-learning-environment {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-optimizing-learning-environment {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-optimizing-learning-environment {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.related-cards-optimizing-learning-environment {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-optimizing-learning-environment {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all var(--transition-base);
}

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

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

.related-card-img-optimizing-learning-environment {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.related-card-optimizing-learning-environment:hover .related-card-img-optimizing-learning-environment {
  transform: scale(1.05);
}

.related-card-content-optimizing-learning-environment {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-optimizing-learning-environment {
  font-size: clamp(1.125rem, 2vw + 0.4rem, 1.25rem);
  color: #111827;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.related-card-text-optimizing-learning-environment {
  font-size: clamp(0.8125rem, 0.9vw + 0.4rem, 0.9375rem);
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.related-card-link-optimizing-learning-environment {
  display: inline-flex;
  align-items: center;
  font-size: clamp(0.8125rem, 0.9vw + 0.4rem, 0.9375rem);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-base);
  align-self: flex-start;
}

.related-card-link-optimizing-learning-environment:hover {
  gap: 0.5rem;
}

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

/* Post Page 5 Styles */
/* Main wrapper - component isolation */
.main-peer-learning-study-groups {
  width: 100%;
  background: var(--color-bg-primary);
}

/* ═══════════════════════════════════════════════════════════════ */
/* HERO SECTION - MAGAZINE STYLE FEATURE */
/* ═══════════════════════════════════════════════════════════════ */

.hero-section-peer-learning-study-groups {
  background: linear-gradient(135deg, #f0f9ff 0%, #f0fdf4 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

@media (max-width: 768px) {
  .hero-content-peer-learning-study-groups {
    flex-direction: column;
  }
}

.hero-text-block-peer-learning-study-groups {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-image-peer-learning-study-groups {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .hero-text-block-peer-learning-study-groups,
  .hero-image-peer-learning-study-groups {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.hero-title-peer-learning-study-groups {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
}

.hero-subtitle-peer-learning-study-groups {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #475569;
  line-height: 1.6;
}

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

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

.meta-badge-peer-learning-study-groups i {
  font-size: 0.875rem;
}

.hero-stats-peer-learning-study-groups {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(5, 150, 105, 0.2);
}

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

.stat-number-peer-learning-study-groups {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.stat-label-peer-learning-study-groups {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.hero-img-peer-learning-study-groups {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  display: block;
}

/* ═══════════════════════════════════════════════════════════════ */
/* BREADCRUMBS */
/* ═══════════════════════════════════════════════════════════════ */

.breadcrumbs-peer-learning-study-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-peer-learning-study-groups a {
  color: #059669;
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-peer-learning-study-groups a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-peer-learning-study-groups span {
  color: #cbd5e1;
}

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

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

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

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

.intro-text-peer-learning-study-groups {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-image-peer-learning-study-groups {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .intro-text-peer-learning-study-groups,
  .intro-image-peer-learning-study-groups {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-title-peer-learning-study-groups {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.intro-description-peer-learning-study-groups {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.intro-img-peer-learning-study-groups {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  display: block;
}

/* ═══════════════════════════════════════════════════════════════ */
/* BENEFITS SECTION - CARD GRID */
/* ═══════════════════════════════════════════════════════════════ */

.benefits-section-peer-learning-study-groups {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.benefits-title-peer-learning-study-groups {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.benefits-subtitle-peer-learning-study-groups {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.benefits-cards-peer-learning-study-groups {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.benefits-card-peer-learning-study-groups {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.benefits-card-peer-learning-study-groups:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  .benefits-card-peer-learning-study-groups {
    flex: 1 1 100%;
    max-width: none;
  }
}

.card-icon-peer-learning-study-groups {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d1fae5;
  color: #059669;
  border-radius: 12px;
  font-size: 1.5rem;
}

.card-title-peer-learning-study-groups {
  font-size: clamp(1.125rem, 2vw + 0.4rem, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.card-text-peer-learning-study-groups {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

/* ═══════════════════════════════════════════════════════════════ */
/* FEATURED QUOTE SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.featured-quote-section-peer-learning-study-groups {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-peer-learning-study-groups {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 3rem);
  border-left: 4px solid #059669;
  background: rgba(5, 150, 105, 0.08);
  margin: 0;
  border-radius: 8px;
}

.quote-text-peer-learning-study-groups {
  font-size: clamp(1.25rem, 2.5vw + 0.5rem, 1.5rem);
  font-style: italic;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.quote-cite-peer-learning-study-groups {
  font-size: 0.9375rem;
  color: #cbd5e1;
  font-style: normal;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════ */
/* STRATEGIES SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.strategies-section-peer-learning-study-groups {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-content-peer-learning-study-groups {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

@media (max-width: 768px) {
  .strategies-content-peer-learning-study-groups {
    flex-direction: column;
  }
}

.strategies-text-peer-learning-study-groups {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strategies-image-peer-learning-study-groups {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .strategies-text-peer-learning-study-groups,
  .strategies-image-peer-learning-study-groups {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.strategies-title-peer-learning-study-groups {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.strategies-description-peer-learning-study-groups {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.strategies-steps-peer-learning-study-groups {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strategy-step-peer-learning-study-groups {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.step-number-peer-learning-study-groups {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

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

.step-title-peer-learning-study-groups {
  font-size: clamp(1.125rem, 2vw + 0.4rem, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.step-text-peer-learning-study-groups {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.strategies-img-peer-learning-study-groups {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  display: block;
}

/* ═══════════════════════════════════════════════════════════════ */
/* PRACTICAL TIPS SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.practical-tips-section-peer-learning-study-groups {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-wrapper-peer-learning-study-groups {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
}

.tips-column-peer-learning-study-groups {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .tips-column-peer-learning-study-groups {
    flex: 1 1 100%;
  }
}

.tips-column-title-peer-learning-study-groups {
  font-size: clamp(1.25rem, 2vw + 0.4rem, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.tips-list-peer-learning-study-groups {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tip-item-peer-learning-study-groups {
  font-size: clamp(0.9375rem, 1vw + 0.4rem, 1rem);
  color: #475569;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.tip-item-peer-learning-study-groups::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: bold;
  font-size: 1.25rem;
}

.tip-item-peer-learning-study-groups strong {
  color: #1e293b;
  font-weight: 600;
}

.tips-title-peer-learning-study-groups {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

/* ═══════════════════════════════════════════════════════════════ */
/* CHALLENGES SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.challenges-section-peer-learning-study-groups {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.challenges-content-peer-learning-study-groups {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

@media (max-width: 768px) {
  .challenges-content-peer-learning-study-groups {
    flex-direction: column;
  }
}

.challenges-image-peer-learning-study-groups {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-text-peer-learning-study-groups {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .challenges-image-peer-learning-study-groups,
  .challenges-text-peer-learning-study-groups {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.challenges-title-peer-learning-study-groups {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.challenges-description-peer-learning-study-groups {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.challenge-list-peer-learning-study-groups {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.challenge-item-peer-learning-study-groups {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.challenge-item-title-peer-learning-study-groups {
  font-size: clamp(1.125rem, 2vw + 0.4rem, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.challenge-item-text-peer-learning-study-groups {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.challenges-img-peer-learning-study-groups {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  display: block;
}

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

.conclusion-section-peer-learning-study-groups {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-peer-learning-study-groups {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.conclusion-title-peer-learning-study-groups {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.conclusion-text-peer-learning-study-groups {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.conclusion-cta-peer-learning-study-groups {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.btn-primary-peer-learning-study-groups {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #059669;
  color: #ffffff;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
  font-size: clamp(0.9375rem, 1vw + 0.4rem, 1.125rem);
}

.btn-primary-peer-learning-study-groups:hover {
  background: #047857;
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
  transform: translateY(-2px);
}

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

.related-section-peer-learning-study-groups {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-title-peer-learning-study-groups {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-peer-learning-study-groups {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto clamp(2rem, 5vw, 4rem);
}

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

.related-card-peer-learning-study-groups {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all var(--transition-base);
  border: 1px solid #e2e8f0;
}

.related-card-peer-learning-study-groups:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

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

.related-card-image-peer-learning-study-groups {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-img-peer-learning-study-groups {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.related-card-peer-learning-study-groups:hover .related-img-peer-learning-study-groups {
  transform: scale(1.05);
}

.related-card-content-peer-learning-study-groups {
  padding: clamp(1rem, 3vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.related-card-title-peer-learning-study-groups {
  font-size: clamp(1.125rem, 2vw + 0.4rem, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.related-card-text-peer-learning-study-groups {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 0.9375rem);
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-peer-learning-study-groups {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #059669;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  transition: all var(--transition-base);
  margin-top: 0.5rem;
}

.related-card-link-peer-learning-study-groups:hover {
  color: #047857;
  gap: 0.75rem;
}

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

.disclaimer-section-peer-learning-study-groups {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-peer-learning-study-groups {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.disclaimer-title-peer-learning-study-groups {
  font-size: clamp(1.125rem, 2vw + 0.4rem, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.disclaimer-text-peer-learning-study-groups {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.disclaimer-text-peer-learning-study-groups:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════ */
/* RESPONSIVE DESIGN */
/* ═══════════════════════════════════════════════════════════════ */

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

  .intro-section-peer-learning-study-groups {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .benefits-section-peer-learning-study-groups {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .strategies-section-peer-learning-study-groups {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .challenges-section-peer-learning-study-groups {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .practical-tips-section-peer-learning-study-groups {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .featured-quote-section-peer-learning-study-groups {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .conclusion-section-peer-learning-study-groups {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .related-section-peer-learning-study-groups {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-peer-learning-study-groups {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

  .intro-section-peer-learning-study-groups {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

  .benefits-section-peer-learning-study-groups {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

  .strategies-section-peer-learning-study-groups {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

  .challenges-section-peer-learning-study-groups {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

  .practical-tips-section-peer-learning-study-groups {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

  .featured-quote-section-peer-learning-study-groups {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

  .conclusion-section-peer-learning-study-groups {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

  .related-section-peer-learning-study-groups {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }
}

/* ═══════════════════════════════════════════════════════════════ */
/* ACCESSIBILITY & PRINT */
/* ═══════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  .benefits-card-peer-learning-study-groups,
  .related-card-peer-learning-study-groups,
  .btn-primary-peer-learning-study-groups,
  .related-card-link-peer-learning-study-groups {
    transition: none;
  }
}

@media print {
  .hero-section-peer-learning-study-groups,
  .intro-section-peer-learning-study-groups,
  .benefits-section-peer-learning-study-groups {
    background: #ffffff !important;
  }

  .conclusion-cta-peer-learning-study-groups {
    display: none;
  }
}

/* About Page Styles */
:root {
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;
  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  --color-text-light: #6b7280;
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-secondary: #10b981;
  --color-accent-light: #d1fae5;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Merriweather', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --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;
  --transition-base: 250ms ease-out;
}

.daily-education-about {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

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

.hero-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  text-align: center;
}

.hero-title-about {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.15;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 700px;
  margin: 0;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  margin-top: clamp(1rem, 3vw, 2rem);
  display: block;
  box-shadow: var(--shadow-lg);
}

.hero-stats-about {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.stat-item-about {
  text-align: center;
  flex: 0 1 auto;
}

.stat-number-about {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-about {
  display: block;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.journey-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.journey-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.journey-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.journey-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.journey-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin: 0 0 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.journey-subtitle-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

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

.timeline-step-about {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
}

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

.timeline-step-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.timeline-step-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
}

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

.approach-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.approach-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.approach-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

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

.approach-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin: 0 0 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.approach-subtitle-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.method-cards-about {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.method-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.method-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.method-card-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.3;
}

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

.impact-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.impact-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.impact-intro-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.impact-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin: 0 0 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.impact-description-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

.impact-quote-about {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-secondary);
  margin: clamp(2rem, 4vw, 3rem) 0;
  border-radius: var(--radius-md);
}

.quote-text-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1.6;
  margin: 0 0 1rem;
}

.quote-author-about {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  font-style: normal;
  font-weight: 600;
  display: block;
  margin: 0;
}

.impact-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
  box-shadow: var(--shadow-lg);
}

.vision-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.vision-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.vision-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin: 0 0 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.vision-statement-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
  max-width: 750px;
  margin: 0 auto;
}

.vision-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  box-shadow: var(--shadow-lg);
}

.disclaimer-section-about {
  background: #fafbfc;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

.disclaimer-content-about {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-header-about {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.disclaimer-icon-about {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.25rem;
}

.disclaimer-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.4;
}

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

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

  .method-card-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .disclaimer-header-about {
    flex-direction: column;
    gap: 0.75rem;
  }

  .disclaimer-icon-about {
    width: 40px;
    height: 40px;
  }
}

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

  .journey-section-about {
    padding: 5rem 0;
  }

  .approach-section-about {
    padding: 5rem 0;
  }

  .impact-section-about {
    padding: 5rem 0;
  }

  .vision-section-about {
    padding: 5rem 0;
  }

  .disclaimer-section-about {
    padding: 3rem 0;
  }
}

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

  .journey-section-about {
    padding: 6rem 0;
  }

  .approach-section-about {
    padding: 6rem 0;
  }

  .impact-section-about {
    padding: 6rem 0;
  }

  .vision-section-about {
    padding: 6rem 0;
  }

  .disclaimer-section-about {
    padding: 4rem 0;
  }
}

/* Privacy Page Styles */
.legal-hub {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
}

.legal-hub section {
  width: 100%;
  overflow: hidden;
}

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

/* Hero Section */
.legal-hub-hero {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.legal-hub-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-hub-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-hero-meta {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
  font-style: italic;
}

/* Content Section */
.legal-hub-content {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.legal-hub-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.legal-hub-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-hub-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.legal-hub-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-left: 1.5rem;
}

.legal-hub-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-highlight {
  background: var(--color-accent-light);
  padding: clamp(1rem, 3vw, 1.5rem);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin: 1rem 0;
}

.legal-hub-highlight p {
  color: var(--color-text-primary);
  margin: 0;
}

/* Contact Section */
.legal-hub-contact {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.legal-hub-contact-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.legal-hub-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.legal-hub-contact-intro {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.legal-hub-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-hub-contact-item {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.legal-hub-contact-item strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

/* Responsive */
@media (min-width: 768px) {
  .legal-hub-hero {
    padding: 5rem 0;
  }

  .legal-hub-content {
    padding: 5rem 0;
  }

  .legal-hub-contact {
    padding: 5rem 0;
  }

  .legal-hub-section {
    gap: 1.25rem;
  }

  .legal-hub-contact-details {
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .legal-hub-hero {
    padding: 6rem 0;
  }

  .legal-hub-content {
    padding: 6rem 0;
  }

  .legal-hub-contact {
    padding: 6rem 0;
  }

  .legal-hub-section {
    gap: 1.5rem;
  }

  .legal-hub-contact-details {
    gap: 1.5rem;
  }
}

/* Thank You Page Styles */
.thank-you-page {
  width: 100%;
}

.thank-section {
  background: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thank-icon {
  font-size: clamp(4rem, 10vw, 6rem);
  color: var(--color-primary);
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  animation: icon-bounce 0.6s ease-out;
}

@keyframes icon-bounce {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.thank-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-lead {
  font-family: var(--font-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.4;
}

.thank-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(2rem, 5vw, 3rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-benefits {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  width: 100%;
}

.benefit-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.benefit-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.benefit-item i {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: clamp(1.5rem, 3vw, 1.75rem);
}

.benefit-item span {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  text-align: left;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-base);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.btn-primary:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .thank-section {
    padding: 4rem 0;
  }

  .benefit-item {
    padding: 1.5rem;
  }

  .benefit-item i {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: 6rem 0;
    min-height: 100vh;
  }

  .thank-benefits {
    gap: 1.5rem;
    margin-bottom: 3.5rem;
  }

  .benefit-item {
    padding: 1.5rem;
  }
}

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

/* 404 Page Styles */
.main.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.error-visual {
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  position: relative;
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
}

.error-code {
  font-size: clamp(4rem, 12vw + 1rem, 8rem);
  font-weight: 900;
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin: 0;
  font-family: var(--font-heading);
  letter-spacing: -2px;
}

.error-icon {
  position: absolute;
  bottom: -10px;
  right: -20px;
  font-size: clamp(2rem, 5vw, 4rem);
  color: #059669;
  opacity: 0.7;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.error-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  margin: clamp(1rem, 3vw, 2rem) 0 clamp(0.75rem, 2vw, 1.5rem) 0;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.error-message {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.6;
  font-family: var(--font-primary);
}

.error-suggestions {
  background: var(--color-bg-card);
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.suggestion-intro {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  font-family: var(--font-primary);
}

.suggestion-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.suggestion-list li {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.5;
  font-family: var(--font-primary);
}

.suggestion-list i {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #059669;
  flex-shrink: 0;
  min-width: clamp(1.25rem, 2vw, 1.5rem);
}

.btn {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  font-family: var(--font-primary);
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  margin: clamp(1rem, 3vw, 2rem) 0;
}

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

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

.btn-primary:active {
  transform: translateY(0);
}

.error-footer {
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.9375rem);
  color: var(--color-text-muted);
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  font-family: var(--font-primary);
  line-height: 1.5;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .error-section {
    padding: 4rem 0;
    min-height: 100vh;
  }

  .error-visual {
    margin-bottom: 3rem;
  }

  .error-code-wrapper {
    position: relative;
  }

  .error-icon {
    bottom: -15px;
    right: -30px;
  }

  .error-suggestions {
    padding: 2rem;
  }

  .suggestion-list {
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: 6rem 0;
    min-height: 100vh;
  }

  .error-code {
    letter-spacing: -3px;
  }

  .error-suggestions {
    padding: 2.5rem;
  }

  .btn {
    font-size: 1rem;
    padding: 1rem 2.5rem;
  }

  .btn:hover {
    box-shadow: var(--shadow-lg);
  }
}

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

  .error-content {
    max-width: 700px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .error-icon {
    animation: none;
  }

  .btn {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}