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

:root {
  /* COLOR STRATEGY: DARK - PALETTE D7 (Deep Blue + Electric) */
  --color-bg-primary: #0c1929;
  --color-bg-secondary: #162d50;
  --color-bg-tertiary: #1e3a5f;
  --color-bg-card: rgba(59, 130, 246, 0.08);
  
  /* Text colors */
  --color-text-primary: #ffffff;
  --color-text-secondary: #bfdbfe;
  --color-text-muted: #7b9fd9;
  
  /* Accent colors */
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-secondary: #60a5fa;
  --color-accent-light: #93c5fd;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 10px 15px rgba(59, 130, 246, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

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

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

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

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

/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-primary);
  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;
  white-space: nowrap;
  transition: all 0.3s ease;
  text-align: center;
}

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

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

.btn-secondary {
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn-secondary:hover {
  background: rgba(59, 130, 246, 0.25);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: rgba(59, 130, 246, 0.1);
}

/* Hero section */
.hero-section {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  z-index: 1;
  padding: clamp(1rem, 4vw, 2rem);
}

.hero-content h1 {
  color: #ffffff;
  max-width: 800px;
}

.hero-content p {
  color: var(--color-text-secondary);
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Features section */
.features-section {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

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

.features-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.features-header h2 {
  color: #ffffff;
  margin-bottom: var(--space-md);
}

.features-header p {
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: var(--space-2xl);
}

.feature-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  opacity: 1;
}

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

.feature-card h3 {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
}

.feature-card p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

/* About section */
.about-section {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-text h2 {
  color: #ffffff;
  margin-bottom: var(--space-md);
}

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

.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.about-feature {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.about-feature-title {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: var(--color-secondary);
  font-weight: 600;
}

.about-feature-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.about-feature-desc {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-bg-secondary);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    aspect-ratio: 16 / 9;
  }
}

/* Programs section */
.programs-section {
  background: var(--color-bg-tertiary);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.programs-content {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
}

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

.programs-header h2 {
  color: #ffffff;
  margin-bottom: var(--space-md);
}

.programs-header p {
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: var(--space-2xl);
}

.program-card {
  background: var(--color-bg-primary);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.program-header {
  background: rgba(59, 130, 246, 0.12);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.program-level {
  display: inline-block;
  background: var(--color-primary);
  color: #000000;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.program-title {
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: var(--space-sm);
}

.program-duration {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.program-body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.program-description {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.program-topics {
  flex: 1;
}

.program-topics-label {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.program-topics ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.program-topics li {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.program-topics li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.program-footer {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(59, 130, 246, 0.15);
}

.program-footer .btn {
  width: 100%;
}

/* Statistics section */
.stats-section {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

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

.stat-item {
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-label {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

/* Testimonials section */
.testimonials-section {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.testimonials-content {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
}

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

.testimonials-header h2 {
  color: #ffffff;
  margin-bottom: var(--space-md);
}

.testimonials-header p {
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: var(--space-2xl);
}

.testimonial-card {
  background: var(--color-bg-secondary);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: #fbbf24;
}

.testimonial-stars i {
  font-size: 0.875rem;
}

.testimonial-text {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.testimonial-name {
  color: #ffffff;
  font-weight: 600;
}

.testimonial-role {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1rem, 4vw, 2rem);
}

.cta-content h2 {
  color: #ffffff;
  margin-bottom: var(--space-md);
}

.cta-content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

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

@media (min-width: 768px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* FAQ section */
.faq-section {
  background: var(--color-bg-tertiary);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.faq-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.faq-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.faq-header h2 {
  color: #ffffff;
  margin-bottom: var(--space-md);
}

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

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

.faq-item {
  background: var(--color-bg-secondary);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--color-primary);
}

.faq-question {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  user-select: none;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(59, 130, 246, 0.05);
}

.faq-question-text {
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  text-align: left;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-size: 1.25rem;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(59, 130, 246, 0.05);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-text {
  padding: 0 clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* Contact form section */
.contact-section {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

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

.contact-info h2 {
  color: #ffffff;
  margin-bottom: var(--space-lg);
}

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

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

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

.contact-item-label {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item-value {
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.contact-form {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.contact-form h3 {
  color: #ffffff;
  margin-bottom: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.form-group label {
  color: var(--color-text-secondary);
  font-weight: 500;
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
  background: var(--color-bg-secondary);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.form-submit-btn {
  width: 100%;
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  padding: clamp(0.75rem, 2vw, 1.25rem);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

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

@media (max-width: 767px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-secondary);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  padding: var(--space-lg);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  box-shadow: var(--shadow-xl);
}

.cookie-banner p {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  flex: 1;
}

.cookie-banner-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.cookie-banner .btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    justify-content: center;
  }
}

/* Responsive utilities */
@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}

@media (min-width: 769px) {
  .show-mobile {
    display: none;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

.slide-up {
  animation: slideUp 0.6s ease-out;
}

/* Utility classes */
.text-center {
  text-align: center;
}

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

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.header-career-nexus {
    position: static;
    background: var(--color-bg-primary);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    padding: clamp(0.75rem, 2vw, 1.25rem) 0;
    width: 100%;
  }

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

  .header-career-nexus-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
  }

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

  .header-career-nexus-logo-text {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: -0.5px;
  }

  .header-career-nexus-desktop-nav {
    display: none;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    flex: 1;
    justify-content: flex-end;
  }

  .header-career-nexus-nav-link {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 500;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }

  .header-career-nexus-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header-career-nexus-nav-link:hover {
    color: var(--color-primary);
  }

  .header-career-nexus-nav-link:hover::after {
    width: 100%;
  }

  .header-career-nexus-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
    background: var(--color-primary);
    color: #0c1929;
    border: none;
    border-radius: var(--radius-md);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
  }

  .header-career-nexus-cta-button:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  }

  .header-career-nexus-cta-button:active {
    transform: translateY(0);
    transition-duration: 150ms;
  }

  .header-career-nexus-cta-button:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 3px;
  }

  .header-career-nexus-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-right: -0.5rem;
    flex-shrink: 0;
  }

  .header-career-nexus-hamburger {
    width: 24px;
    height: 2.5px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

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

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

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

  .header-career-nexus-mobile-toggle:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 3px;
  }

  .header-career-nexus-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-bg-secondary);
    border-left: 1px solid rgba(59, 130, 246, 0.15);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    overflow-y: auto;
  }

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

  .header-career-nexus-mobile-header {
    padding: clamp(1rem, 3vw, 1.5rem);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    justify-content: flex-end;
  }

  .header-career-nexus-mobile-close {
    background: transparent;
    border: none;
    color: var(--color-text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header-career-nexus-mobile-close:hover {
    color: var(--color-primary);
  }

  .header-career-nexus-mobile-close:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
  }

  .header-career-nexus-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    padding: clamp(0.5rem, 2vw, 1rem) 0;
  }

  .header-career-nexus-mobile-link {
    padding: clamp(1rem, 3vw, 1.25rem) clamp(1.25rem, 4vw, 1.75rem);
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: clamp(0.9375rem, 2vw, 1.0625rem);
    font-weight: 500;
    border-bottom: 1px solid rgba(59, 130, 246, 0.08);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header-career-nexus-mobile-link:hover {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-primary);
    padding-left: clamp(1.5rem, 5vw, 2.25rem);
  }

  .header-career-nexus-mobile-link:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: -2px;
  }

  .header-career-nexus-mobile-cta {
    margin: clamp(1rem, 3vw, 1.5rem);
    padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2rem);
    background: var(--color-primary);
    color: #0c1929;
    border: none;
    border-radius: var(--radius-md);
    font-size: clamp(0.9375rem, 2vw, 1.0625rem);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-career-nexus-mobile-cta:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  }

  .header-career-nexus-mobile-cta:active {
    transform: translateY(0);
    transition-duration: 150ms;
  }

  .header-career-nexus-mobile-cta:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 3px;
  }

  @media (min-width: 768px) {
    .header-career-nexus-desktop-nav {
      display: flex;
    }

    .header-career-nexus-mobile-toggle {
      display: none;
    }

    .header-career-nexus-mobile-menu {
      display: none;
    }
  }

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

    .career-hub {
  width: 100%;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  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: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background: #3b82f6;
  color: #000000;
}

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

.btn-secondary {
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
  border-color: #60a5fa;
}

.btn-secondary:hover {
  background: rgba(96, 165, 250, 0.25);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.btn-outline {
  background: transparent;
  color: #3b82f6;
  border-color: #3b82f6;
}

.btn-outline:hover {
  background: rgba(59, 130, 246, 0.1);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
}

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

.hero-gradient-field {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

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

.hero-light-orb {
  position: absolute;
  top: 50%;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-corner-shape {
  position: absolute;
  top: 10%;
  left: -30px;
  width: 150px;
  height: 150px;
  background: rgba(96, 165, 250, 0.05);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  z-index: 10;
  padding: clamp(1rem, 4vw, 2rem);
}

.hero-title {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  max-width: 800px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #bfdbfe;
  max-width: 700px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
  margin-top: var(--space-lg);
}

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

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

.hero-stat-label {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #7b9fd9;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* About Section */
.about-section {
  background: #0a0f1e;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.about-shape-1 {
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(96, 165, 250, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.about-shape-2 {
  position: absolute;
  top: 20%;
  left: -50px;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.about-glow-element {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(96, 165, 250, 0.05);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.about-accent-form {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 180px;
  height: 150px;
  background: rgba(59, 130, 246, 0.07);
  border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.about-line-decoration {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.about-corner-glow {
  position: absolute;
  top: 10%;
  right: -30px;
  width: 150px;
  height: 150px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 6vw, 4rem);
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
  }
}

.about-text {
  flex: 1 1 400px;
}

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

.about-description {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-feature-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
}

.about-feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #60a5fa;
}

.about-feature-text {
  font-size: 0.9375rem;
  color: #7b9fd9;
  line-height: 1.6;
}

.about-image {
  flex: 1 1 400px;
  min-width: 300px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-bg-secondary);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Programs Section */
.programs-section {
  background: #1e3a5f;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.programs-mesh-gradient {
  position: absolute;
  top: 10%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.programs-glow-2 {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(96, 165, 250, 0.06);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.programs-accent-shape {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.07);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

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

.programs-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

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

.programs-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.programs-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #bfdbfe;
  max-width: 700px;
  margin: 0 auto;
}

.programs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
  margin-top: 2rem;
}

.program-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: #0a0f1e;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.program-card:hover {
  border-color: #3b82f6;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.program-header {
  background: rgba(59, 130, 246, 0.12);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.program-level {
  display: inline-block;
  background: #3b82f6;
  color: #000000;
  padding: 0.375rem 0.875rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.program-title {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.program-duration {
  color: #7b9fd9;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.program-body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.program-description {
  color: #bfdbfe;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.program-topics {
  flex: 1;
}

.program-topics-label {
  color: #60a5fa;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.program-topics ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.program-topics li {
  color: #bfdbfe;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.program-topics li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: #3b82f6;
  border-radius: 50%;
  flex-shrink: 0;
}

.program-footer {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(59, 130, 246, 0.15);
}

.program-footer .btn {
  width: 100%;
}

/* Features Section */
.features-section {
  background: #162d50;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.features-color-field {
  position: absolute;
  top: 0;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.features-accent-glow-2 {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: rgba(96, 165, 250, 0.06);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.features-shape-accent {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 220px;
  height: 220px;
  background: rgba(59, 130, 246, 0.07);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

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

.features-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

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

.features-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

.feature-card {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: #3b82f6;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 1.5rem;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.feature-text {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
}

/* Learning Path Section */
.learning-path-section {
  background: #0a0f1e;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

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

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

.learning-shape-2 {
  position: absolute;
  top: 60%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.07);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.learning-float-accent {
  position: absolute;
  bottom: 30%;
  left: 10%;
  width: 180px;
  height: 150px;
  background: rgba(96, 165, 250, 0.05);
  border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.learning-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

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

.learning-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

.learning-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.15);
}

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

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

.learning-step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.learning-step-text {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  background: #162d50;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.testimonials-glow-field {
  position: absolute;
  top: 10%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.testimonials-accent-orb {
  position: absolute;
  top: 50%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.testimonials-shape-element {
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: rgba(96, 165, 250, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

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

.testimonials-corner-glow {
  position: absolute;
  bottom: 10%;
  right: -30px;
  width: 150px;
  height: 150px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.testimonials-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

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

.testimonials-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.testimonials-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #bfdbfe;
  max-width: 700px;
  margin: 0 auto;
}

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

.testimonial-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: #0a0f1e;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: #fbbf24;
}

.testimonial-stars i {
  font-size: 0.875rem;
}

.testimonial-text {
  color: #bfdbfe;
  font-size: 0.9375rem;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.testimonial-name {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9375rem;
}

.testimonial-role {
  color: #7b9fd9;
  font-size: 0.875rem;
}

/* Resources Section */
.resources-section {
  background: #0a0f1e;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.resources-color-wash {
  position: absolute;
  top: 20%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.resources-glow-1 {
  position: absolute;
  bottom: 10%;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.resources-glow-2 {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: rgba(96, 165, 250, 0.06);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.resources-accent-blob {
  position: absolute;
  bottom: 30%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.07);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.resources-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

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

.resources-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

.resource-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: #162d50;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.resource-card:hover {
  border-color: #3b82f6;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
}

.resource-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

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

.resource-card-title {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
}

.resource-card-description {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
}

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

.resource-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.resources-cta {
  text-align: center;
  margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
  background: #1e3a5f;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.faq-glow-mesh {
  position: absolute;
  top: 10%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.faq-shape-accent {
  position: absolute;
  top: 50%;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.faq-float-element {
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: rgba(96, 165, 250, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

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

.faq-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.faq-header {
  text-align: center;
  margin-bottom: 1rem;
}

.faq-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.faq-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #bfdbfe;
}

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

.faq-item {
  background: #0a0f1e;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #3b82f6;
}

.faq-question {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(59, 130, 246, 0.05);
}

.faq-question-text {
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  text-align: left;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-size: 1.25rem;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(59, 130, 246, 0.05);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-text {
  padding: 0 clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.75rem);
  color: #bfdbfe;
  line-height: 1.8;
}

/* Contact Section */
.contact-section {
  background: #162d50;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

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

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

.contact-shape-2 {
  position: absolute;
  top: 60%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.07);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.contact-float-accent {
  position: absolute;
  bottom: 30%;
  left: 10%;
  width: 180px;
  height: 150px;
  background: rgba(96, 165, 250, 0.05);
  border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

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

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

.contact-info-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
}

.contact-info-text {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

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

.contact-item-label {
  color: #60a5fa;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item-value {
  color: #ffffff;
  font-size: 1rem;
}

.contact-form {
  flex: 1 1 350px;
  background: #0a0f1e;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

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

.form-label {
  color: #bfdbfe;
  font-weight: 500;
  font-size: 0.875rem;
}

.form-input,
.form-textarea {
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #7b9fd9;
}

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

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

.form-privacy {
  font-size: 0.8125rem;
  color: #7b9fd9;
}

.form-privacy-link {
  color: #60a5fa;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.form-privacy-link:hover {
  color: #93c5fd;
}

.form-submit-btn {
  width: 100%;
  background: #3b82f6;
  color: #000000;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.form-submit-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e293b;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  padding: clamp(1rem, 3vw, 1.5rem);
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}

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

.cookie-banner-text {
  color: #cbd5e1;
  font-size: 0.875rem;
  flex: 1;
  min-width: 250px;
  line-height: 1.5;
}

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

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: 'Inter', sans-serif;
}

.cookie-btn-accept {
  background: #3b82f6;
  color: #000000;
}

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

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

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.05);
}

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

/* Responsive */
@media (min-width: 768px) {
  section, [class*="-section"] {
    padding-top: clamp(5rem, 8vw, 6rem);
    padding-bottom: clamp(5rem, 8vw, 6rem);
  }
}

@media (min-width: 1024px) {
  section, [class*="-section"] {
    padding-top: clamp(6rem, 8vw, 7rem);
    padding-bottom: clamp(6rem, 8vw, 7rem);
  }
}

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

    /* Footer component styles */
.footer {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem) 0;
  color: var(--color-text-secondary);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(96, 165, 250, 0.1);
}

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

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

/* About section */
.footer-about-section {
  flex: 1 1 250px;
  min-width: 220px;
}

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

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

/* Navigation section */
.footer-nav-section {
  flex: 1 1 200px;
  min-width: 180px;
}

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

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

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

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

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

/* Contact section */
.footer-contact-section {
  flex: 1 1 250px;
  min-width: 220px;
}

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

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

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

/* Legal section */
.footer-legal-section {
  flex: 1 1 240px;
  min-width: 210px;
}

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

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

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

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

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

/* Divider */
.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.2), transparent);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

/* Bottom section */
.footer-bottom {
  text-align: center;
}

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

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

.footer-deco-glow-1 {
  width: 280px;
  height: 280px;
  top: 10%;
  left: -80px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  border-radius: 50%;
}

.footer-deco-glow-2 {
  width: 320px;
  height: 320px;
  bottom: -50px;
  right: -100px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.04) 0%, transparent 70%);
  filter: blur(80px);
  border-radius: 50%;
}

.footer-deco-accent {
  width: 200px;
  height: 2px;
  top: 50%;
  left: 10%;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.15), transparent);
  border-radius: 1px;
}

/* Responsive - Tablet */
@media (min-width: 768px) {
  .footer-content {
    gap: clamp(2rem, 4vw, 3.5rem);
  }

  .footer-nav-link,
  .footer-legal-link {
    font-size: clamp(0.875rem, 1vw, 1rem);
  }

  .footer-contact-item {
    font-size: clamp(0.875rem, 1vw, 1rem);
  }
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
  .footer-content {
    gap: 4rem;
    justify-content: space-between;
  }

  .footer-about-section {
    flex: 0 1 280px;
  }

  .footer-nav-section {
    flex: 0 1 160px;
  }

  .footer-contact-section {
    flex: 0 1 280px;
  }

  .footer-legal-section {
    flex: 0 1 220px;
  }

  .footer-nav-link:hover,
  .footer-legal-link:hover {
    transform: translateX(4px);
  }

  .footer-deco-glow-1 {
    left: -120px;
    top: 5%;
  }

  .footer-deco-glow-2 {
    right: -120px;
    bottom: -80px;
  }
}

/* Motion preference respect */
@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 - Career Development Styling */

.category-page-career-development {
  width: 100%;
  background: var(--color-bg-primary);
}

/* Hero Section */
.hero-section-career-development {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-glow-element-career {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-gradient-mesh-career {
  position: absolute;
  bottom: -200px;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(80px);
}

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

.hero-content-career-development {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: clamp(1rem, 4vw, 2rem);
}

.hero-title-career-development {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-subtitle-career-development {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  max-width: 700px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  line-height: 1.6;
}

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

.stat-block-career {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

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

.stat-label-career {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  text-align: center;
}

/* Posts Section */
.posts-section-career-development {
  background: var(--color-bg-tertiary);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.posts-header-career {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.posts-tag-career {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.posts-title-career-development {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.posts-subtitle-career-development {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.card-career-development {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-xl);
  transition: all 0.4s ease;
  overflow: hidden;
}

.card-career-development:hover {
  border-color: var(--color-primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.card-image-career {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin: calc(var(--space-md) * -1) calc(var(--space-md) * -1) 0;
  margin-top: calc(clamp(1.25rem, 3vw, 2rem) * -1);
  margin-left: calc(clamp(1.25rem, 3vw, 2rem) * -1);
  margin-right: calc(clamp(1.25rem, 3vw, 2rem) * -1);
}

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

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

.card-meta-career {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.meta-badge-career {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-secondary);
  border-radius: 16px;
  font-size: 0.8125rem;
  font-weight: 500;
}

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

.card-link-career {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  align-self: flex-start;
}

.card-link-career:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Pathways Section */
.pathways-section-career-development {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.pathways-header-career {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.pathways-title-career-development {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.pathways-subtitle-career-development {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.pathways-steps-career {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.pathway-step-career {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-secondary);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.pathway-step-career:hover {
  border-color: var(--color-primary);
  background: rgba(59, 130, 246, 0.08);
}

.pathway-step-number-career {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
  font-family: var(--font-heading);
}

.pathway-step-content-career {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.pathway-step-title-career {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
}

.pathway-step-text-career {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

/* Features Section */
.features-section-career-development {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

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

.features-shape-element-career {
  position: absolute;
  bottom: -100px;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(96, 165, 250, 0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  pointer-events: none;
  z-index: 1;
}

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

.features-title-career-development {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.features-subtitle-career-development {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.feature-card-career {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-xl);
  transition: all 0.4s ease;
}

.feature-card-career:hover {
  border-color: var(--color-primary);
  transform: translateY(-8px);
  background: rgba(59, 130, 246, 0.12);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.feature-icon-career {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  color: var(--color-secondary);
  font-size: 1.75rem;
}

.feature-card-title-career {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
}

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

/* Insight Section */
.insight-section-career-development {
  background: var(--color-bg-tertiary);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.featured-insight-career {
  padding: clamp(2.5rem, 4vw, 3.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.08);
  margin: 0 auto;
  max-width: 800px;
  border-radius: var(--radius-lg);
}

.insight-text-career {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  font-style: italic;
  font-weight: 500;
}

.insight-author-career {
  color: var(--color-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-style: normal;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pathway-step-career {
    flex-direction: column;
    align-items: flex-start;
  }

  .pathway-step-number-career {
    min-width: auto;
  }

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

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

  .features-grid-career {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .feature-card-career {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-stats-career {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

@media (max-width: 480px) {
  .hero-title-career-development {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
  }

  .stat-number-career {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
  }

  .card-meta-career {
    gap: 0.5rem;
  }

  .meta-badge-career {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
  }
}

/* Post Page 1 Styles */
.main-it-skills-development {
  width: 100%;
  overflow: hidden;
}

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

/* Hero Section */
.hero-section-it-skills-development {
  background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.breadcrumbs-it-skills-development a:hover {
  color: #93c5fd;
}

.breadcrumbs-it-skills-development span {
  color: #7b9fd9;
}

.breadcrumbs-it-skills-development span:last-child {
  color: #bfdbfe;
  font-weight: 500;
}

.hero-content-it-skills-development {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  z-index: 1;
  padding: clamp(1rem, 4vw, 2rem);
}

.hero-title-it-skills-development {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  max-width: 900px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-it-skills-development {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #bfdbfe;
  max-width: 700px;
  line-height: 1.6;
}

.hero-meta-it-skills-development {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

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

.meta-badge-it-skills-development i {
  color: #3b82f6;
}

.hero-image-it-skills-development {
  width: 100%;
  max-width: 700px;
  border-radius: 16px;
  overflow: hidden;
  margin-top: clamp(1rem, 3vw, 2rem);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.hero-img-it-skills-development {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Intro Section */
.intro-section-it-skills-development {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.intro-description-it-skills-development {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-text-it-skills-development {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

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

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

@media (max-width: 768px) {
  .intro-content-it-skills-development {
    flex-direction: column;
  }
  
  .intro-text-block-it-skills-development,
  .intro-image-block-it-skills-development {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Content Section */
.content-section-it-skills-development {
  background: #0c1929;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.content-description-it-skills-development {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.8;
}

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

.specialty-item-it-skills-development {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(59, 130, 246, 0.08);
  border-left: 3px solid #3b82f6;
  border-radius: 4px;
}

.specialty-title-it-skills-development {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #93c5fd;
  margin-bottom: 0.5rem;
}

.specialty-text-it-skills-development {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

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

.content-img-it-skills-development {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
}

@media (max-width: 768px) {
  .content-wrapper-it-skills-development {
    flex-direction: column;
  }
  
  .content-text-block-it-skills-development,
  .content-image-block-it-skills-development {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Languages Section */
.languages-section-it-skills-development {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.languages-description-it-skills-development {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.8;
}

.languages-list-it-skills-development {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.25rem);
}

.language-item-it-skills-development {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
}

.language-item-it-skills-development::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

@media (max-width: 768px) {
  .languages-wrapper-it-skills-development {
    flex-direction: column-reverse;
  }
  
  .languages-image-block-it-skills-development,
  .languages-text-block-it-skills-development {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Quote Section */
.quote-section-it-skills-development {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

.quote-author-it-skills-development {
  font-size: 0.875rem;
  color: #93c5fd;
  font-style: normal;
}

/* Platforms Section */
.platforms-section-it-skills-development {
  background: #0c1929;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.platforms-header-it-skills-development {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.platforms-subtitle-it-skills-development {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

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

.platform-card-it-skills-development {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.platform-card-it-skills-development:hover {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.platform-icon-it-skills-development {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 10px;
  color: #60a5fa;
  font-size: 1.5rem;
}

.platform-name-it-skills-development {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #93c5fd;
}

.platform-description-it-skills-development {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

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

/* Learning Path Section */
.learning-path-section-it-skills-development {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.learning-path-header-it-skills-development {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

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

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

.learning-steps-it-skills-development {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
}

.learning-step-it-skills-development {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
  transition: all 0.3s ease;
}

.learning-step-it-skills-development:hover {
  background: #f1f5f9;
  transform: translateX(5px);
}

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

.learning-step-content-it-skills-development {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

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

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

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

/* Tips Section */
.tips-section-it-skills-development {
  background: #0c1929;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

.tips-img-it-skills-development {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
}

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

.tips-title-it-skills-development {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.tips-list-it-skills-development {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.tip-item-it-skills-development {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: 8px;
  border-top: 2px solid #3b82f6;
}

.tip-heading-it-skills-development {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #93c5fd;
  margin-bottom: 0.5rem;
}

.tip-text-it-skills-development {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tips-wrapper-it-skills-development {
    flex-direction: column-reverse;
  }
  
  .tips-image-block-it-skills-development,
  .tips-text-block-it-skills-development {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Conclusion Section */
.conclusion-section-it-skills-development {
  background: #162d50;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-section-it-skills-development::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.conclusion-content-it-skills-development {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.conclusion-title-it-skills-development {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  line-height: 1.2;
}

.conclusion-text-it-skills-development {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  text-align: justify;
}

.conclusion-cta-it-skills-development {
  text-align: center;
  margin-top: clamp(2rem, 3vw, 2.5rem);
}

.cta-btn-primary-it-skills-development {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #3b82f6;
  color: #0f172a;
  border-radius: 10px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* Disclaimer Section */
.disclaimer-section-it-skills-development {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

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

.disclaimer-title-it-skills-development {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #d97706;
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
}

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

/* Related Posts Section */
.related-section-it-skills-development {
  background: #0c1929;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.related-header-it-skills-development {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

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

.related-subtitle-it-skills-development {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 700px;
  margin: 0 auto;
}

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

.related-card-it-skills-development {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  background: var(--color-bg-card);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s ease;
}

.related-card-it-skills-development:hover {
  border-color: #3b82f6;
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.related-card-image-it-skills-development {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

.related-card-title-it-skills-development {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #93c5fd;
  line-height: 1.4;
}

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

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

/* Responsive adjustments */
@media (min-width: 768px) {
  .hero-section-it-skills-development {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .intro-section-it-skills-development,
  .content-section-it-skills-development,
  .languages-section-it-skills-development,
  .platforms-section-it-skills-development,
  .learning-path-section-it-skills-development,
  .tips-section-it-skills-development,
  .conclusion-section-it-skills-development {
    padding: clamp(5rem, 8vw, 7rem) 0;
  }
}

@media (max-width: 320px) {
  .breadcrumbs-it-skills-development {
    font-size: 0.75rem;
    gap: 0.5rem;
  }

  .hero-title-it-skills-development {
    word-wrap: break-word;
  }
}

/* Post Page 2 Styles */
.main-career-development-strategies {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-career-development-strategies {
  background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

.breadcrumbs-career-development-strategies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #bfdbfe;
}

.breadcrumbs-career-development-strategies a {
  color: #60a5fa;
  transition: color 0.2s ease;
}

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

.breadcrumbs-career-development-strategies span {
  color: #7b9fd9;
}

.hero-content-career-development-strategies {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  z-index: 1;
  padding: clamp(1rem, 4vw, 2rem);
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.hero-title-career-development-strategies {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 900px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-career-development-strategies {
  color: #bfdbfe;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  max-width: 700px;
  line-height: 1.6;
}

.hero-meta-career-development-strategies {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

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

.meta-badge-career-development-strategies i {
  color: #3b82f6;
}

.hero-buttons-career-development-strategies {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .hero-buttons-career-development-strategies {
    flex-direction: row;
    justify-content: center;
  }
}

.hero-image-career-development-strategies {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #162d50;
  margin-top: clamp(2rem, 5vw, 4rem);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-img-career-development-strategies {
  width: 100%;
  height: auto;
  display: block;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.intro-section-career-development-strategies {
  background: #162d50;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

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

.intro-text-career-development-strategies {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-career-development-strategies {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
}

.intro-content-career-development-strategies {
  color: #bfdbfe;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-highlight-career-development-strategies {
  color: #93c5fd;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid #3b82f6;
  border-radius: 4px;
  font-weight: 500;
}

.intro-image-career-development-strategies {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-career-development-strategies img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-wrapper-career-development-strategies {
    flex-direction: column;
  }
  
  .intro-text-career-development-strategies,
  .intro-image-career-development-strategies {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.strategies-section-career-development-strategies {
  background: #0c1929;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.strategies-header-career-development-strategies {
  text-align: center;
  margin-bottom: 3rem;
}

.strategies-tag-career-development-strategies {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.strategies-title-career-development-strategies {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
}

.strategies-subtitle-career-development-strategies {
  color: #bfdbfe;
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.strategies-list-career-development-strategies {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 5vw, 4rem);
}

.strategy-item-career-development-strategies {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.strategy-item-career-development-strategies:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: #3b82f6;
}

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

.strategy-content-career-development-strategies {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.strategy-title-career-development-strategies {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
}

.strategy-text-career-development-strategies {
  color: #bfdbfe;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
}

.skills-section-career-development-strategies {
  background: #1e3a5f;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

.skills-title-career-development-strategies {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
}

.skills-intro-career-development-strategies {
  color: #bfdbfe;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.skills-grid-career-development-strategies {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.skill-card-career-development-strategies {
  flex: 1 1 calc(50% - 0.75rem);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.skill-icon-career-development-strategies {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3b82f6;
  border-radius: 6px;
  color: #ffffff;
  font-size: 1.25rem;
}

.skill-name-career-development-strategies {
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
}

.skill-desc-career-development-strategies {
  color: #bfdbfe;
  font-size: 0.8125rem;
  line-height: 1.5;
}

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

.skills-image-career-development-strategies img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .skills-wrapper-career-development-strategies {
    flex-direction: column;
  }
  
  .skills-text-career-development-strategies,
  .skills-image-career-development-strategies {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .skill-card-career-development-strategies {
    flex: 1 1 100%;
  }
}

.action-section-career-development-strategies {
  background: #162d50;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

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

.action-image-career-development-strategies {
  flex: 1 1 50%;
  max-width: 50%;
}

.action-image-career-development-strategies img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.action-text-career-development-strategies {
  flex: 1 1 50%;
  max-width: 50%;
}

.action-title-career-development-strategies {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
}

.action-intro-career-development-strategies {
  color: #bfdbfe;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.action-checklist-career-development-strategies {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.checklist-item-career-development-strategies {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.checklist-number-career-development-strategies {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3b82f6;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9375rem;
}

.checklist-text-career-development-strategies {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.checklist-title-career-development-strategies {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}

.checklist-desc-career-development-strategies {
  color: #bfdbfe;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .action-wrapper-career-development-strategies {
    flex-direction: column;
  }
  
  .action-image-career-development-strategies,
  .action-text-career-development-strategies {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.insights-section-career-development-strategies {
  background: #0c1929;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.insights-content-career-development-strategies {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
}

.featured-quote-career-development-strategies {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 4px;
}

.quote-text-career-development-strategies {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.quote-author-career-development-strategies {
  color: #bfdbfe;
  font-size: 0.875rem;
  font-style: normal;
}

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

.insight-box-career-development-strategies {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.insight-title-career-development-strategies {
  color: #60a5fa;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

.insight-list-career-development-strategies {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.insight-item-career-development-strategies {
  color: #bfdbfe;
  font-size: 0.9375rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.insight-item-career-development-strategies::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: 700;
}

.conclusion-section-career-development-strategies {
  background: #162d50;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.conclusion-content-career-development-strategies {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.conclusion-title-career-development-strategies {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 2rem;
}

.conclusion-text-career-development-strategies {
  color: #bfdbfe;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-career-development-strategies {
  margin-top: 2.5rem;
  text-align: center;
}

.conclusion-cta-career-development-strategies .btn {
  display: inline-flex;
}

.disclaimer-section-career-development-strategies {
  background: #0c1929;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  overflow: hidden;
}

.disclaimer-content-career-development-strategies {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border-left: 4px solid #60a5fa;
  border-radius: 4px;
}

.disclaimer-title-career-development-strategies {
  color: #93c5fd;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

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

.related-section-career-development-strategies {
  background: #1e3a5f;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.related-header-career-development-strategies {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-career-development-strategies {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 0.5rem;
}

.related-subtitle-career-development-strategies {
  color: #bfdbfe;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

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

.related-card-career-development-strategies {
  flex: 1 1 300px;
  max-width: 380px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.related-card-career-development-strategies:hover {
  border-color: #3b82f6;
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.related-card-image-career-development-strategies {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #0c1929;
}

.related-img-career-development-strategies {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-career-development-strategies:hover .related-img-career-development-strategies {
  transform: scale(1.05);
}

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

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

.related-card-text-career-development-strategies {
  color: #bfdbfe;
  font-size: 0.9375rem;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-career-development-strategies {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #60a5fa;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  align-self: flex-start;
  margin-top: auto;
}

.related-card-link-career-development-strategies:hover {
  color: #93c5fd;
  transform: translateX(4px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  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: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: #3b82f6;
  color: #0c1929;
}

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

.btn-secondary {
  background: transparent;
  color: #60a5fa;
  border-color: #60a5fa;
}

.btn-secondary:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: #93c5fd;
  color: #93c5fd;
}

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

@media (max-width: 768px) {
  .insights-grid-career-development-strategies {
    grid-template-columns: 1fr;
  }
  
  .related-card-career-development-strategies {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-career-development-strategies {
    font-size: 0.75rem;
  }
  
  .hero-meta-career-development-strategies {
    gap: 0.75rem;
  }
  
  .meta-badge-career-development-strategies {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }
  
  .strategy-item-career-development-strategies {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .checklist-item-career-development-strategies {
    gap: 0.75rem;
  }
  
  .checklist-number-career-development-strategies {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }
}

/* Post Page 3 Styles */
.main-leadership-management-skills {
  width: 100%;
  overflow-x: hidden;
}

/* ==================== HERO SECTION ==================== */
.hero-section-leadership-management-skills {
  background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.breadcrumbs-leadership-management-skills {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  flex-wrap: wrap;
}

.breadcrumbs-leadership-management-skills a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.breadcrumbs-leadership-management-skills span {
  color: #7b9fd9;
}

.hero-content-leadership-management-skills {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  z-index: 1;
  padding: clamp(1rem, 4vw, 2rem);
}

.hero-title-leadership-management-skills {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  max-width: 900px;
  line-height: 1.15;
}

.hero-subtitle-leadership-management-skills {
  color: #bfdbfe;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  max-width: 750px;
  line-height: 1.6;
}

.hero-meta-leadership-management-skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

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

.meta-badge-leadership-management-skills i {
  color: #3b82f6;
}

.hero-image-container-leadership-management-skills {
  width: 100%;
  max-width: 800px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
  margin-top: clamp(1rem, 3vw, 2rem);
}

.hero-image-leadership-management-skills {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ==================== INTRO SECTION ==================== */
.intro-section-leadership-management-skills {
  background: #0a0f1e;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.intro-section-leadership-management-skills::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

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

.intro-title-leadership-management-skills {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-description-leadership-management-skills {
  color: #bfdbfe;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-leadership-management-skills {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
}

.intro-image-img-leadership-management-skills {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

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

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

  .intro-image-leadership-management-skills {
    aspect-ratio: 16 / 9;
  }
}

/* ==================== FOUNDATIONS SECTION ==================== */
.foundations-section-leadership-management-skills {
  background: #162d50;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.foundations-header-leadership-management-skills {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.foundations-title-leadership-management-skills {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.foundations-subtitle-leadership-management-skills {
  color: #bfdbfe;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.foundations-cards-leadership-management-skills {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.foundation-card-leadership-management-skills {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.foundation-card-leadership-management-skills:hover {
  border-color: #3b82f6;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

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

.foundation-card-title-leadership-management-skills {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
}

.foundation-card-text-leadership-management-skills {
  color: #bfdbfe;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

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

/* ==================== PRACTICES SECTION ==================== */
.practices-section-leadership-management-skills {
  background: #0a0f1e;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

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

.practices-text-leadership-management-skills {
  flex: 1 1 50%;
  max-width: 50%;
}

.practices-title-leadership-management-skills {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.practices-description-leadership-management-skills {
  color: #bfdbfe;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.practices-image-leadership-management-skills {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
}

.practices-image-img-leadership-management-skills {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

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

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

  .practices-image-leadership-management-skills {
    aspect-ratio: 16 / 9;
  }
}

/* ==================== CONFLICT SECTION ==================== */
.conflict-section-leadership-management-skills {
  background: #162d50;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

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

.conflict-image-leadership-management-skills {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
  order: -1;
}

.conflict-image-img-leadership-management-skills {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.conflict-text-leadership-management-skills {
  flex: 1 1 50%;
  max-width: 50%;
}

.conflict-title-leadership-management-skills {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conflict-description-leadership-management-skills {
  color: #bfdbfe;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

  .conflict-image-leadership-management-skills,
  .conflict-text-leadership-management-skills {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }

  .conflict-image-leadership-management-skills {
    aspect-ratio: 16 / 9;
  }
}

/* ==================== DEVELOPMENT SECTION ==================== */
.development-section-leadership-management-skills {
  background: #0a0f1e;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.development-header-leadership-management-skills {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.development-title-leadership-management-skills {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.development-subtitle-leadership-management-skills {
  color: #bfdbfe;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.featured-quote-leadership-management-skills {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  margin: clamp(2rem, 4vw, 3rem) 0;
  border-radius: 0 8px 8px 0;
}

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

.quote-cite-leadership-management-skills {
  color: #7b9fd9;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-style: normal;
}

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

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

.development-description-leadership-management-skills {
  color: #bfdbfe;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.development-image-leadership-management-skills {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
}

.development-image-img-leadership-management-skills {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

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

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

  .development-image-leadership-management-skills {
    aspect-ratio: 16 / 9;
  }
}

/* ==================== CONCLUSION SECTION ==================== */
.conclusion-section-leadership-management-skills {
  background: linear-gradient(135deg, #162d50 0%, #1e3a5f 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-section-leadership-management-skills::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.conclusion-content-leadership-management-skills {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-leadership-management-skills {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 1rem, 3rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-description-leadership-management-skills {
  color: #bfdbfe;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.conclusion-cta-leadership-management-skills {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
}

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

.btn-primary-leadership-management-skills {
  background: #3b82f6;
  color: #0a0f1e;
}

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

.btn-secondary-leadership-management-skills {
  background: transparent;
  border: 2px solid #60a5fa;
  color: #60a5fa;
}

.btn-secondary-leadership-management-skills:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: #93c5fd;
  color: #93c5fd;
}

/* ==================== DISCLAIMER SECTION ==================== */
.disclaimer-section-leadership-management-skills {
  background: #0a0f1e;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.disclaimer-content-leadership-management-skills {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
}

.disclaimer-title-leadership-management-skills {
  color: #60a5fa;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

/* ==================== RELATED SECTION ==================== */
.related-section-leadership-management-skills {
  background: #162d50;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.related-header-leadership-management-skills {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-leadership-management-skills {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.related-subtitle-leadership-management-skills {
  color: #bfdbfe;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.related-cards-leadership-management-skills {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-leadership-management-skills {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #0c1929;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-leadership-management-skills:hover {
  border-color: #3b82f6;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.related-card-image-leadership-management-skills {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-img-leadership-management-skills {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.related-card-title-leadership-management-skills {
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
}

.related-card-description-leadership-management-skills {
  color: #bfdbfe;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  line-height: 1.6;
}

.related-card-link-leadership-management-skills {
  color: #60a5fa;
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-weight: 500;
  margin-top: auto;
  transition: color 0.3s ease;
}

.related-card-link-leadership-management-skills:hover {
  color: #93c5fd;
  text-decoration: underline;
}

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

/* ==================== RESPONSIVE UTILITIES ==================== */
@media (max-width: 768px) {
  .hero-image-container-leadership-management-skills {
    max-width: 100%;
  }
}

/* ==================== ACCESSIBILITY ==================== */
@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-sales-negotiation-techniques {
  width: 100%;
}

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

/* Hero Section */
.hero-section-sales-negotiation-techniques {
  background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.breadcrumbs-sales-negotiation-techniques {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  position: relative;
  z-index: 1;
}

.breadcrumbs-sales-negotiation-techniques a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-sales-negotiation-techniques a:hover {
  color: #93c5fd;
}

.breadcrumbs-sales-negotiation-techniques span {
  color: #7b9fd9;
}

.hero-content-sales-negotiation-techniques {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  z-index: 1;
}

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

.hero-subtitle-sales-negotiation-techniques {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #bfdbfe;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.hero-meta-sales-negotiation-techniques {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  justify-content: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

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

.meta-badge-sales-negotiation-techniques i {
  color: #3b82f6;
  font-size: 0.875rem;
}

.hero-image-sales-negotiation-techniques {
  margin-top: clamp(2rem, 5vw, 4rem);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9;
}

.hero-featured-image-sales-negotiation-techniques {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Intro Section */
.intro-section-sales-negotiation-techniques {
  background: #0a1929;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.intro-section-sales-negotiation-techniques::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.intro-content-sales-negotiation-techniques {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.intro-text-sales-negotiation-techniques {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-sales-negotiation-techniques {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.intro-description-sales-negotiation-techniques {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-sales-negotiation-techniques {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
}

.intro-featured-image-sales-negotiation-techniques {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .intro-content-sales-negotiation-techniques {
    flex-direction: column;
  }
  
  .intro-text-sales-negotiation-techniques,
  .intro-image-sales-negotiation-techniques {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Fundamentals Section */
.fundamentals-section-sales-negotiation-techniques {
  background: #162d50;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

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

.fundamentals-text-sales-negotiation-techniques {
  flex: 1 1 50%;
  max-width: 50%;
}

.fundamentals-title-sales-negotiation-techniques {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.fundamentals-description-sales-negotiation-techniques {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.principles-list-sales-negotiation-techniques {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.principle-item-sales-negotiation-techniques {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
}

.principle-title-sales-negotiation-techniques {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #93c5fd;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.principle-text-sales-negotiation-techniques {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

.fundamentals-image-sales-negotiation-techniques {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
}

.fundamentals-featured-image-sales-negotiation-techniques {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .fundamentals-content-sales-negotiation-techniques {
    flex-direction: column;
  }
  
  .fundamentals-text-sales-negotiation-techniques,
  .fundamentals-image-sales-negotiation-techniques {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Techniques Section */
.techniques-section-sales-negotiation-techniques {
  background: #0a1929;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.techniques-header-sales-negotiation-techniques {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.techniques-title-sales-negotiation-techniques {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.techniques-subtitle-sales-negotiation-techniques {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #bfdbfe;
  max-width: 700px;
  margin: 0 auto;
}

.techniques-grid-sales-negotiation-techniques {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.technique-card-sales-negotiation-techniques {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.technique-card-sales-negotiation-techniques:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
  transform: translateY(-4px);
}

.technique-number-sales-negotiation-techniques {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.technique-card-title-sales-negotiation-techniques {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  font-weight: 600;
}

.technique-card-text-sales-negotiation-techniques {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .technique-card-sales-negotiation-techniques {
    flex: 1 1 100%;
    min-width: unset;
  }
}

/* Strategies Section */
.strategies-section-sales-negotiation-techniques {
  background: #162d50;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.strategies-content-sales-negotiation-techniques {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.strategies-image-sales-negotiation-techniques {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
}

.strategies-featured-image-sales-negotiation-techniques {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.strategies-text-sales-negotiation-techniques {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-title-sales-negotiation-techniques {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.strategies-description-sales-negotiation-techniques {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.strategies-highlights-sales-negotiation-techniques {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.highlight-box-sales-negotiation-techniques {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid #60a5fa;
  border-radius: 8px;
}

.highlight-title-sales-negotiation-techniques {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #93c5fd;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.highlight-text-sales-negotiation-techniques {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .strategies-content-sales-negotiation-techniques {
    flex-direction: column;
  }
  
  .strategies-image-sales-negotiation-techniques,
  .strategies-text-sales-negotiation-techniques {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Development Section */
.development-section-sales-negotiation-techniques {
  background: #0a1929;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.development-header-sales-negotiation-techniques {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.development-title-sales-negotiation-techniques {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.development-subtitle-sales-negotiation-techniques {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #bfdbfe;
  max-width: 700px;
  margin: 0 auto;
}

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

.development-step-sales-negotiation-techniques {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  align-items: flex-start;
}

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

.step-content-sales-negotiation-techniques {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-sales-negotiation-techniques {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  font-weight: 600;
}

.step-text-sales-negotiation-techniques {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .development-step-sales-negotiation-techniques {
    flex-direction: column;
    gap: 1rem;
  }
  
  .step-number-sales-negotiation-techniques {
    min-width: auto;
  }
}

/* Expert Quote Section */
.expert-quote-section-sales-negotiation-techniques {
  background: #162d50;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.expert-quote-sales-negotiation-techniques {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
}

.expert-quote-text-sales-negotiation-techniques {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: #ffffff;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 500;
}

.expert-quote-author-sales-negotiation-techniques {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #7b9fd9;
  font-style: normal;
  display: block;
}

/* Tools Section */
.tools-section-sales-negotiation-techniques {
  background: #0a1929;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

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

.tools-text-sales-negotiation-techniques {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-title-sales-negotiation-techniques {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.tools-description-sales-negotiation-techniques {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.tools-list-sales-negotiation-techniques {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.tool-item-sales-negotiation-techniques {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid #60a5fa;
  border-radius: 8px;
}

.tool-name-sales-negotiation-techniques {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #93c5fd;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.tool-description-text-sales-negotiation-techniques {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

.tools-image-sales-negotiation-techniques {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
}

.tools-featured-image-sales-negotiation-techniques {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .tools-content-sales-negotiation-techniques {
    flex-direction: column;
  }
  
  .tools-text-sales-negotiation-techniques,
  .tools-image-sales-negotiation-techniques {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Conclusion Section */
.conclusion-section-sales-negotiation-techniques {
  background: #162d50;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.conclusion-content-sales-negotiation-techniques {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.conclusion-title-sales-negotiation-techniques {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}

.conclusion-summary-sales-negotiation-techniques {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.conclusion-text-sales-negotiation-techniques {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
}

.conclusion-cta-sales-negotiation-techniques {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  text-align: center;
}

.conclusion-cta-title-sales-negotiation-techniques {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #93c5fd;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  font-weight: 600;
}

.conclusion-cta-text-sales-negotiation-techniques {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

.cta-button-sales-negotiation-techniques:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

/* Related Section */
.related-section-sales-negotiation-techniques {
  background: #0a1929;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.related-header-sales-negotiation-techniques {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.related-title-sales-negotiation-techniques {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.related-subtitle-sales-negotiation-techniques {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #bfdbfe;
  max-width: 700px;
  margin: 0 auto;
}

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

.related-card-sales-negotiation-techniques {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-sales-negotiation-techniques:hover {
  border-color: #3b82f6;
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.related-card-image-sales-negotiation-techniques {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #162d50;
}

.related-image-sales-negotiation-techniques {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-sales-negotiation-techniques {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-sales-negotiation-techniques {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
  flex-grow: 1;
}

.related-link-sales-negotiation-techniques {
  display: inline-flex;
  align-items: center;
  color: #60a5fa;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-link-sales-negotiation-techniques:hover {
  color: #93c5fd;
  gap: 0.5rem;
}

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

/* Disclaimer Section */
.disclaimer-section-sales-negotiation-techniques {
  background: #162d50;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-sales-negotiation-techniques {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
}

.disclaimer-title-sales-negotiation-techniques {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #93c5fd;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 600;
}

.disclaimer-text-sales-negotiation-techniques {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.disclaimer-text-sales-negotiation-techniques:last-child {
  margin-bottom: 0;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .hero-section-sales-negotiation-techniques {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
  
  .intro-section-sales-negotiation-techniques,
  .fundamentals-section-sales-negotiation-techniques,
  .strategies-section-sales-negotiation-techniques,
  .tools-section-sales-negotiation-techniques {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-sales-negotiation-techniques {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }
}

/* Post Page 5 Styles */
/* Main component wrapper */
.main-financial-literacy-professionals {
  width: 100%;
  display: flex;
  flex-direction: column;
}

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

/* Hero Section */
.hero-section-financial-literacy-professionals {
  background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

.breadcrumbs-financial-literacy-professionals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.875rem;
}

.breadcrumbs-financial-literacy-professionals a,
.breadcrumbs-financial-literacy-professionals span {
  color: #bfdbfe;
}

.breadcrumbs-financial-literacy-professionals a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-financial-literacy-professionals a:hover {
  color: #3b82f6;
}

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

.hero-text-financial-literacy-professionals {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
}

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

.hero-description-financial-literacy-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
}

.hero-meta-financial-literacy-professionals {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

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

.meta-badge-financial-literacy-professionals i {
  color: #3b82f6;
}

.hero-stats-financial-literacy-professionals {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

.stat-item-financial-literacy-professionals {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-financial-literacy-professionals {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #3b82f6;
  line-height: 1;
}

.stat-label-financial-literacy-professionals {
  font-size: 0.875rem;
  color: #bfdbfe;
}

.hero-image-financial-literacy-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-financial-literacy-professionals {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

@media (max-width: 767px) {
  .hero-content-financial-literacy-professionals {
    flex-direction: column;
  }

  .hero-text-financial-literacy-professionals,
  .hero-image-financial-literacy-professionals {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-financial-literacy-professionals {
    gap: 1rem;
  }
}

/* Intro Section */
.intro-section-financial-literacy-professionals {
  background: #0a0f1e;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

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

.intro-text-financial-literacy-professionals {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.intro-title-financial-literacy-professionals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.intro-paragraph-financial-literacy-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
}

.intro-image-financial-literacy-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-financial-literacy-professionals {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 767px) {
  .intro-content-financial-literacy-professionals {
    flex-direction: column;
  }

  .intro-text-financial-literacy-professionals,
  .intro-image-financial-literacy-professionals {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Steps Section */
.steps-section-financial-literacy-professionals {
  background: #162d50;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.steps-section-financial-literacy-professionals::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.steps-header-financial-literacy-professionals {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}

.steps-title-financial-literacy-professionals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.steps-subtitle-financial-literacy-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 700px;
  margin: 0 auto;
}

.steps-list-financial-literacy-professionals {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 1;
}

.step-item-financial-literacy-professionals {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

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

.step-content-financial-literacy-professionals {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  flex: 1;
}

.step-title-financial-literacy-professionals {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.step-text-financial-literacy-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .step-item-financial-literacy-professionals {
    gap: 1rem;
  }
}

/* Concepts Section */
.concepts-section-financial-literacy-professionals {
  background: #1e3a5f;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.concepts-header-financial-literacy-professionals {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.concepts-title-financial-literacy-professionals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.concepts-subtitle-financial-literacy-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 700px;
  margin: 0 auto;
}

.concepts-content-financial-literacy-professionals {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.concepts-text-financial-literacy-professionals {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.concepts-paragraph-financial-literacy-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
}

.concepts-list-financial-literacy-professionals {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.concept-item-financial-literacy-professionals {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1rem;
  border-left: 3px solid #3b82f6;
}

.concept-item-title-financial-literacy-professionals {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #93c5fd;
}

.concept-item-text-financial-literacy-professionals {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #7b9fd9;
  line-height: 1.6;
}

.concepts-image-financial-literacy-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.concepts-img-financial-literacy-professionals {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 767px) {
  .concepts-content-financial-literacy-professionals {
    flex-direction: column;
  }

  .concepts-text-financial-literacy-professionals,
  .concepts-image-financial-literacy-professionals {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Insights Section */
.insights-section-financial-literacy-professionals {
  background: #0a0f1e;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.insights-content-financial-literacy-professionals {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.insights-image-financial-literacy-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.insights-img-financial-literacy-professionals {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.insights-text-financial-literacy-professionals {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.insights-title-financial-literacy-professionals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.insights-paragraph-financial-literacy-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
}

.quote-financial-literacy-professionals {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  margin: clamp(1rem, 2vw, 1.5rem) 0;
  border-radius: 8px;
}

.quote-text-financial-literacy-professionals {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #93c5fd;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.quote-author-financial-literacy-professionals {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #7b9fd9;
  font-style: normal;
}

@media (max-width: 767px) {
  .insights-content-financial-literacy-professionals {
    flex-direction: column;
  }

  .insights-image-financial-literacy-professionals,
  .insights-text-financial-literacy-professionals {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Features Section */
.features-section-financial-literacy-professionals {
  background: #162d50;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

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

.features-title-financial-literacy-professionals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.features-subtitle-financial-literacy-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 700px;
  margin: 0 auto;
}

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

.feature-card-financial-literacy-professionals {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-card-financial-literacy-professionals:hover {
  border-color: #3b82f6;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.feature-icon-financial-literacy-professionals {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 1.75rem;
}

.feature-title-financial-literacy-professionals {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.feature-text-financial-literacy-professionals {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #bfdbfe;
  line-height: 1.7;
}

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

/* Conclusion Section */
.conclusion-section-financial-literacy-professionals {
  background: #1e3a5f;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-section-financial-literacy-professionals::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.conclusion-content-financial-literacy-professionals {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

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

.conclusion-text-financial-literacy-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.conclusion-action-financial-literacy-professionals {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
}

.conclusion-action-text-financial-literacy-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #93c5fd;
  max-width: 700px;
}

.btn-primary-financial-literacy-professionals {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #3b82f6;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary-financial-literacy-professionals:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

/* Disclaimer Section */
.disclaimer-section-financial-literacy-professionals {
  background: #0a0f1e;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid rgba(59, 130, 246, 0.15);
}

.disclaimer-content-financial-literacy-professionals {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.06);
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
}

.disclaimer-title-financial-literacy-professionals {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #93c5fd;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-financial-literacy-professionals {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #bfdbfe;
  line-height: 1.7;
}

/* Related Section */
.related-section-financial-literacy-professionals {
  background: #162d50;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.related-header-financial-literacy-professionals {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.related-title-financial-literacy-professionals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.related-subtitle-financial-literacy-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 700px;
  margin: 0 auto;
}

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

.related-card-financial-literacy-professionals {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-financial-literacy-professionals:hover {
  border-color: #3b82f6;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.related-card-image-financial-literacy-professionals {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: rgba(59, 130, 246, 0.1);
}

.related-card-image-financial-literacy-professionals img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-financial-literacy-professionals {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1.25rem, 2vw, 1.75rem);
}

.related-card-title-financial-literacy-professionals {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.related-card-text-financial-literacy-professionals {
  font-size: clamp(0.8rem, 1vw, 0.9375rem);
  color: #bfdbfe;
  line-height: 1.6;
}

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

/* Responsive Media Queries */
@media (min-width: 768px) {
  .hero-section-financial-literacy-professionals {
    padding: clamp(4rem, 10vw, 9rem) 0;
  }

  .intro-section-financial-literacy-professionals,
  .concepts-section-financial-literacy-professionals,
  .insights-section-financial-literacy-professionals,
  .features-section-financial-literacy-professionals,
  .conclusion-section-financial-literacy-professionals,
  .related-section-financial-literacy-professionals {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .steps-section-financial-literacy-professionals {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-financial-literacy-professionals {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

  .intro-section-financial-literacy-professionals,
  .concepts-section-financial-literacy-professionals,
  .insights-section-financial-literacy-professionals,
  .features-section-financial-literacy-professionals,
  .conclusion-section-financial-literacy-professionals,
  .related-section-financial-literacy-professionals,
  .steps-section-financial-literacy-professionals {
    padding: clamp(6rem, 12vw, 9rem) 0;
  }
}

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

/* About Page Styles */
.professional-academy-about {
    font-family: var(--font-primary);
    color: var(--color-text-primary);
  }

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

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

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

  .hero-title-about {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-text-primary);
    font-family: var(--font-heading);
  }

  .hero-subtitle-about {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-text-secondary);
    max-width: 700px;
    line-height: 1.6;
  }

  .hero-stats-about {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, 4vw, 3.5rem);
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
    padding: clamp(1.5rem, 3vw, 2rem);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
  }

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

  .stat-number-about {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    font-family: var(--font-heading);
  }

  .stat-label-about {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 500;
  }

  .hero-visual-about {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    margin-top: clamp(1rem, 3vw, 2rem);
  }

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

  .mission-content-about {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
  }

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

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

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

  .mission-description-about {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #475569;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .mission-grid-about {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(2rem, 4vw, 3rem);
  }

  .mission-block-about {
    flex: 1 1 300px;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .block-icon-about {
    width: 56px;
    height: 56px;
    background: #eff6ff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.5rem;
  }

  .block-title-about {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    font-family: var(--font-heading);
  }

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

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

  .approach-content-about {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vw, 3.5rem);
  }

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

  .approach-title-about {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    margin-bottom: 1rem;
  }

  .approach-subtitle-about {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--color-text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
  }

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

  .step-card-about {
    display: flex;
    align-items: flex-start;
    gap: clamp(1.5rem, 3vw, 2rem);
    padding: clamp(1.5rem, 3vw, 2rem);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(59, 130, 246, 0.2);
  }

  .step-number-about {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    min-width: 80px;
    flex-shrink: 0;
    font-family: var(--font-heading);
  }

  .step-content-about {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .step-title-about {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
    font-family: var(--font-heading);
  }

  .step-description-about {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
  }

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

  .expertise-content-about {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
  }

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

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

  .expertise-intro-about {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #475569;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
  }

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

  .expertise-card-about {
    flex: 1 1 280px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

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

  .card-icon-about {
    width: 52px;
    height: 52px;
    background: #eff6ff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.5rem;
  }

  .card-title-about {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    font-family: var(--font-heading);
  }

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

  .featured-quote-about {
    margin: clamp(2rem, 4vw, 3rem) 0;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-left: 4px solid var(--color-primary);
    background: var(--color-bg-secondary);
    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.7;
    margin-bottom: 1rem;
  }

  .quote-author-about {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-style: normal;
    display: block;
  }

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

  .vision-content-about {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
  }

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

  .vision-title-about {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    margin-bottom: 1rem;
  }

  .vision-description-about {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .commitment-image-about {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
  }

  .disclaimer-section-about {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    background: #f1f5f9;
    position: relative;
    overflow: hidden;
  }

  .disclaimer-content-about {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 850px;
    margin: 0 auto;
  }

  .disclaimer-title-about {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .disclaimer-text-about {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .hero-stats-about {
      gap: clamp(3rem, 6vw, 4.5rem);
    }

    .mission-grid-about {
      gap: clamp(2rem, 3vw, 2.5rem);
    }

    .mission-block-about {
      flex: 1 1 45%;
    }

    .expertise-cards-about {
      gap: clamp(2rem, 3vw, 2.5rem);
    }

    .expertise-card-about {
      flex: 1 1 320px;
    }
  }

  @media (min-width: 1024px) {
    .hero-stats-about {
      gap: clamp(4rem, 8vw, 5.5rem);
    }

    .mission-block-about {
      flex: 1 1 32%;
    }

    .expertise-card-about {
      flex: 1 1 340px;
      max-width: 400px;
    }

    .step-card-about {
      gap: clamp(2rem, 3vw, 2.5rem);
    }
  }

/* Privacy Page Styles */
/* Privacy Page Component */
.legal-docs {
  width: 100%;
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

/* Container - consistent width control */
.legal-docs .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

/* Hero Section */
.legal-docs-hero {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: var(--color-bg-primary);
  position: relative;
  overflow: hidden;
}

.legal-docs-hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.legal-docs-hero h1 {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: #ffffff;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-hero-meta {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
  font-style: italic;
}

.legal-docs-hero p {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 800px;
}

@media (min-width: 768px) {
  .legal-docs-hero {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .legal-docs-hero {
    padding: 5rem 0;
  }
}

/* Content Section */
.legal-docs-content {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: var(--color-bg-primary);
  position: relative;
  overflow: hidden;
}

.legal-docs-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
}

/* Section Blocks */
.legal-docs-section {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-tertiary);
}

.legal-docs-section h2 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  font-family: var(--font-heading);
  color: #ffffff;
  line-height: 1.3;
}

.legal-docs-section h3 {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-secondary);
  line-height: 1.4;
  margin-top: 0.5rem;
}

.legal-docs-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.legal-docs-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 1.5rem;
}

.legal-docs-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  list-style: disc;
}

@media (min-width: 768px) {
  .legal-docs-content {
    padding: 3.5rem 0;
  }

  .legal-docs-section {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .legal-docs-content {
    padding: 4rem 0;
  }

  .legal-docs-section {
    padding: 2.5rem;
  }
}

/* Contact Section */
.legal-docs-contact {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

.legal-docs-contact-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.legal-docs-contact h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2rem);
  font-weight: 600;
  font-family: var(--font-heading);
  color: #ffffff;
  line-height: 1.3;
}

.legal-docs-contact p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.legal-docs-contact-info {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

.legal-docs-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-docs-contact-item-label {
  font-size: clamp(0.75rem, 1vw + 0.25rem, 0.875rem);
  font-weight: 600;
  color: var(--color-accent-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legal-docs-contact-item-value {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-primary);
  font-family: 'Courier New', monospace;
  word-break: break-word;
}

@media (min-width: 768px) {
  .legal-docs-contact {
    padding: 3.5rem 0;
  }
}

@media (min-width: 1024px) {
  .legal-docs-contact {
    padding: 4rem 0;
  }
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .legal-docs-section {
    margin: 0 -1rem;
    border-radius: 0;
  }
}

/* Thank You Page Styles */
.thank-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.thank-section .container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: clamp(1rem, 4vw, 2rem);
  max-width: 600px;
}

.thank-icon {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.thank-icon i {
  font-size: clamp(3rem, 10vw, 5rem);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-section h1 {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0 0 clamp(0.75rem, 2vw, 1.5rem) 0;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-subtitle {
  color: var(--color-secondary);
  font-size: clamp(1.125rem, 3vw + 0.25rem, 1.5rem);
  font-family: var(--font-primary);
  font-weight: 600;
  margin: 0 0 clamp(1rem, 3vw, 2rem) 0;
  line-height: 1.4;
}

.thank-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-family: var(--font-primary);
  margin: 0 0 clamp(2rem, 5vw, 3rem) 0;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-features {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  width: 100%;
}

.thank-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  padding: clamp(1rem, 3vw, 1.5rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out forwards;
}

.thank-feature-item:nth-child(1) {
  animation-delay: 0.1s;
}

.thank-feature-item:nth-child(2) {
  animation-delay: 0.2s;
}

.thank-feature-item:nth-child(3) {
  animation-delay: 0.3s;
}

.thank-feature-item:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

.thank-feature-item i {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-primary);
}

.thank-feature-item p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-family: var(--font-primary);
  margin: 0;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Animations */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

/* Responsive Design */
@media (min-width: 768px) {
  .thank-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .thank-features {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .thank-feature-item {
    flex: 0 1 calc(33.333% - 1rem);
    min-width: 200px;
  }
}

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

  .thank-content {
    padding: clamp(2rem, 5vw, 3rem);
  }

  .thank-features {
    width: 100%;
  }

  .thank-feature-item {
    padding: clamp(1.5rem, 3vw, 2rem);
  }
}

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

  .thank-content {
    padding: 3rem;
  }
}

/* 404 Page Styles */
/* Error page component wrapper */
  .main.error-page {
    width: 100%;
  }

  /* Error section */
  .error-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;
    position: relative;
  }

  /* Background decoration */
  .error-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    right: -250px;
    z-index: 0;
  }

  .error-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    z-index: 0;
  }

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

  /* Error content wrapper */
  .error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  /* 404 Code wrapper with animation */
  .error-code-wrapper {
    position: relative;
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
  }

  /* Large 404 number */
  .error-code {
    font-size: clamp(4rem, 15vw, 10rem);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin: 0;
    font-family: var(--font-heading);
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
    letter-spacing: -2px;
    animation: float 3s ease-in-out infinite;
  }

  /* Floating animation */
  @keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-20px);
    }
  }

  /* Decoration under 404 */
  .error-decoration {
    width: clamp(60px, 20vw, 150px);
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    margin: clamp(1rem, 3vw, 2rem) auto 0;
    border-radius: 2px;
    animation: pulse-width 2s ease-in-out infinite;
  }

  @keyframes pulse-width {
    0%, 100% {
      width: clamp(60px, 20vw, 150px);
      opacity: 0.5;
    }
    50% {
      width: clamp(80px, 25vw, 180px);
      opacity: 1;
    }
  }

  /* Main title */
  .error-title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin: clamp(1rem, 3vw, 2rem) 0 clamp(0.75rem, 2vw, 1.5rem);
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Description text */
  .error-description {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto clamp(2rem, 5vw, 3rem);
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Feature list */
  .error-features {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
    width: 100%;
  }

  /* Feature item */
  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.5rem, 1.5vw, 1rem);
    color: var(--color-text-secondary);
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    padding: clamp(1rem, 2vw, 1.5rem);
    background: rgba(59, 130, 246, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(59, 130, 246, 0.15);
    transition: all 0.3s ease;
    line-height: 1.5;
  }

  .feature-item:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.25);
    transform: translateY(-2px);
  }

  .feature-item i {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--color-primary);
  }

  /* Primary button */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
    gap: 0.5rem;
  }

  .btn-primary {
    background: var(--color-primary);
    color: #000000;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
  }

  .btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  }

  .btn-primary:active {
    transform: translateY(0);
  }

  .btn-large {
    padding: clamp(1rem, 2.5vw, 1.25rem) clamp(2rem, 5vw, 3rem);
  }

  /* Footer text */
  .error-footer {
    font-size: clamp(0.8rem, 1vw, 0.95rem);
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Responsive - Tablet */
  @media (min-width: 768px) {
    .error-section {
      min-height: 100vh;
      padding: 4rem 0;
    }

    .error-features {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
    }

    .feature-item {
      flex: 0 1 calc(33.333% - 1rem);
      min-width: 200px;
    }

    .error-code {
      animation: float 4s ease-in-out infinite;
    }
  }

  /* Responsive - Desktop */
  @media (min-width: 1024px) {
    .error-section {
      min-height: 100vh;
      padding: 6rem 0;
    }

    .error-code-wrapper {
      margin-bottom: 3rem;
    }

    .feature-item {
      flex: 0 1 calc(33.333% - 1.5rem);
    }

    .btn-primary {
      padding: 1.125rem 2.5rem;
    }
  }

  /* Large Desktop */
  @media (min-width: 1440px) {
    .error-section {
      padding: 6rem 0;
    }

    .error-content {
      max-width: 900px;
      margin: 0 auto;
    }
  }

  /* Accessibility - Reduce motion */
  @media (prefers-reduced-motion: reduce) {
    .error-code,
    .error-decoration,
    .feature-item,
    .btn-primary {
      animation: none;
      transition: none;
    }

    .feature-item:hover {
      transform: none;
    }

    .btn-primary:hover {
      transform: none;
    }
  }